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.
This commit is contained in:
István Sárándi
2019-11-18 15:08:25 +01:00
committed by PipoCanaja
parent bf181b9dc2
commit c22fa10636

View File

@@ -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',