We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7398b3f commit 098d3b3Copy full SHA for 098d3b3
collector/nodes.go
@@ -2065,5 +2065,16 @@ func (c *Nodes) Collect(ch chan<- prometheus.Metric) {
2065
}
2066
2067
2068
+ // File cache Stats
2069
+ for _, metric := range c.fileCacheMetrics {
2070
+ ch <- prometheus.MustNewConstMetric(
2071
+ metric.Desc,
2072
+ metric.Type,
2073
+ metric.Value(node.FileCache),
2074
+ metric.Labels(nodeStatsResp.ClusterName, node)...,
2075
+ )
2076
+ }
2077
+
2078
2079
2080
0 commit comments