- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for TotalDroppedCount (0.05 sec)
-
cmd/bucket-replication-metrics_gen.go
z.LastFailedCount, err = dc.ReadUint64() if err != nil { err = msgp.WrapError(err, "LastFailedCount") return } case "TotalDroppedCount": z.TotalDroppedCount, err = dc.ReadUint64() if err != nil { err = msgp.WrapError(err, "TotalDroppedCount") return } case "TotalDroppedBytes": z.TotalDroppedBytes, err = dc.ReadUint64() if err != nil {
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 33.3K bytes - Viewed (0) -
cmd/bucket-replication-metrics.go
type ReplicationMRFStats struct { LastFailedCount uint64 `json:"failedCount_last5min"` // Count of unreplicated entries that were dropped after MRF retry limit reached since cluster start. TotalDroppedCount uint64 `json:"droppedCount_since_uptime"` // Bytes of unreplicated entries that were dropped after MRF retry limit reached since cluster start. TotalDroppedBytes uint64 `json:"droppedBytes_since_uptime"` }Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Thu Aug 15 12:04:40 UTC 2024 - 14.2K bytes - Viewed (0) -
cmd/bucket-replication.go
atomic.AddUint64(&p.stats.mrfStats.TotalDroppedCount, 1) atomic.AddUint64(&p.stats.mrfStats.TotalDroppedBytes, uint64(entry.sz)) return } select { case <-GlobalContext.Done(): return case <-p.mrfStopCh: return default: select { case p.mrfSaveCh <- entry: default: atomic.AddUint64(&p.stats.mrfStats.TotalDroppedCount, 1)
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 118.2K bytes - Viewed (0)