aboutsummaryrefslogtreecommitdiff
path: root/docs/node-mixin/lib/promgrafonnet/numbersinglestat.libsonnet
blob: bc1d6f6fdc5a6b5a6fef24046fb4302810c8b99c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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)',
        },
      },
    },
}