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.1
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.17.0
Choose a head ref
  • 18 commits
  • 23 files changed
  • 14 contributors

Commits on May 14, 2025

  1. Update common Prometheus files (#718)

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

Commits on May 21, 2025

  1. Update common Prometheus files (#721)

    Signed-off-by: prombot <prometheus-team@googlegroups.com>
    prombot authored May 21, 2025
    Configuration menu
    Copy the full SHA
    6dab0ae View commit details
    Browse the repository at this point in the history
  2. btrfs: correct allocation ratios for raid1c[34] (#722)

    * Return right allocation ratios for the (somewhat recently added) btrfs
      RAID modes raid1c3 and raid1c4.
    
    Signed-off-by: Samuli Thomasson <samuli.thomasson@pm.me>
    SimSaladin authored May 21, 2025
    Configuration menu
    Copy the full SHA
    367ae03 View commit details
    Browse the repository at this point in the history
  3. build(deps): bump golang.org/x/sync from 0.13.0 to 0.14.0 (#724)

    Bumps [golang.org/x/sync](https://github.com/golang/sync) from 0.13.0 to 0.14.0.
    - [Commits](golang/sync@v0.13.0...v0.14.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/sync
      dependency-version: 0.14.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 May 21, 2025
    Configuration menu
    Copy the full SHA
    d9705f6 View commit details
    Browse the repository at this point in the history
  4. build(deps): bump golang.org/x/sys from 0.32.0 to 0.33.0 (#723)

    Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.32.0 to 0.33.0.
    - [Commits](golang/sys@v0.32.0...v0.33.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/sys
      dependency-version: 0.33.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 May 21, 2025
    Configuration menu
    Copy the full SHA
    588b88c View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2025

  1. Supports collection of process shared memory (#719)

    * Parse process memory usage from /proc/[pid]/statm
      into ProcStatm struct.
    * Add unit tests for proc_statm.
    * Add /proc/26231/statm test data to fixtures.
    
    Signed-off-by: zhiyuan.zhou <zhiyuan.zhou@easystack.cn>
    Co-authored-by: zhiyuan.zhou <zhiyuan.zhou@easystack.cn>
    SilenceAdele and zhiyuan.zhou authored Jul 3, 2025
    Configuration menu
    Copy the full SHA
    28d508d View commit details
    Browse the repository at this point in the history
  2. build(deps): bump golang.org/x/sync from 0.14.0 to 0.15.0 (#732)

    Bumps [golang.org/x/sync](https://github.com/golang/sync) from 0.14.0 to 0.15.0.
    - [Commits](golang/sync@v0.14.0...v0.15.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/sync
      dependency-version: 0.15.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 Jul 3, 2025
    Configuration menu
    Copy the full SHA
    65857f3 View commit details
    Browse the repository at this point in the history
  3. exposing ControllerID (#731)

    Signed-off-by: Shashwat Hiregoudar <shashwathiregoudar@gmail.com>
    ShashwatHiregoudar authored Jul 3, 2025
    Configuration menu
    Copy the full SHA
    0e4338f View commit details
    Browse the repository at this point in the history
  4. Update common Prometheus files (#727)

    Signed-off-by: prombot <prometheus-team@googlegroups.com>
    prombot authored Jul 3, 2025
    Configuration menu
    Copy the full SHA
    0f247ba View commit details
    Browse the repository at this point in the history
  5. sysfs: Add support to collect link status for PCIe devices (#728)

    The link status of PCIe devices sometimes changes,
    like link or speed downgrades, and devices disappear.
    This patch collects PCIe devices' link infromation  to detect such failures.
    
    As a first step, this collector exports PCIe devices'
    - Device information (vendor_id, device_id, etc.)
    - Parent PCIe device (e.g. PCIe bridge, PCIe switch)
    - Link status (max_link_{speed|width}, current_link_{speed|width}
    
    Signed-off-by: Naoki MATSUMOTO <m.naoki9911@gmail.com>
    naoki9911 authored Jul 3, 2025
    Configuration menu
    Copy the full SHA
    6176818 View commit details
    Browse the repository at this point in the history
  6. parse.go: fix GetDeviceInfo/LayoutGet ordering -- previously had valu…

    …es swapped (#726)
    
    Signed-off-by: John Leslie <johnleslie@google.com>
    johnleslie authored Jul 3, 2025
    Configuration menu
    Copy the full SHA
    2b1359d View commit details
    Browse the repository at this point in the history
  7. Fix linting issue (#733)

    Fix Go doc linting error.
    
    Signed-off-by: SuperQ <superq@gmail.com>
    SuperQ authored Jul 3, 2025
    Configuration menu
    Copy the full SHA
    0cf1234 View commit details
    Browse the repository at this point in the history
  8. feat(mdstat): recognize reshape status (#679)

    Signed-off-by: Philipp Born <git@pborn.eu>
    tamcore authored Jul 3, 2025
    Configuration menu
    Copy the full SHA
    c5a546e View commit details
    Browse the repository at this point in the history
  9. Nvidia/Mellanox expose ROCE ECN information on sysfs on the path (#695)

    /sys/class/net/<interface>/ecn/<protocol>/
    
    There are 2 protocols Reaction Point (rp) and Notification point (np)
    
    For each of the protocols they have a list of attributes:
    /sys/class/net/<interface>/ecn/<protocol>/params/<requested attribute>
    
    Each protocol will also if ECN is enabled per priority (where X is the
    priority):
    /sys/class/net/<interface>/ecn/<protocol>/enable/X
    
    This is documented here
    https://docs.nvidia.com/networking/display/mlnxofedv571020/explicit+congestion+notification+(ecn)
    
    The attributes are documented here:
    https://enterprise-support.nvidia.com/s/article/dcqcn-parameters
    
    Signed-off-by: Diego Asturias <dasturias@arista.com>
    dasturiasArista authored Jul 3, 2025
    Configuration menu
    Copy the full SHA
    a5f79dd View commit details
    Browse the repository at this point in the history
  10. added zswap, zswapped, secpagetables, filehugepages, hugetlb and unac…

    …cepted to meminfo (#655)
    
    Signed-off-by: Navid Yaghoobi <navidys@fedoraproject.org>
    navidys authored Jul 3, 2025
    Configuration menu
    Copy the full SHA
    0bcdc45 View commit details
    Browse the repository at this point in the history
  11. feat: parse StartCode, EndCode, and StartStack in /proc/pid/stat (#659)

    Signed-off-by: Pierre Gimalac <pierre.gimalac@datadoghq.com>
    pgimalac authored Jul 3, 2025
    Configuration menu
    Copy the full SHA
    ee6ea54 View commit details
    Browse the repository at this point in the history
  12. Add node_guid to infiniband class (#665) (#670)

    Signed-off-by: Diego Sonaglia <diego.sonaglia@gmail.com>
    di3go-sona authored Jul 3, 2025
    Configuration menu
    Copy the full SHA
    61fb25b View commit details
    Browse the repository at this point in the history
  13. Fix linting issues (#734)

    Fixup linting issues in `sysfs/net_class_ecn.go`.
    
    Signed-off-by: SuperQ <superq@gmail.com>
    SuperQ authored Jul 3, 2025
    Configuration menu
    Copy the full SHA
    61fe412 View commit details
    Browse the repository at this point in the history
Loading