mirror of
https://github.com/minio/minio.git
synced 2025-04-02 19:00:38 -04:00
Fix current_send_in_progress metric always being zero (#18160)
This commit is contained in:
parent
ec30bb89a4
commit
f731e7ea36
@ -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()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user