hardware and monitoring

This commit is contained in:
mwiegand 2021-11-18 23:37:14 +01:00
parent 384f7dbfa8
commit 604e01f16e
6 changed files with 33 additions and 29 deletions

View file

@ -24,12 +24,12 @@ defaults = {
'name_override': "cpu_frequency", 'name_override': "cpu_frequency",
'data_format': "influx", 'data_format': "influx",
}), }),
repo.libs.hashable.hashable({ # repo.libs.hashable.hashable({
'commands': ["/bin/bash -c 'expr $(cat /sys/class/thermal/thermal_zone0/temp) / 1000'"], # 'commands': ["/bin/bash -c 'expr $(cat /sys/class/thermal/thermal_zone0/temp) / 1000'"],
'name_override': "cpu_temperature", # 'name_override': "cpu_temperature",
'data_format': "value", # 'data_format': "value",
'data_type': "integer", # 'data_type': "integer",
}), # }),
}, },
}, },
}, },

View file

@ -0,0 +1,5 @@
defaults = {
'system': {
'architecture': 'amd64',
},
}

View file

@ -2,8 +2,6 @@ import tomlkit
import json import json
from bundlewrap.metadata import MetadataJSONEncoder from bundlewrap.metadata import MetadataJSONEncoder
arch = node.metadata.get('vm/architecture', 'amd64')
files = { files = {
'/etc/telegraf/telegraf.conf': { '/etc/telegraf/telegraf.conf': {
'content': tomlkit.dumps( 'content': tomlkit.dumps(
@ -19,7 +17,7 @@ files = {
}, },
'/usr/local/share/icinga/plugins/procio': { '/usr/local/share/icinga/plugins/procio': {
'content_type': 'download', 'content_type': 'download',
'source': f'https://dl.sublimity.de/telegraf-procio/telegraf-procio-{arch}-latest', 'source': f"https://dl.sublimity.de/telegraf-procio/telegraf-procio-{node.metadata.get('system/architecture')}-latest",
'mode': '0755', 'mode': '0755',
}, },
} }

View file

@ -20,25 +20,25 @@
'display_name': '__field.labels.cpu', 'display_name': '__field.labels.cpu',
'min': 0, 'min': 0,
}, },
'temperature': { # 'temperature': {
'stacked': False, # 'stacked': False,
'queries': { # 'queries': {
'cpu_temperature': { # 'cpu_temperature': {
'filters': { # 'filters': {
'_measurement': 'cpu_temperature', # '_measurement': 'cpu_temperature',
'_field': [ # '_field': [
'value', # 'value',
], # ],
}, # },
'function': 'mean', # 'function': 'mean',
}, # },
}, # },
'legend': { # 'legend': {
'displayMode': 'hidden', # 'displayMode': 'hidden',
}, # },
'tooltip': 'multi', # 'tooltip': 'multi',
'unit': 'degrees', # 'unit': 'degrees',
}, # },
'sensors': { 'sensors': {
'stacked': False, 'stacked': False,
'queries': { 'queries': {

View file

@ -10,7 +10,7 @@
], ],
}, },
'function': 'derivative', 'function': 'derivative',
'minimum': 1, 'minimum': 1024,
}, },
}, },
'unit': 'bytes', 'unit': 'bytes',

View file

@ -1,6 +1,7 @@
{ {
'bundles': [ 'bundles': [
'sudo', 'sudo',
'system',
'users', 'users',
'zsh', 'zsh',
], ],