- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for TotalDroppedBytes (0.08 seconds)
-
cmd/bucket-replication-metrics_gen.go
z.TotalDroppedCount, err = dc.ReadUint64() if err != nil { err = msgp.WrapError(err, "TotalDroppedCount") return } case "TotalDroppedBytes": z.TotalDroppedBytes, err = dc.ReadUint64() if err != nil { err = msgp.WrapError(err, "TotalDroppedBytes") return } default: err = dc.Skip() if err != nil { err = msgp.WrapError(err) return } }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 33.3K bytes - Click Count (0) -
cmd/bucket-replication-metrics.go
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"` } // SMA struct for calculating simple moving average type SMA struct { buf []float64 window int // len of buf
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Thu Aug 15 12:04:40 GMT 2024 - 14.2K bytes - Click Count (0)