Skip to content

Commit 1bcda80

Browse files
authored
process collector: Fixed pedantic registry failures on darwin with cgo. (#1715)
Errors: ``` * collected metric process_resident_memory_bytes gauge:{value:8.798208e+06} with unregistered descriptor Desc{fqName: "process_resident_memory_bytes", help: "Resident memory size in bytes.", constLabels: {}, variableLabels: {}} * collected metric process_virtual_memory_bytes gauge:{value:4.2175053824e+11} with unregistered descriptor Desc{fqName: "process_virtual_memory_bytes", help: "Virtual memory size in bytes.", constLabels: {}, variableLabels: {}} ``` Signed-off-by: bwplotka <[email protected]>
1 parent 038b37a commit 1bcda80

3 files changed

+38
-19
lines changed

prometheus/process_collector_cgo_darwin.go

+19
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,22 @@ func getMemory() (*memoryInfo, error) {
3030

3131
return &memoryInfo{vsize: uint64(vsize), rss: uint64(rss)}, nil
3232
}
33+
34+
// describe returns all descriptions of the collector for Darwin.
35+
// Ensure that this list of descriptors is kept in sync with the metrics collected
36+
// in the processCollect method. Any changes to the metrics in processCollect
37+
// (such as adding or removing metrics) should be reflected in this list of descriptors.
38+
func (c *processCollector) describe(ch chan<- *Desc) {
39+
ch <- c.cpuTotal
40+
ch <- c.openFDs
41+
ch <- c.maxFDs
42+
ch <- c.maxVsize
43+
ch <- c.startTime
44+
ch <- c.rss
45+
ch <- c.vsize
46+
47+
/* the process could be collected but not implemented yet
48+
ch <- c.inBytes
49+
ch <- c.outBytes
50+
*/
51+
}

prometheus/process_collector_darwin.go

-19
Original file line numberDiff line numberDiff line change
@@ -69,25 +69,6 @@ func getOpenFileCount() (float64, error) {
6969
}
7070
}
7171

72-
// describe returns all descriptions of the collector for Darwin.
73-
// Ensure that this list of descriptors is kept in sync with the metrics collected
74-
// in the processCollect method. Any changes to the metrics in processCollect
75-
// (such as adding or removing metrics) should be reflected in this list of descriptors.
76-
func (c *processCollector) describe(ch chan<- *Desc) {
77-
ch <- c.cpuTotal
78-
ch <- c.openFDs
79-
ch <- c.maxFDs
80-
ch <- c.maxVsize
81-
ch <- c.startTime
82-
83-
/* the process could be collected but not implemented yet
84-
ch <- c.rss
85-
ch <- c.vsize
86-
ch <- c.inBytes
87-
ch <- c.outBytes
88-
*/
89-
}
90-
9172
func (c *processCollector) processCollect(ch chan<- Metric) {
9273
if procs, err := unix.SysctlKinfoProcSlice("kern.proc.pid", os.Getpid()); err == nil {
9374
if len(procs) == 1 {

prometheus/process_collector_nocgo_darwin.go

+19
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,22 @@ package prometheus
1818
func getMemory() (*memoryInfo, error) {
1919
return nil, notImplementedErr
2020
}
21+
22+
// describe returns all descriptions of the collector for Darwin.
23+
// Ensure that this list of descriptors is kept in sync with the metrics collected
24+
// in the processCollect method. Any changes to the metrics in processCollect
25+
// (such as adding or removing metrics) should be reflected in this list of descriptors.
26+
func (c *processCollector) describe(ch chan<- *Desc) {
27+
ch <- c.cpuTotal
28+
ch <- c.openFDs
29+
ch <- c.maxFDs
30+
ch <- c.maxVsize
31+
ch <- c.startTime
32+
33+
/* the process could be collected but not implemented yet
34+
ch <- c.rss
35+
ch <- c.vsize
36+
ch <- c.inBytes
37+
ch <- c.outBytes
38+
*/
39+
}

0 commit comments

Comments
 (0)