mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-13 17:14:23 -08:00
bafe1707f1
Signed-off-by: Tom Wilkie <tom.wilkie@gmail.com>
49 lines
959 B
Plaintext
49 lines
959 B
Plaintext
local grafana = import 'grafonnet/grafana.libsonnet';
|
|
local singlestat = grafana.singlestat;
|
|
local prometheus = grafana.prometheus;
|
|
|
|
{
|
|
new(title, query)::
|
|
singlestat.new(
|
|
title,
|
|
datasource='prometheus',
|
|
span=3,
|
|
valueName='current',
|
|
valueMaps=[
|
|
{
|
|
op: '=',
|
|
text: '0',
|
|
value: 'null',
|
|
},
|
|
],
|
|
)
|
|
.addTarget(
|
|
prometheus.target(
|
|
query
|
|
)
|
|
) + {
|
|
withTextNullValue(text):: self {
|
|
valueMaps: [
|
|
{
|
|
op: '=',
|
|
text: text,
|
|
value: 'null',
|
|
},
|
|
],
|
|
},
|
|
withSpanSize(size):: self {
|
|
span: size,
|
|
},
|
|
withPostfix(postfix):: self {
|
|
postfix: postfix,
|
|
},
|
|
withSparkline():: self {
|
|
sparkline: {
|
|
show: true,
|
|
lineColor: 'rgb(31, 120, 193)',
|
|
fillColor: 'rgba(31, 118, 189, 0.18)',
|
|
},
|
|
},
|
|
},
|
|
}
|