From c22fa1063686876b9a97be396969d66243428b5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Istv=C3=A1n=20S=C3=A1r=C3=A1ndi?= Date: Mon, 18 Nov 2019 15:08:25 +0100 Subject: [PATCH] Fix name of an NVIDIA metric (#10837) The NVIDIA application obtains its metrics from nvidia-smi dmon. Its built-in help (nvidia-smi dmon --help) says that the pviol and tviol columns stand for "Power and Thermal Violations". Therefore the metric should not be called Thermal Violation Percentage, but Power Violation Percentage. --- includes/html/pages/device/apps/nvidia.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/html/pages/device/apps/nvidia.inc.php b/includes/html/pages/device/apps/nvidia.inc.php index 857612ebb5..4e173522a3 100644 --- a/includes/html/pages/device/apps/nvidia.inc.php +++ b/includes/html/pages/device/apps/nvidia.inc.php @@ -13,7 +13,7 @@ $graphs = array( 'nvidia_temp' => 'Temperature', 'nvidia_mclk' => 'Memory Clock', 'nvidia_pclk' => 'GPU Clock', - 'nvidia_pviol' => 'Thermal Violation Percentage', + 'nvidia_pviol' => 'Power Violation Percentage', 'nvidia_tviol' => 'Thermal Violation Boolean', 'nvidia_sbecc' => 'Single Bit ECC Errors', 'nvidia_dbecc' => 'Double Bit ECC Errors',