- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for GetFailedTotal (0.18 sec)
-
cmd/bucket-replication-metrics.go
} case getObjectAPI: if !isErr { atomic.AddUint64(&v.GetTotal, 1) atomic.AddUint64(&p.srProxyStats.GetTotal, 1) } else { atomic.AddUint64(&v.GetFailedTotal, 1) atomic.AddUint64(&p.srProxyStats.GetFailedTotal, 1) } default: return } p.bucketStats[bucket] = v } func (p *proxyStatsCache) getBucketStats(bucket string) ProxyMetric { p.RLock() defer p.RUnlock()
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 12:04:40 UTC 2024 - 14.2K bytes - Viewed (0) -
cmd/metrics-v3-bucket-replication.go
m.Set(bucketReplProxiedDeleteTaggingRequestsTotal, float64(s.ProxyStats.RmvTagTotal), labels...) m.Set(bucketReplProxiedGetRequestsFailures, float64(s.ProxyStats.GetFailedTotal), labels...) m.Set(bucketReplProxiedGetRequestsTotal, float64(s.ProxyStats.GetTotal), labels...) m.Set(bucketReplProxiedGetTaggingRequestsFailures, float64(s.ProxyStats.GetTagFailedTotal), labels...)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 12:04:40 UTC 2024 - 8.1K bytes - Viewed (0) -
cmd/metrics-v2.go
Value: float64(m.Proxied.RmvTagTotal), }) ml = append(ml, MetricV2{ Description: getClusterReplProxiedGetFailedOperationsMD(clusterMetricNamespace), Value: float64(m.Proxied.GetFailedTotal), }) ml = append(ml, MetricV2{ Description: getClusterReplProxiedHeadFailedOperationsMD(clusterMetricNamespace), Value: float64(m.Proxied.HeadFailedTotal), })
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 12:04:40 UTC 2024 - 131.9K bytes - Viewed (0)