-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinux_system_ysdmod.yml
438 lines (434 loc) · 13.2 KB
/
linux_system_ysdmod.yml
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
apiVersion: influxdata.com/v2alpha1
kind: Label
metadata:
name: linux-system-template-ysd
spec:
color: '#7A65F2'
name: Linux System Template
---
apiVersion: influxdata.com/v2alpha1
kind: Bucket
metadata:
name: telegraf-ysd
spec:
associations:
- kind: Label
name: linux-system-template-ysd
name: Telegraf
retentionRules:
- everySeconds: 604800
type: expire
---
apiVersion: influxdata.com/v2alpha1
kind: Bucket
metadata:
name: telegraf-1h-downsample-ysd
spec:
associations:
- kind: Label
name: linux-system-template-ysd
name: Telegraf-1h-downsample
retentionRules:
- everySeconds: 7.776e+06
type: expire
---
apiVersion: influxdata.com/v2alpha1
kind: Task
metadata:
name: telegraf-downsample-ysd
spec:
associations:
- kind: Label
name: linux-system-template-ysd
cron: 2 4 * * *
name: Telegraf-1h-downsample
query: |-
// Defines a data source
data =
from(bucket: "Telegraf")
|> range(start: -48h)
data
// Windows and aggregates the data in to 1h averages
|> aggregateWindow(fn: mean, every: 1h)
// Stores the aggregated data in a new bucket
|> to(bucket: "Telegraf-1h-downsample")
---
apiVersion: influxdata.com/v2alpha1
kind: Variable
metadata:
name: bucket-ysd
spec:
associations:
- kind: Label
name: linux-system-template-ysd
language: flux
name: bucket
query: |-
buckets()
|> filter(fn: (r) => r.name !~ /^_/)
|> rename(columns: {name: "_value"})
|> keep(columns: ["_value"])
type: query
---
apiVersion: influxdata.com/v2alpha1
kind: Variable
metadata:
name: linux-host-ysd
spec:
associations:
- kind: Label
name: linux-system-template-ysd
language: flux
name: linux_host
query: |-
import "influxdata/influxdb/v1"
v1.measurementTagValues(bucket: v.bucket, measurement: "cpu", tag: "host")
type: query
---
apiVersion: influxdata.com/v2alpha1
kind: Dashboard
metadata:
name: linux-system-ysd
spec:
associations:
- kind: Label
name: linux-system-template-ysd
charts:
- colors:
- hex: '#00C9FF'
id: base
name: laser
type: text
decimalPlaces: 1
height: 1
kind: Single_Stat
name: System Uptime
queries:
- query: |-
from(bucket: v.bucket)
|> range(start: v.timeRangeStart, stop: v.timeRangeStop)
|> filter(fn: (r) => r._measurement == "system")
|> filter(fn: (r) => r._field == "uptime")
|> filter(fn: (r) => r.host == v.linux_host)
|> last()
|> map(fn: (r) => ({ _value: float(v: r._value) / 86400.00 }))
staticLegend: {}
suffix: ' Days'
width: 2
- axes:
- base: "10"
name: x
scale: linear
- base: "10"
name: "y"
scale: linear
suffix: '%'
- base: "10"
name: y2
scale: linear
geom: line
height: 3
kind: Xy
name: CPU Usage
queries:
- query: |-
from(bucket: v.bucket)
|> range(start: v.timeRangeStart, stop: v.timeRangeStop)
|> filter(fn: (r) => r.host == v.linux_host)
|> filter(fn: (r) => r._measurement == "cpu")
|> filter(fn: (r) => r._field == "usage_user" or r._field == "usage_system")
|> filter(fn: (r) => r.cpu == "cpu-total")
|> aggregateWindow(every: v.windowPeriod, fn: mean, createEmpty: false)
staticLegend: {}
width: 4
xCol: _time
yCol: _value
yPos: 1
- axes:
- base: "10"
name: x
scale: linear
- base: "2"
label: Load
name: "y"
scale: linear
- base: "10"
name: y2
scale: linear
geom: line
height: 3
kind: Xy
name: System Load
queries:
- query: |-
from(bucket: v.bucket)
|> range(start: v.timeRangeStart, stop: v.timeRangeStop)
|> filter(fn: (r) => r.host == v.linux_host)
|> filter(fn: (r) => r._measurement == "system")
|> filter(fn: (r) => r._field == "load1" or r._field == "load5" or r._field == "load15")
|> aggregateWindow(every: v.windowPeriod, fn: mean, createEmpty: false)
staticLegend: {}
width: 4
xCol: _time
yCol: _value
yPos: 4
- colors:
- hex: '#4ED8A0'
id: base
name: rainforest
type: background
- hex: '#FFB94A'
id: GpOxzbkM1WBXSrF73mtxl
name: pineapple
type: background
value: 70
- hex: '#DC4E58'
id: Germj5It8nF9xrLOVR4uY
name: fire
type: background
value: 90
decimalPlaces: 1
height: 1
kind: Single_Stat
name: CPU Temp
queries:
- query: |-
from(bucket: v.bucket)
|> range(start: v.timeRangeStart, stop: v.timeRangeStop)
|> filter(fn: (r) => r["_measurement"] == "temp")
|> filter(fn: (r) => r["host"] == v.linux_host)
|> filter(fn: (r) => r["_field"] == "temp")
|> last()
staticLegend: {}
suffix: °C
width: 2
xPos: 2
- colors:
- hex: '#00C9FF'
name: laser
type: text
decimalPlaces: 0
height: 1
kind: Single_Stat
name: nCPUs
queries:
- query: |-
from(bucket: v.bucket)
|> range(start: v.timeRangeStart, stop: v.timeRangeStop)
|> filter(fn: (r) => r._measurement == "system")
|> filter(fn: (r) => r._field == "n_cpus")
|> filter(fn: (r) => r.host == v.linux_host)
|> last()
staticLegend: {}
suffix: ' CPUs'
width: 2
xPos: 4
- axes:
- base: "10"
name: x
scale: linear
- base: "10"
name: "y"
scale: linear
suffix: '%'
- base: "10"
name: y2
scale: linear
geom: line
height: 3
kind: Xy
name: Disk Usage
queries:
- query: |-
from(bucket: v.bucket)
|> range(start: v.timeRangeStart, stop: v.timeRangeStop)
|> filter(fn: (r) => r.host == v.linux_host)
|> filter(fn: (r) => r._measurement == "disk")
|> filter(fn: (r) => r._field == "used_percent")
|> aggregateWindow(every: v.windowPeriod, fn: last, createEmpty: false)
staticLegend: {}
width: 4
xCol: _time
xPos: 4
yCol: _value
yPos: 1
- axes:
- base: "10"
name: x
scale: linear
- base: "10"
label: Bytes
name: "y"
scale: linear
- base: "10"
name: y2
scale: linear
geom: line
height: 3
kind: Xy
name: Disk IO
queries:
- query: |-
from(bucket: v.bucket)
|> range(start: v.timeRangeStart, stop: v.timeRangeStop)
|> filter(fn: (r) => r._measurement == "diskio")
|> filter(fn: (r) => r._field == "read_bytes" or r._field == "write_bytes")
|> filter(fn: (r) => r.host == v.linux_host)
|> derivative(unit: v.windowPeriod, nonNegative: true)
staticLegend: {}
width: 4
xCol: _time
xPos: 4
yCol: _value
yPos: 4
- colors:
- hex: '#00C9FF'
name: laser
type: text
decimalPlaces: 2
height: 1
kind: Single_Stat
name: Total Memory
queries:
- query: "from(bucket: v.bucket)\n |> range(start: v.timeRangeStart, stop: v.timeRangeStop)\n |> filter(fn: (r) => r._measurement == \"mem\") \n |> filter(fn: (r) => r._field == \"total\")\n |> filter(fn: (r) => r.host == v.linux_host)\n |> last() \n |> map(fn: (r) => ({r with _value: float(v: r._value) / 1024.0 / 1024.0 / 1024.0}))"
staticLegend: {}
suffix: ' GB'
width: 2
xPos: 6
- axes:
- base: "10"
name: x
scale: linear
- base: "10"
name: "y"
scale: linear
suffix: '%'
- base: "10"
name: y2
scale: linear
colors:
- hex: '#8F8AF4'
name: Do Androids Dream of Electric Sheep?
type: scale
- hex: '#A51414'
name: Do Androids Dream of Electric Sheep?
type: scale
- hex: '#F4CF31'
name: Do Androids Dream of Electric Sheep?
type: scale
- hex: '#4ED8A0'
name: rainforest
type: text
- hex: '#FFB94A'
id: CBI7Y2g00RtZepaQs_a7w
name: pineapple
type: text
value: 50
- hex: '#DC4E58'
id: do-85uHuFRw8nIKlDPaN4
name: fire
type: text
value: 90
decimalPlaces: 1
height: 4
kind: Single_Stat_Plus_Line
name: Memory Usage
queries:
- query: |-
from(bucket: v.bucket)
|> range(start: v.timeRangeStart, stop: v.timeRangeStop)
|> filter(fn: (r) => r.host == v.linux_host)
|> filter(fn: (r) => r._measurement == "mem")
|> filter(fn: (r) => r._field == "used_percent")
|> aggregateWindow(every: v.windowPeriod, fn: mean, createEmpty: false)
staticLegend: {}
suffix: '%'
width: 4
xCol: _time
xPos: 8
yCol: _value
- axes:
- base: "10"
name: x
scale: linear
- base: "10"
label: Bytes
name: "y"
scale: linear
- base: "10"
name: y2
scale: linear
geom: line
height: 3
kind: Xy
name: Network
queries:
- query: |-
from(bucket: v.bucket)
|> range(start: v.timeRangeStart, stop: v.timeRangeStop)
|> filter(fn: (r) => r.host == v.linux_host)
|> filter(fn: (r) => r._measurement == "net")
|> filter(fn: (r) => r.interface == "eth0")
|> filter(fn: (r) => r._field == "bytes_recv" or r._field == "bytes_sent")
|> derivative(unit: v.windowPeriod, nonNegative: true)
staticLegend: {}
width: 4
xCol: _time
xPos: 8
yCol: _value
yPos: 4
description: A collection of useful visualizations for monitoring your Linux system
name: Linux System (ysdmod)
---
apiVersion: influxdata.com/v2alpha1
kind: Telegraf
metadata:
name: linux-system-monitoring-ysd
spec:
associations:
- kind: Label
name: linux-system-template-ysd
config: |
[global_tags]
[agent]
interval = "60s"
round_interval = true
metric_batch_size = 1000
metric_buffer_limit = 10000
collection_jitter = "0s"
flush_interval = "60s"
flush_jitter = "0s"
precision = ""
debug = false
quiet = false
omit_hostname = false
hostname = "${HOSTNAME}"
# InfluxDBCloud
[[outputs.influxdb_v2]]
urls = ["${INFLUX_CLOUD_URL}"]
organization = "${INFLUX_CLOUD_ORG}"
token = "${INFLUX_CLOUD_TOKEN}"
bucket = "Telegraf"
# EndInfluxDBCloud
# SystemInput
[[inputs.cpu]]
percpu = true
totalcpu = true
collect_cpu_time = false
report_active = false
[[inputs.disk]]
ignore_fs = ["tmpfs", "devtmpfs", "devfs", "iso9660", "overlay", "aufs", "squashfs"]
[[inputs.diskio]]
[[inputs.kernel]]
[[inputs.mem]]
[[inputs.net]]
[[inputs.processes]]
[[inputs.swap]]
[[inputs.system]]
fielddrop = ["uptime_format"]
[[inputs.internal]]
collect_memstats = true
[[inputs.temp]]
# EndSystemInput
description: A collection of useful metrics for monitoring your Linux system
name: Linux System Monitoring