v8.3.5
This commit is contained in:
parent
2ff3562b11
commit
c0d6450a87
@ -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
@ -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 => {
|
||||
description => "The current cpu usage.",
|
||||
type => "number",
|
||||
},
|
||||
cpuinfo => {
|
||||
type => "object",
|
||||
properties => {
|
||||
cores => {
|
||||
description => "The number of physical cores of the CPU.",
|
||||
type => "integer",
|
||||
},
|
||||
cpus => {
|
||||
description => "The number of logical threads of the CPU.",
|
||||
type => "integer",
|
||||
},
|
||||
model => {
|
||||
description => "The CPU model",
|
||||
type => "string",
|
||||
},
|
||||
sockets => {
|
||||
description => "The number of logical threads of the CPU.",
|
||||
type => "integer",
|
||||
},
|
||||
},
|
||||
},
|
||||
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 {
|
||||
@ -486,15 +561,6 @@ __PACKAGE__->register_method({
|
||||
$res->{pveversion} = PVE::pvecfg::package() . "/" .
|
||||
PVE::pvecfg::version_text();
|
||||
|
||||
my $net_eno1 = `ethtool eno1 | grep Speed`;
|
||||
my $net_enp4s0 = `ethtool enp4s0 | grep Speed`;
|
||||
my $net_enp5s0 = `ethtool enp5s0 | grep Speed`;
|
||||
my $net_enp7s0 = `ethtool enp7s0 | grep Speed`;
|
||||
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 $dinfo = df('/', 1); # output is bytes
|
||||
|
||||
$res->{rootfs} = {
|
||||
@ -915,6 +981,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
Loading…
x
Reference in New Issue
Block a user