This commit is contained in:
mwiegand 2021-07-05 01:07:06 +02:00
parent f12229c3a8
commit dea96bf3a6
4 changed files with 26 additions and 1 deletions

View file

@ -142,7 +142,7 @@ for dashboard_id, monitored_node in enumerate(monitored_nodes, start=1):
dashboard['panels'].append(panel)
files[f'/var/lib/grafana/dashboards/{monitored_node.name}.json'] = {
'content': json.dumps(dashboard, sort_keys=True, indent=4),
'content': json.dumps(dashboard, indent=4),
'triggers': [
'svc_systemd:grafana-server:restart',
]

View file

@ -0,0 +1,4 @@
```
setfacl -Rm g:telegraf:rX /var/spool/postfix/
setfacl -dm g:telegraf:rX /var/spool/postfix/
```

View file

@ -50,6 +50,7 @@ defaults = {
},
'grafana_rows': [
'cpu',
'mem',
'disk_io',
'net_io',
],

20
data/grafana/rows/mem.py Normal file
View file

@ -0,0 +1,20 @@
{
'memory': {
'stacked': True,
'queries': {
'memory': {
'filters': {
'_measurement': 'mem',
'_field': [
'used',
'cached',
'buffered',
'free',
],
},
'function': 'mean',
},
},
'unit': 'decbytes',
},
}