Fix current_send_in_progress metric always being zero (#18160)

This commit is contained in:
Matthew Toohey 2023-10-10 11:28:17 +11:00 committed by GitHub
parent ec30bb89a4
commit f731e7ea36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2556,8 +2556,10 @@ func getNotificationMetrics() *MetricsGroup {
cacheInterval: 10 * time.Second,
}
mg.RegisterRead(func(ctx context.Context) []Metric {
nstats := globalNotifyTargetList.Stats()
metrics := make([]Metric, 0, 1+len(nstats.TargetStats))
metrics := make([]Metric, 0, 3)
if globalEventNotifier != nil {
nstats := globalEventNotifier.targetList.Stats()
metrics = append(metrics, Metric{
Description: MetricDescription{
Namespace: minioNamespace,
@ -2581,6 +2583,7 @@ func getNotificationMetrics() *MetricsGroup {
Value: float64(st.CurrentQueue),
})
}
}
lstats := globalLambdaTargetList.Stats()
for _, st := range lstats.TargetStats {