feat: configuration for k3shx

This commit is contained in:
2024-05-06 21:46:47 +02:00
parent b5a1938c23
commit 2b73a17e61
4 changed files with 52 additions and 0 deletions

1
k3shx/10gbe.conf Normal file
View File

@@ -0,0 +1 @@
UserParameter=mac_temperature,/usr/bin/sensors | grep 'MAC Temperature' | awk '{print $3}' | cut -d '+' -f 2

49
k3shx/README.md Normal file
View File

@@ -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** <br> 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
```

1
k3shx/amd_cpu.conf Normal file
View File

@@ -0,0 +1 @@
UserParameter=cpu_temperature,/usr/bin/sensors | grep 'Tctl' | awk '{print $2}' | cut -d '+' -f 2

1
k3shx/amd_gpu.conf Normal file
View File

@@ -0,0 +1 @@
UserParameter=gpu_temperature,/usr/bin/sensors | grep 'edge' | awk '{print $2}' | cut -d '+' -f 2