8000 Comparing v0.16.0...v0.16.1 · prometheus/procfs · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
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/procfs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.16.0
Choose a base ref
...
head repository: prometheus/procfs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.16.1
Choose a head ref
  • 12 commits
  • 25 files changed
  • 8 contributors

Commits on Mar 18, 2025

  1. Update common Prometheus files (#671)

    Signed-off-by: prombot <prometheus-team@googlegroups.com>
    prombot authored Mar 18, 2025
    Configuration menu
    Copy the full SHA
    171952f View commit details
    Browse the repository at this point in the history
  2. Update common Prometheus files (#709)

    Signed-off-by: prombot <prometheus-team@googlegroups.com>
    prombot authored Mar 18, 2025
    Configuration menu
    Copy the full SHA
    1e882c2 View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2025

  1. Update common Prometheus files (#710)

    Signed-off-by: prombot <prometheus-team@googlegroups.com>
    prombot authored Mar 23, 2025
    Configuration menu
    Copy the full SHA
    0289c96 View commit details
    Browse the repository at this point in the history

Commits on Mar 31, 2025

  1. Update Go (#708)

    * Update latest Go to 1.24.
    * Update minimum Go to 1.23.
    * Bump Go modules.
    
    Signed-off-by: SuperQ <superq@gmail.com>
    SuperQ authored Mar 31, 2025
    Configuration menu
    Copy the full SHA
    ba1e271 View commit details
    Browse the repository at this point in the history
  2. Update common Prometheus files (#713)

    Signed-off-by: prombot <prometheus-team@googlegroups.com>
    prombot authored Mar 31, 2025
    Configuration menu
    Copy the full SHA
    6c7a481 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2025

  1. chore: Upgrade golangci-lint to v2 (#715)

    - Migrate the configuration file
    - Update the tooling version and CI
    - Apply auto-fixes
    
    Signed-off-by: Kemal Akkoyun <kemal.akkoyun@datadoghq.com>
    kakkoyun authored Apr 19, 2025
    2 Configuration menu
    Copy the full SHA
    67f32ef View commit details
    Browse the repository at this point in the history
  2. Use SysReadFile for thermals and skip failed zones (#712)

    Switches all calls in the thermal zones processing to use SysReadFile so
    that unavailable zones won't stall forever waiting for them to become
    available. Also continues processing in the case that one zone fails
    with EAGAIN, as is the case for temporarily unavailable zones.
    
    Addresses #698
    
    Signed-off-by: Sean Swehla <sean@sweh.la>
    kitschysynq authored Apr 19, 2025
    Configuration menu
    Copy the full SHA
    f61a330 View commit details
    Browse the repository at this point in the history
  3. class_infiniband: continue on syscall EINVAL (#705)

    #704
    
    In some very bleeding-edge configurations, syscalls against some IB
    counters will return `invalid argument`. This bubbles back to callers (e.g. node_exporter) in
    a very bad way -- e.g. all IB metrics collection failing when a single
    or group of IB ports returns this.
    
    Suspect this has always been an error case and possible to experience,
    but it's the first time we're seeing it in a very new hardware deployment.
    
    Signed-off-by: Michael Fuller <mfuller@lambdal.com>
    mfuller-lambda authored Apr 19, 2025
    Configuration menu
    Copy the full SHA
    70166be View commit details
    Browse the repository at this point in the history
  4. build(deps): bump golang.org/x/sys from 0.31.0 to 0.32.0 (#717)

    Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.31.0 to 0.32.0.
    - [Commits](golang/sys@v0.31.0...v0.32.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/sys
      dependency-version: 0.32.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Apr 19, 2025
    Configuration menu
    Copy the full SHA
    49d0fe6 View commit details
    Browse the repository at this point in the history
  5. Update class_infiniband.go (#687)

    Signed-off-by: Jeffrey Chu <oneoneonepig@users.noreply.github.com>
    oneoneonepig authored Apr 19, 2025
    Configuration menu
    Copy the full SHA
    4482eb5 View commit details
    Browse the repository at this point in the history
  6. build(deps): bump golang.org/x/sync from 0.12.0 to 0.13.0 (#716)

    Bumps [golang.org/x/sync](https://github.com/golang/sync) from 0.12.0 to 0.13.0.
    - [Commits](golang/sync@v0.12.0...v0.13.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/sync
      dependency-version: 0.13.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Apr 19, 2025
    Configuration menu
    Copy the full SHA
    ee82f2f View commit details
    Browse the repository at this point in the history
  7. infiniband: do not make assumptions about counters based on HCA name (#…

    …678)
    
    Some users have reported cases of systemd "predictable network interface
    naming" apparently also renaming the HCA device. This means we can no
    longer make assumptions about which counter(s) should be present based
    on the HCA name (i.e., irdma*, mlx5_*). The previous approach was quite
    brittle anyway, since there will undoubtedly be other IB / RoCE drivers
    in future which implement the hw_counters directory (but not the older
    counters directory).
    
    Signed-off-by: Daniel Swarbrick <daniel.swarbrick@gmail.com>
    Signed-off-by: Ben Kochie <superq@gmail.com>
    Co-authored-by: Ben Kochie <superq@gmail.com>
    dswarbrick and SuperQ authored Apr 19, 2025
    Configuration menu
    Copy the full SHA
    cff69b9 View commit details
    Browse the repository at this point in the history
Loading
0