diff --git a/k3shx/10gbe.conf b/k3shx/10gbe.conf new file mode 100644 index 0000000..9a9bf18 --- /dev/null +++ b/k3shx/10gbe.conf @@ -0,0 +1 @@ +UserParameter=mac_temperature,/usr/bin/sensors | grep 'MAC Temperature' | awk '{print $3}' | cut -d '+' -f 2 diff --git a/k3shx/README.md b/k3shx/README.md new file mode 100644 index 0000000..471639c --- /dev/null +++ b/k3shx/README.md @@ -0,0 +1,49 @@ +# k3shx + +UserParameters for all k3shx systems. + +|Host|Files| +|---|---| +|k3sh0|`amd_cpu.conf`,`amd_gpu.conf`,`10gbe.conf`| +|k3sh1|`amd_cpu.conf`,`amd_gpu.conf`,`10gbe.conf`| +|k3sh2|`amd_cpu.conf`,`amd_gpu.conf`,`10gbe.conf`| +|k3sh3|| + +## amd_cpu.conf + +Monitoring of junction temperature of AMD CPUs. + +Example sensors output: +```bash +k10temp-pci-00c3 +Adapter: PCI adapter +Tctl: +38.9°C +``` + +## amd_gpu.conf + +Monitoring of edge temperature of AMD GPUs. + +> ⚠️ **Warning**
This has only been tested with AMD iGPUs and may be different for dedicated GPUs + +Example sensors output: +```bash +amdgpu-pci-0400 +Adapter: PCI adapter +vddgfx: 887.00 mV +vddnb: 962.00 mV +edge: +35.0°C +PPT: 11.00 W +``` + +## 10gbe.conf + +Monitoring of MAC temperature of M.2 PCIe 10 GbE Aquantia network adapter. + +Example sensors output: +```bash +enp1s0-pci-0100 +Adapter: PCI adapter +PHY Temperature: +71.2°C +MAC Temperature: +69.9°C +``` \ No newline at end of file diff --git a/k3shx/amd_cpu.conf b/k3shx/amd_cpu.conf new file mode 100644 index 0000000..e79878a --- /dev/null +++ b/k3shx/amd_cpu.conf @@ -0,0 +1 @@ +UserParameter=cpu_temperature,/usr/bin/sensors | grep 'Tctl' | awk '{print $2}' | cut -d '+' -f 2 diff --git a/k3shx/amd_gpu.conf b/k3shx/amd_gpu.conf new file mode 100644 index 0000000..fb41033 --- /dev/null +++ b/k3shx/amd_gpu.conf @@ -0,0 +1 @@ +UserParameter=gpu_temperature,/usr/bin/sensors | grep 'edge' | awk '{print $2}' | cut -d '+' -f 2