(ch chan<- Metric, ms *runtime.MemStats)
| 116 | } |
| 117 | |
| 118 | func (c *goCollector) msCollect(ch chan<- Metric, ms *runtime.MemStats) { |
| 119 | for _, i := range c.msMetrics { |
| 120 | ch <- MustNewConstMetric(i.desc, i.valType, i.eval(ms)) |
| 121 | } |
| 122 | } |
no test coverage detected