We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 193421a + 97a82b9 commit 72ab5cdCopy full SHA for 72ab5cd
metrics/group_processes.go
@@ -236,6 +236,10 @@ func (p *ProcessesMetricGroup) GetMetrics(status *models.FullStatus) {
236
metrics["durability_bytes"] = role.DurableBytes.Counter
237
}
238
239
+ // Storage queue size, if this is growing, it means the storages can't keep up with the load
240
+ // and they need to be scaled out.
241
+ metrics["storage_queue_length"] = role.InputBytes.Counter - role.DurableBytes.Counter
242
+
243
if role.ReadLatencyStatistics != nil {
244
readLatScope := p.GetScopeOrExit("read_lat")
245
medianTags := p.getLatencyTags(processName, &process, "0.5")
0 commit comments