telegraf processes

This commit is contained in:
mwiegand 2021-10-27 15:30:30 +02:00
parent d2798a91c1
commit 5931ce16d9
5 changed files with 67 additions and 2 deletions

View file

@ -123,6 +123,8 @@ for dashboard_id, monitored_node in enumerate(monitored_nodes, start=1):
if 'max' in panel_config: if 'max' in panel_config:
panel['fieldConfig']['defaults']['max'] = panel_config['max'] panel['fieldConfig']['defaults']['max'] = panel_config['max']
if 'legend' in panel_config:
panel['options']['legend'].update(panel_config['legend'])
for query_name, query_config in panel_config['queries'].items(): for query_name, query_config in panel_config['queries'].items():
panel['targets'].append({ panel['targets'].append({
@ -131,6 +133,7 @@ for dashboard_id, monitored_node in enumerate(monitored_nodes, start=1):
bucket=bucket, bucket=bucket,
host=monitored_node.name, host=monitored_node.name,
negative=query_config.get('negative', False), negative=query_config.get('negative', False),
resolution=query_config.get('resolution', 1) * 4,
filters={ filters={
'host': monitored_node.name, 'host': monitored_node.name,
**query_config['filters'], **query_config['filters'],

View file

@ -14,7 +14,7 @@ defaults = {
'collection_jitter': '0s', 'collection_jitter': '0s',
'flush_interval': '10s', 'flush_interval': '10s',
'flush_jitter': '0s', 'flush_jitter': '0s',
'interval': '10s', 'interval': '15s',
'metric_batch_size': 1000, 'metric_batch_size': 1000,
'metric_buffer_limit': 10000, 'metric_buffer_limit': 10000,
'omit_hostname': False, 'omit_hostname': False,
@ -38,6 +38,14 @@ defaults = {
'squashfs', 'squashfs',
], ],
}], }],
'procstat': [{
'interval': '1m',
'pattern': '.',
'fieldpass': [
'cpu_usage',
'memory_rss',
],
}],
'diskio': [{}], 'diskio': [{}],
'kernel': [{}], 'kernel': [{}],
'mem': [{}], 'mem': [{}],
@ -53,6 +61,8 @@ defaults = {
'mem', 'mem',
'disk_io', 'disk_io',
'net_io', 'net_io',
'proc_cpu',
'proc_ram',
}, },
} }

View file

@ -10,5 +10,5 @@ from(bucket: "${bucket}")
% if negative: % if negative:
|> map(fn: (r) => ({r with _value: r._value * - 1.0})) |> map(fn: (r) => ({r with _value: r._value * - 1.0}))
% endif % endif
|> aggregateWindow(every: v.windowPeriod, fn: mean, createEmpty: false) |> aggregateWindow(every: duration(v: int(v: v.windowPeriod)*${resolution}), fn: mean, createEmpty: false)
|> yield(name: "mean") |> yield(name: "mean")

View file

@ -0,0 +1,26 @@
{
'process_cpu': {
'stacked': True,
'queries': {
'cpu': {
'filters': {
'_measurement': 'procstat',
'_field': [
'cpu_usage',
],
},
'resolution': 6,
},
},
'unit': 'percent',
'display_name': '__field.labels.process_name',
'legend': {
'displayMode': 'table',
'placement': 'right',
'calcs': [
'mean',
'max',
],
},
},
}

View file

@ -0,0 +1,26 @@
{
'process_ram': {
'stacked': True,
'queries': {
'ram': {
'filters': {
'_measurement': 'procstat',
'_field': [
'memory_rss',
],
},
'resolution': 6,
},
},
'unit': 'bytes',
'display_name': '__field.labels.process_name',
'legend': {
'displayMode': 'table',
'placement': 'right',
'calcs': [
'mean',
'max',
],
},
},
}