bugfix: Pass network metrics to processCollector's Describe() function

Signed-off-by: Arthur Silva Sens <arthursens2005@gmail.com>
This commit is contained in:
Arthur Silva Sens 2024-08-19 15:31:02 -03:00 committed by bwplotka
parent 5bf3341b66
commit 261fe84cd4
1 changed files with 2 additions and 0 deletions

View File

@ -140,6 +140,8 @@ func (c *processCollector) Describe(ch chan<- *Desc) {
ch <- c.maxVsize
ch <- c.rss
ch <- c.startTime
ch <- c.inBytes
ch <- c.outBytes
}
// Collect returns the current state of all metrics of the collector.