diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-06-07 11:52:22 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-06-07 11:52:29 +0200 |
commit | 7b1773fa97772e6756646b48d3d85d12426d0ddb (patch) | |
tree | e3f97deca07a5241e3bba52e542c9910e86e59f2 | |
parent | 3bd98a69316c38b55df3a769741d2973698fc1e7 (diff) | |
download | vyos-1x-7b1773fa97772e6756646b48d3d85d12426d0ddb.tar.gz vyos-1x-7b1773fa97772e6756646b48d3d85d12426d0ddb.zip |
op-mode: T2559: add "show environment sensors" command
vyos@vmware:~$ show environment sensors
VyOS running under hypervisor, no sensors available
vyos@apu4:~$ show environment sensors
ath10k_hwmon-pci-0500
temp1: N/A
k10temp-pci-00c3
temp1: +54.6°C (high = +70.0°C)
(crit = +105.0°C, hyst = +104.0°C)
fam15h_power-pci-00c4
power1: 3.28 W (interval = 0.01 s, crit = 6.00 W)
-rw-r--r-- | debian/control | 1 | ||||
-rw-r--r-- | op-mode-definitions/show-environment.xml | 21 |
2 files changed, 22 insertions, 0 deletions
diff --git a/debian/control b/debian/control index 85dd919a5..20423aee1 100644 --- a/debian/control +++ b/debian/control @@ -45,6 +45,7 @@ Depends: python3, wide-dhcpv6-client, bmon, hvinfo, + lm-sensors, file, lsscsi, pciutils, diff --git a/op-mode-definitions/show-environment.xml b/op-mode-definitions/show-environment.xml new file mode 100644 index 000000000..88e1718aa --- /dev/null +++ b/op-mode-definitions/show-environment.xml @@ -0,0 +1,21 @@ +<?xml version="1.0"?> +<interfaceDefinition> + <node name="show"> + <children> + <node name="environment"> + <properties> + <help>Show current system environmental conditions</help> + </properties> + <children> + <leafNode name="sensors"> + <properties> + <help>Show hardware monitoring results</help> + </properties> + <!-- Linux always adds "hypervisor" to CPU flags --> + <command>if ! grep -q hypervisor /proc/cpuinfo; then /usr/bin/sensors --no-adapter; else echo "VyOS running under hypervisor, no sensors available"; fi</command> + </leafNode> + </children> + </node> + </children> + </node> +</interfaceDefinition> |