Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: prometheus/common
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.56.0
Choose a base ref
...
head repository: prometheus/common
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.57.0
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Aug 28, 2024

  1. feat: new promslog and promslog/flag packages to wrap log/slog

    Prereq for prometheus/prometheus#14355
    
    This adds a new `promslog` package to create an opinionated slog logger
    for use within the prometheus ecosystem. By default, logs are written at
    `info` level and formatted to add a kv pair for the source caller. If
    backwards compatibility for the literal output format of the logging is
    required, logs can be styled in a format that is similar to how the
    `promlog` package formatted it's go-kit/log output [1].  The `promslog`
    package also makes use of an `slog.LevelVar` to dynamically adjust the
    level of an existing logger. Similar to the old `promlog` package, we
    provide means to log in `logfmt` and `json` output formats.
    
    Creating a logger is similar to the old promlog package -- optionally
    populate a `Config` struct, and then call `New()` with the config.
    
    In order to dynamically adjust the logger's level, retain the `Config`
    struct as it's own variable to access the `AllowedLevel.Set()` method,
    which internally updates the `AllowedLevel`'s slog.LevelVar to the
    desired log level. Ex:
    
    ```go
    config := &promslog.Config{} // Retain as variable if you need to dynamically adjust log level
    logger := promslog.New(config)
    config.Level.Set("debug")
    logger.Debug("your message here", "hello", "world")
    ```
    
    To use go-kit style log output:
    ```go
    config := &promslog.Config{Style: promslog.GoKitStyle} // Retain as variable if you need to dynamically adjust log level
    logger := promslog.New(config)
    config.Level.Set("debug")
    logger.Debug("your message here", "hello", "world")
    ```
    
    1. When using the `go-kit` log style, the following changes are made to the
    default slog output:
    - adjusts slog default timestamp key from `timestamp` -> `ts`
    - adjusts the timestamp value to use the same time format string
      ("2006-01-02T15:04:05.000Z07:00")
    - adjusts slog default sourcecode key from `source` -> `caller`
    - adjusts the formatting of the sourcecode values to trim paths with
      `filepath.Base()`. The formatting of the sourcecode value is similar
    to the go-kit/log usage, with the addition of the source function in
    parenthesis when debug logging is enabled.
    
    Signed-off-by: TJ Hoplock <[email protected]>
    tjhop committed Aug 28, 2024
    Configuration menu
    Copy the full SHA
    6ea2584 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #677 from tjhop/feat/add-promslog-pkg

    feat: new promslog and promslog/flag packages to wrap log/slog
    ArthurSens authored Aug 28, 2024
    Configuration menu
    Copy the full SHA
    9bbc9cb View commit details
    Browse the repository at this point in the history
Loading