mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-12-25 21:54:18 -08:00
Use swpginuse instead of swpgonly in meminfo_openbsd (#813)
All tools in OpenBSD base system use swpginuse instead of swpgonly for reporting swap usage (snmpd, swapctl, top, vmstat), so let memory collector use that as well for consistency.
This commit is contained in:
parent
f6965e1812
commit
8d9c7ca659
|
@ -57,7 +57,7 @@ func (c *meminfoCollector) getMemInfo() (map[string]float64, error) {
|
|||
"inactive_bytes": ps * float64(uvmexp.inactive),
|
||||
"size_bytes": ps * float64(uvmexp.npages),
|
||||
"swap_size_bytes": ps * float64(uvmexp.swpages),
|
||||
"swap_used_bytes": ps * float64(uvmexp.swpgonly),
|
||||
"swap_used_bytes": ps * float64(uvmexp.swpginuse),
|
||||
"swapped_in_pages_bytes_total": ps * float64(uvmexp.pgswapin),
|
||||
"swapped_out_pages_bytes_total": ps * float64(uvmexp.pgswapout),
|
||||
"wired_bytes": ps * float64(uvmexp.wired),
|
||||
|
|
Loading…
Reference in a new issue