-
Notifications
You must be signed in to change notification settings - Fork 0
/
util.libsonnet
248 lines (239 loc) · 7.56 KB
/
util.libsonnet
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
# This is *LITERALLY* just copy/pasted from the private repository which currently contains the integrations.
# This needs to be moved to grafana/jsonnet-libs and integrations need to be refactored to fetch it from there as a dependency (jsonnetfile.json)
local g = import 'grafonnet-latest/main.libsonnet';
local grafana = (import 'grafonnet/grafana.libsonnet');
local debug(obj) =
std.trace(std.toString(obj), obj);
local setGridPos(h, w, x, y) = {
gridPos: {
h: h,
w: w,
x: x,
y: y,
},
};
// Required for jsonnet dashboards with older schema
local setSpan(w) = {
span: w / 2,
};
local integration_status_row_internal(height, width, xPos, yPos) =
grafana.row.new(title='Integration Status') +
setGridPos(height, width, xPos, yPos) +
setSpan(width);
local integration_status_panel(statusPanelQuery, statusPanelDataSource, height, width, xPos, yPos, setId) =
grafana.statPanel.new(
'Integration Status',
description='Shows the status of the integration.',
datasource=statusPanelDataSource,
unit='string',
colorMode='background',
graphMode='none',
noValue='No Data',
reducerFunction='lastNotNull',
timeFrom='now/d',
)
.addMappings(
[
{
options: {
from: 1,
result: {
color: 'green',
index: 0,
text: 'Agent Configured - Sending Metrics',
},
to: 10000000000000,
},
type: 'range',
},
{
options: {
from: 0,
result: {
color: 'red',
index: 1,
text: 'No Data',
},
to: 0,
},
type: 'range',
},
]
)
.addTarget(
grafana.prometheus.target(
statusPanelQuery,
instant=true
)
) +
setGridPos(height, width, xPos, yPos) +
setSpan(width) + (if setId then {
id: 1001,
} else {});
local latest_metric_panel(statusPanelQuery, statusPanelDataSource, height, width, xPos, yPos, setId) =
grafana.statPanel.new(
'Latest Metric Received',
description='Shows the latest timestamp at which the metrics were received for this integration.',
datasource=statusPanelDataSource,
unit='dateTimeAsIso',
colorMode='background',
fields='Time',
graphMode='none',
noValue='No Data',
reducerFunction='lastNotNull',
timeFrom='now/d',
)
.addTarget(
grafana.prometheus.target(statusPanelQuery)
) +
setGridPos(height, width, xPos, yPos) +
setSpan(width) + (if setId then {
id: 1002,
} else {});
local integration_version_panel(version, statusPanelDataSource, height, width, xPos, yPos, setId) =
grafana.statPanel.new(
'Integration Version',
description='Shows the installed version of this integration.',
unit='string',
datasource=statusPanelDataSource,
noValue=version,
) +
setGridPos(height, width, xPos, yPos) +
setSpan(width) + (if setId then {
id: 1003,
} else {});
{
decorate_dashboard(dashboard, tags, refresh='30s', timeFrom='now-30m')::
dashboard {
editable: false,
id: null, // If id is set the grafana client will try to update instead of create
tags: tags,
refresh: refresh,
time: {
from: timeFrom,
to: 'now',
},
templating: {
list+: [
if t.type == 'datasource' && t.query == 'prometheus' then
t { regex: '(?!grafanacloud-usage|grafanacloud-ml-metrics).+' }
else if t.type == 'query' then
t { refresh: 2 }
else t
for t in dashboard.templating.list
],
},
},
prepare_dashboards(dashboards, tags, folderName, ignoreDashboards=[], refresh='30s', timeFrom='now-30m'):: {
[k]: {
dashboard: $.decorate_dashboard(dashboards[k], tags, refresh, timeFrom),
folderId: 0,
overwrite: true,
folderName: folderName,
}
for k in std.objectFields(dashboards)
if !std.member(ignoreDashboards, k)
},
prepare_alerts(namespace, prometheusAlerts, ignoreAlerts=[], ignoreAlertGroups=[])::
{
namespace: namespace,
} +
prometheusAlerts + {
groups:
std.map(function(el) el {
rules:
std.filter(function(r) !std.member(ignoreAlerts, r.alert), super.rules),
}, std.filter(function(g) !std.member(ignoreAlertGroups, g.name), super.groups)),
},
prepare_rules(namespace, rules, ignoreRules=[], ignoreRuleGroups=[])::
{
namespace: namespace,
} +
rules + {
groups:
std.map(function(rr) rr {
rules:
std.filter(function(r) !std.member(ignoreRules, r.record), super.rules),
}, std.filter(function(g) !std.member(ignoreRuleGroups, g.name), super.groups)),
},
integration_status_panels(config, version, setId)::
[
integration_status_panel(
config.statusPanelQuery,
config.statusPanelDataSource,
config.statusPanelGridPos[0],
config.statusPanelGridPos[1],
config.statusPanelGridPos[2],
config.statusPanelGridPos[3],
setId,
),
latest_metric_panel(
config.statusPanelQuery,
config.statusPanelDataSource,
config.statusPanelGridPos[0],
config.statusPanelGridPos[1],
config.statusPanelGridPos[2] + 1 * config.statusPanelGridPos[1],
config.statusPanelGridPos[3],
setId,
),
integration_version_panel(
version,
config.statusPanelDataSource,
config.statusPanelGridPos[0],
config.statusPanelGridPos[1],
config.statusPanelGridPos[2] + 2 * config.statusPanelGridPos[1],
config.statusPanelGridPos[3],
setId,
),
],
integration_status_row(dashboard, config, version)::
if std.isArray(dashboard.panels) && std.length(dashboard.panels) > 0 then
{
panels: [
integration_status_row_internal(
config.statusPanelGridPos[0],
config.statusPanelGridPos[1],
config.statusPanelGridPos[2],
config.statusPanelGridPos[3],
),
] +
$.integration_status_panels(config, version, false) +
[
panel {
gridPos: {
h: panel.gridPos.h,
w: panel.gridPos.w,
x: panel.gridPos.x,
y: panel.gridPos.y + config.statusPanelGridPos[0],
},
}
for panel in dashboard.panels
],
}
else
{
rows: [
integration_status_row_internal(
config.statusPanelGridPos[0],
config.statusPanelGridPos[1],
config.statusPanelGridPos[2],
config.statusPanelGridPos[3],
) + {
panels: $.integration_status_panels(config, version, true),
},
] + dashboard.rows,
},
add_status_panels(dashboard, config, version)::
if std.member(config.statusPanelDashboards, dashboard.title) then
$.integration_status_row(dashboard, config, version)
else {},
// adds links by integration tag.
add_links_by_tag(tags, title='Integration dashboards', asDropdown=false, includeVars=true):: {
links+: [
g.dashboard.link.dashboards.new(title=title, tags=tags)
+ g.dashboard.link.dashboards.options.withIncludeVars(includeVars)
+ g.dashboard.link.dashboards.options.withKeepTime(true)
+ g.dashboard.link.dashboards.options.withAsDropdown(asDropdown),
],
},
}