diff --git a/homeassistant/components/glances/sensor.py b/homeassistant/components/glances/sensor.py index 1385d5e59a768..90b4b386f37e5 100644 --- a/homeassistant/components/glances/sensor.py +++ b/homeassistant/components/glances/sensor.py @@ -197,18 +197,20 @@ async def async_update(self): elif self.type == "cpu_temp": for sensor in value["sensors"]: if sensor["label"] in [ - "CPU", + "amdgpu 1", + "aml_thermal", + "Core 0", + "Core 1", "CPU Temperature", - "Package id 0", - "Physical id 0", - "cpu_thermal 1", + "CPU", "cpu-thermal 1", + "cpu_thermal 1", "exynos-therm 1", - "soc_thermal 1", + "Package id 0", + "Physical id 0", + "radeon 1", "soc-thermal 1", - "aml_thermal", - "Core 0", - "Core 1", + "soc_thermal 1", ]: self._state = sensor["value"] elif self.type == "docker_active":