ncabatoff / process-exporter

Prometheus exporter that mines /proc to report on selected processes
MIT License
1.67k stars 265 forks source link

Upgrade prometheus/procfs dependency, use Go1.21 #296

Closed Maxi-Mega closed 4 months ago

Maxi-Mega commented 4 months ago

prometheus/procfs v0.14.0 introduced a (breaking) change to «Use kernel-compliant types for {U,G}IDs». In summary, for what this PR addresses, the type of the UIDs field of procfs.ProcStatus changed from [4]string to [4]uint64.

Beside that, they also defined Go1.21 as the minimum required version.

ncabatoff commented 4 months ago

Thanks!