Compare commits

...

3 Commits

Author SHA1 Message Date
dab566cc73 feat: add temperature and network speed. 2025-03-18 10:53:05 +08:00
73647e3fad . 2025-03-18 10:21:53 +08:00
c0d6450a87 v8.3.5 2025-03-18 10:20:33 +08:00
4 changed files with 2508 additions and 1074 deletions

View File

@ -1,5 +1,10 @@
@echo off
scp pve.tsanie.org:/usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js usr\share\javascript\proxmox-widget-toolkit\proxmoxlib.js
scp pve.tsanie.org:/usr/share/perl5/PVE/API2/Nodes.pm usr\share\perl5\PVE\API2\Nodes.pm
scp pve.tsanie.org:/usr/share/pve-manager/js/pvemanagerlib.js usr\share\pve-manager\js\pvemanagerlib.js
pause
scp usr\share\javascript\proxmox-widget-toolkit\proxmoxlib.js pve.tsanie.org:/usr/share/javascript/proxmox-widget-toolkit/
scp usr\share\perl5\PVE\API2\Nodes.pm pve.tsanie.org:/usr/share/perl5/PVE/API2/
scp usr\share\pve-manager\js\pvemanagerlib.js pve.tsanie.org:/usr/share/pve-manager/js/

File diff suppressed because it is too large Load Diff

View File

@ -399,7 +399,7 @@ __PACKAGE__->register_method({
type => "object",
additionalProperties => 1,
properties => {
# TODO: document remaing ones
# TODO: document remaining ones
'boot-info' => {
description => "Meta-information about the boot mode.",
type => 'object',
@ -417,7 +417,7 @@ __PACKAGE__->register_method({
},
},
'current-kernel' => {
description => "The uptime of the system in seconds.",
description => "Meta-information about the currently booted kernel of this node.",
type => 'object',
properties => {
sysname => {
@ -438,6 +438,81 @@ __PACKAGE__->register_method({
},
},
},
cpu => {
type => "number",
description => "The current cpu usage.",
},
cpuinfo => {
type => "object",
properties => {
cores => {
type => "integer",
description => "The number of physical cores of the CPU.",
},
cpus => {
type => "integer",
description => "The number of logical threads of the CPU.",
},
model => {
type => "string",
description => "The CPU model",
},
sockets => {
type => "integer",
description => "The number of logical threads of the CPU.",
},
},
},
loadavg => {
type => 'array',
description => "An array of load avg for 1, 5 and 15 minutes respectively.",
items => {
type => 'string',
description => "The value of the load.",
}
},
memory => {
type => "object",
properties => {
free => {
type => "integer",
description => "The free memory in bytes.",
},
total => {
type => "integer",
description => "The total memory in bytes.",
},
used => {
type => "integer",
description => "The used memory in bytes.",
},
},
},
pveversion => {
type => 'string',
description => "The PVE version string.",
},
rootfs => {
type => "object",
properties => {
free => {
type => "integer",
description => "The free bytes on the root filesystem.",
},
total => {
type => "integer",
description => "The total size of the root filesystem in bytes.",
},
used => {
type => "integer",
description => "The used bytes in the root filesystem.",
},
avail => {
type => "integer",
description => "The available bytes in the root filesystem.",
},
},
}
},
},
code => sub {
@ -493,7 +568,9 @@ __PACKAGE__->register_method({
my $net_enp8s0 = `ethtool enp8s0 | grep Speed`;
$res->{networksp} = [ $net_eno1, $net_enp4s0, $net_enp5s0, $net_enp7s0, $net_enp8s0 ];
$res->{thermal} = `sensors -j`; # add temps
my $temps = `sensors -j`; # add temps
my $gpus = `nvidia-smi | awk '{print \$3}' | sed -n '10p' | sed 's/C\$//'`;
$res->{thermal} = [ $temps, $gpus ];
my $dinfo = df('/', 1); # output is bytes
@ -915,6 +992,7 @@ __PACKAGE__->register_method({
check => ['perm', '/nodes/{node}', [ 'Sys.Syslog' ]],
},
protected => 1,
download_allowed => 1,
parameters => {
additionalProperties => 0,
properties => {

File diff suppressed because it is too large Load Diff