This commit is contained in:
mwiegand 2021-11-10 03:26:33 +01:00
parent 11150b4f69
commit 44fe39b025
9 changed files with 60 additions and 20 deletions

View file

@ -1,6 +1,5 @@
# TODO
- systemd-swap
- raspberry cpu frequency /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_cur_freq
- gollum wiki
- blog?

View file

@ -0,0 +1,8 @@
#!/bin/bash
date=$(date --utc +%s%N)
for cpu in $(cat /sys/devices/system/cpu/cpu0/cpufreq/affected_cpus)
do
echo "cpu_frequency,cpu=$cpu mhz=$(expr $(cat /sys/devices/system/cpu/cpu$cpu/cpufreq/scaling_cur_freq) / 1000) $date"
done

View file

@ -0,0 +1,8 @@
files = {
'/usr/local/share/icinga/plugins/cpu_frequency': {
'mode': '0755',
'triggers': {
'svc_systemd:telegraf:restart',
},
},
}

View file

@ -0,0 +1,20 @@
defaults = {
'sudoers': {
'telegraf': {
'/usr/local/share/icinga/plugins/cpu_frequency',
},
},
'telegraf': {
'config': {
'inputs': {
'exec': {
repo.libs.hashable.hashable({
'commands': ["sudo /usr/local/share/icinga/plugins/cpu_frequency"],
'name_override': "cpu_frequency",
'data_format': "influx",
}),
},
},
},
},
}

View file

@ -7,11 +7,25 @@ defaults = {
'systemd-journald': {
'Storage': 'volatile',
},
'telegraf': {
'config': {
'inputs': {
'exec': {
h({
'commands': ["/bin/bash -c 'expr $(cat /sys/class/thermal/thermal_zone0/temp) / 1000'"],
'name_override': "cpu_temperature",
'data_format': "value",
'data_type': "integer",
}),
},
},
},
},
}
@metadata_reactor.provides(
'telegraf/config',
'telegraf/config/agent',
)
def telegraf(metadata):
return {
@ -21,29 +35,11 @@ def telegraf(metadata):
'flush_interval': '30s',
'interval': '30s',
},
'inputs': {
'exec': {
h({
'commands': ["/bin/bash -c 'expr $(cat /sys/class/thermal/thermal_zone0/temp) / 1000'"],
'name_override': "cpu_temperature",
'data_format': "value",
'data_type': "integer",
}),
# h({
# 'commands': [
# f'sudo /usr/local/share/icinga/plugins/smartctl',
# ],
# 'data_format': 'influx',
# 'interval': '20s',
# }),
},
},
},
},
}
@metadata_reactor.provides(
'zfs/kernel_params',
'zfs/datasets',

View file

@ -0,0 +1,5 @@
{
'bundles': {
'hardware',
},
}

View file

@ -1,4 +1,7 @@
{
'supergroups': {
'hardware',
},
'bundles': {
'raspberry-pi',
},

View file

@ -6,6 +6,7 @@
'nextcloud',
'monitored',
'webserver',
'hardware',
],
'bundles': [
'gitea',