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,30 +2556,33 @@ func getNotificationMetrics() *MetricsGroup {
cacheInterval: 10 * time.Second, cacheInterval: 10 * time.Second,
} }
mg.RegisterRead(func(ctx context.Context) []Metric { mg.RegisterRead(func(ctx context.Context) []Metric {
nstats := globalNotifyTargetList.Stats() metrics := make([]Metric, 0, 3)
metrics := make([]Metric, 0, 1+len(nstats.TargetStats))
metrics = append(metrics, Metric{ if globalEventNotifier != nil {
Description: MetricDescription{ nstats := globalEventNotifier.targetList.Stats()
Namespace: minioNamespace,
Subsystem: notifySubsystem,
Name: "current_send_in_progress",
Help: "Number of concurrent async Send calls active to all targets",
Type: gaugeMetric,
},
Value: float64(nstats.CurrentSendCalls),
})
for _, st := range nstats.TargetStats {
metrics = append(metrics, Metric{ metrics = append(metrics, Metric{
Description: MetricDescription{ Description: MetricDescription{
Namespace: minioNamespace, Namespace: minioNamespace,
Subsystem: notifySubsystem, Subsystem: notifySubsystem,
Name: "target_queue_length", Name: "current_send_in_progress",
Help: "Number of unsent notifications in queue for target", Help: "Number of concurrent async Send calls active to all targets",
Type: gaugeMetric, Type: gaugeMetric,
}, },
VariableLabels: map[string]string{"target_id": st.ID.ID, "target_name": st.ID.Name}, Value: float64(nstats.CurrentSendCalls),
Value: float64(st.CurrentQueue),
}) })
for _, st := range nstats.TargetStats {
metrics = append(metrics, Metric{
Description: MetricDescription{
Namespace: minioNamespace,
Subsystem: notifySubsystem,
Name: "target_queue_length",
Help: "Number of unsent notifications in queue for target",
Type: gaugeMetric,
},
VariableLabels: map[string]string{"target_id": st.ID.ID, "target_name": st.ID.Name},
Value: float64(st.CurrentQueue),
})
}
} }
lstats := globalLambdaTargetList.Stats() lstats := globalLambdaTargetList.Stats()