This note is taken from my ProxmoxMaster repository.
#!/bin/bash# AUTHOR: Tyler McCann (@tylerdotrar)# ARBITRARY VERSION NUMBER: 1.0.0# LINK: https://github.com/tylerdotrar/ProxmoxMaster# Validate script is being ran with elevated privilegesif["$EUID"-ne0]thenecho"Script must be ran as root."exitfi# Visual formatting of output
print_yellow(){echo-e"$(tputsetaf3)$1$(tputsetaf7)"}# Target File for Node Hardware Monitoringnodes='/usr/share/perl5/PVE/API2/Nodes.pm'nodes_bak="${nodes}.bak"# Backup of original filenodes_tmp="${nodes}.tmp"# Temporary file storing custom contents# Target File for Summary Page Formattingmanager='/usr/share/pve-manager/js/pvemanagerlib.js'manager_bak="${manager}.bak"# Backup of original filemanager_tmp="${manager}.tmp"# Temporary file storing custom contents### Step 1: Setup CPU temp monitoring
print_yellow"[+] Attempting to install and execute 'sensors' tool..."
aptinstalllm-sensors-y
sensors-detect--auto
print_yellow" o Done.\n"### Step 2: Add Node CPU Temperature Readings
print_yellow"[+] Adding sensors reference to '$nodes'..."# Create backup of target file
print_yellow" o Backup file created: '$nodes_bak'"
cp$nodes$nodes_bak# Insert sensors referenceecho-e'\n\t# Added Reference for CPU Temperature Readings\t$res->{CPUtemperature} = `sensors`;'>$nodes_tmp# Get line number of unique string and paste contents immediately afterline_node=$(grep-n'$dinfo'$nodes|head-1|cut-f1-d:)
sed-i"$line_node r $nodes_tmp"$nodes# Remove temp contents file
rm$nodes_tmp
print_yellow" o Done.\n"### Step 3: Display Readings on Proxmox Summary
print_yellow"[+] Formatting CPU temperature readings in '$manager'..."# Create backup of target file
print_yellow" o Backup file created: '$manager_bak'"
cp$manager$manager_bak# Insert CPU formatting (Package + Cores 0-3)echo-e'\t// Added Formatting for CPU Temperature Readings\t{ \titemId: "CPUtemperature", \tcolspan: 2, \tprintBar: false, \ttitle: gettext("CPU Temperature"), \ttextField: "CPUtemperature", \trenderer: function(value) { \tconst package = value.match(/Package id 0.*?\+([\d\.]+)Â/)[1]; \tconst c0 = value.match(/Core 0.*?\+([\d\.]+)Â/)[1]; \tconst c1 = value.match(/Core 1.*?\+([\d\.]+)Â/)[1]; \tconst c2 = value.match(/Core 2.*?\+([\d\.]+)Â/)[1]; \tconst c3 = value.match(/Core 3.*?\+([\d\.]+)Â/)[1]; \treturn `Package: ${package}℃ | Core 0: ${c0}℃ | Core 1: ${c1}℃ | Core 2: ${c2}℃ | Core 3: ${c3}℃` \t}\t},'>$manager_tmp# Get line number of unique string (+ 2) and paste contents immediately afterline=$(grep-n'Proxmox.Utils.render_cpu_model'$manager|cut-f1-d:)line_p2=$((line+2))
sed-i"$line_p2 r $manager_tmp"$manager# Remove temp contents file
rm$manager_tmp
print_yellow" o Done.\n"### Step 4: Restart the Summary Page
print_yellow"[+] Restarting 'pveproxy' to reload the summary page..."
systemctlrestartpveproxy
print_yellow" o You will need to reload your page/clear your cache to see these changes (or open with a private window)."
print_yellow" o Done.\n"