You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"http_requests_total": newWorkerMetric(namespace, "http_requests_total", "The total number of client requests received by the worker process", constLabels),
564
565
"http_requests_current": newWorkerMetric(namespace, "http_requests_current", "The current number of client requests that are currently being processed by the worker process", constLabels),
565
566
},
567
+
slabsMetrics: map[string]*prometheus.Desc{
568
+
"pages_used": newSlabPagesMetric(namespace, "pages_used", "Current number of used memory pages", constLabels),
569
+
"pages_free": newSlabPagesMetric(namespace, "pages_free", "Current number of free memory pages", constLabels),
570
+
"slots_free": newSlabMetric(namespace, "free", "Current number of free memory slots", constLabels),
571
+
"slots_used": newSlabMetric(namespace, "used", "Current number of used memory slots", constLabels),
572
+
"slots_reqs": newSlabMetric(namespace, "reqs", "Total number of attempts to allocate memory of specified size", constLabels),
573
+
"slots_fails": newSlabMetric(namespace, "fails", "Total number of unsuccessful attempts to allocate memory of specified size", constLabels),
0 commit comments