some grafana

This commit is contained in:
mwiegand 2022-08-12 17:42:25 +02:00
parent 88e80f4107
commit 3b257aadab
6 changed files with 61 additions and 104 deletions

View file

@ -127,12 +127,16 @@ for dashboard_id, monitored_node in enumerate(monitored_nodes, start=1):
panel['fieldConfig']['defaults']['min'] = panel_config['min']
if 'max' in panel_config:
panel['fieldConfig']['defaults']['max'] = panel_config['max']
if 'soft_max' in panel_config:
panel['fieldConfig']['defaults']['custom']['axisSoftMax'] = panel_config['soft_max']
if 'legend' in panel_config:
panel['options']['legend'].update(panel_config['legend'])
if 'tooltip' in panel_config:
panel['options']['tooltip']['mode'] = panel_config['tooltip']
if panel_config['tooltip'] == 'multi':
panel['options']['tooltip']['sort'] = 'desc'
for query_name, query_config in panel_config['queries'].items():
panel['targets'].append({

View file

@ -80,7 +80,6 @@ defaults = {
'proc_cpu',
'proc_ram',
'proc_io',
'pressure_stall',
},
'sudoers': {
'telegraf': {'/usr/local/share/telegraf/procio'},

View file

@ -1,6 +1,6 @@
{
'usage': {
'stacked': False,
'stacked': True,
'queries': {
'usage': {
'filters': {
@ -22,7 +22,12 @@
},
},
'min': 0,
'max': 100,
'soft_max': 3,
'unit': 'percent',
'tooltip': 'multi',
'legend': {
'displayMode': 'hidden',
},
},
'load': {
'stacked': False,
@ -39,5 +44,40 @@
'function': 'mean',
},
},
'min': 0,
'soft_max': 3,
'unit': 'percent',
'tooltip': 'multi',
'legend': {
'displayMode': 'hidden',
},
},
'pressure_stall': {
'queries': {
'pressure_stall': {
'filters': {
'_measurement': 'pressure_stall',
'resource': [
'cpu',
'io',
'memory',
],
'type': [
'some',
],
'_field': [
'avg10',
],
},
},
},
'min': 0,
'soft_max': 3,
'display_name': '__field.labels.resource',
'unit': 'percent',
'tooltip': 'multi',
'legend': {
'displayMode': 'hidden',
},
},
}

View file

@ -13,7 +13,8 @@
},
},
'unit': 'decbytes',
'display_name': '__field.labels.name'
'display_name': '__field.labels.name',
'tooltip': 'multi',
},
'write': {
'stacked': True,
@ -29,6 +30,7 @@
},
},
'unit': 'decbytes',
'display_name': '__field.labels.name'
'display_name': '__field.labels.name',
'tooltip': 'multi',
},
}

View file

@ -13,7 +13,8 @@
},
},
'unit': 'decbytes',
'display_name': '__field.labels.interface'
'display_name': '__field.labels.interface',
'tooltip': 'multi',
},
'out': {
'stacked': True,
@ -29,6 +30,7 @@
},
},
'unit': 'decbytes',
'display_name': '__field.labels.interface'
'display_name': '__field.labels.interface',
'tooltip': 'multi',
},
}

View file

@ -1,90 +0,0 @@
{
'cpu': {
'queries': {
'seome': {
'filters': {
'_measurement': 'pressure_stall',
'resource': [
'cpu',
],
'type': [
'some',
],
'_field': [
'avg10',
],
},
},
},
'display_name': '__field.labels.type',
'unit': 'percent',
},
'memory': {
'queries': {
'some': {
'filters': {
'_measurement': 'pressure_stall',
'resource': [
'memory',
],
'type': [
'some',
],
'_field': [
'avg10',
],
},
},
'full': {
'filters': {
'_measurement': 'pressure_stall',
'resource': [
'memory',
],
'type': [
'full',
],
'_field': [
'avg10',
],
},
},
},
'display_name': '__field.labels.type',
'unit': 'percent',
},
'io': {
'queries': {
'some': {
'filters': {
'_measurement': 'pressure_stall',
'resource': [
'io',
],
'type': [
'some',
],
'_field': [
'avg10',
],
},
},
'full': {
'filters': {
'_measurement': 'pressure_stall',
'resource': [
'io',
],
'type': [
'full',
],
'_field': [
'avg10',
],
},
},
},
'display_name': '__field.labels.type',
'unit': 'percent',
},
}