mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
Add unit for uptime column in Prometheus stats dashboard
Prior to this fix uptime column interpreted as number and the higher values are suffixed with raw units like `K`. This commit adds unit for the column as `second` to make visual interpretation easy. Signed-off-by: Arunprasad Rajkumar <ar.arunprasad@gmail.com>
This commit is contained in:
parent
6dd4e907a3
commit
400d50eb7e
|
@ -27,7 +27,7 @@ local template = grafana.template;
|
|||
instance: { alias: 'Instance' },
|
||||
version: { alias: 'Version' },
|
||||
'Value #A': { alias: 'Count', type: 'hidden' },
|
||||
'Value #B': { alias: 'Uptime' },
|
||||
'Value #B': { alias: 'Uptime', type: 'number', unit: 's' },
|
||||
})
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue