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,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 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user