cpu freq
This commit is contained in:
parent
11150b4f69
commit
44fe39b025
9 changed files with 60 additions and 20 deletions
|
@ -1,6 +1,5 @@
|
|||
# TODO
|
||||
|
||||
- systemd-swap
|
||||
- raspberry cpu frequency /sys/devices/system/cpu/cpu*/cpufreq/cpuinfo_cur_freq
|
||||
- gollum wiki
|
||||
- blog?
|
||||
|
|
8
bundles/hardware/files/cpu_frequency
Normal file
8
bundles/hardware/files/cpu_frequency
Normal 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
|
8
bundles/hardware/items.py
Normal file
8
bundles/hardware/items.py
Normal file
|
@ -0,0 +1,8 @@
|
|||
files = {
|
||||
'/usr/local/share/icinga/plugins/cpu_frequency': {
|
||||
'mode': '0755',
|
||||
'triggers': {
|
||||
'svc_systemd:telegraf:restart',
|
||||
},
|
||||
},
|
||||
}
|
20
bundles/hardware/metadata.py
Normal file
20
bundles/hardware/metadata.py
Normal 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",
|
||||
}),
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
|
@ -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',
|
||||
|
|
5
groups/machine/hardware.py
Normal file
5
groups/machine/hardware.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
'bundles': {
|
||||
'hardware',
|
||||
},
|
||||
}
|
|
@ -1,4 +1,7 @@
|
|||
{
|
||||
'supergroups': {
|
||||
'hardware',
|
||||
},
|
||||
'bundles': {
|
||||
'raspberry-pi',
|
||||
},
|
|
@ -6,6 +6,7 @@
|
|||
'nextcloud',
|
||||
'monitored',
|
||||
'webserver',
|
||||
'hardware',
|
||||
],
|
||||
'bundles': [
|
||||
'gitea',
|
||||
|
|
Loading…
Reference in a new issue