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:
Arunprasad Rajkumar 2022-11-08 19:09:14 +05:30 committed by GitHub
parent 6dd4e907a3
commit 400d50eb7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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' },
})
)
)