Support long term statistics

ref: https://developers.home-assistant.io/docs/core/entity/sensor/#long-term-statistics
This commit is contained in:
Randy Lai
2023-07-18 09:53:46 -07:00
committed by Masoko
parent 381401c212
commit f1ac5cdcf0

View File

@@ -159,43 +159,53 @@ def config_json(what_config):
if what_config == "cpuload": if what_config == "cpuload":
data["icon"] = "mdi:speedometer" data["icon"] = "mdi:speedometer"
data["name"] = hostname + " CPU Usage" data["name"] = hostname + " CPU Usage"
data["state_class"] = "measurement"
data["unit_of_measurement"] = "%" data["unit_of_measurement"] = "%"
elif what_config == "cputemp": elif what_config == "cputemp":
data["icon"] = "hass:thermometer" data["icon"] = "hass:thermometer"
data["name"] = hostname + " CPU Temperature" data["name"] = hostname + " CPU Temperature"
data["unit_of_measurement"] = "°C" data["unit_of_measurement"] = "°C"
data["state_class"] = "measurement"
elif what_config == "diskusage": elif what_config == "diskusage":
data["icon"] = "mdi:harddisk" data["icon"] = "mdi:harddisk"
data["name"] = hostname + " Disk Usage" data["name"] = hostname + " Disk Usage"
data["unit_of_measurement"] = "%" data["unit_of_measurement"] = "%"
data["state_class"] = "measurement"
elif what_config == "voltage": elif what_config == "voltage":
data["icon"] = "mdi:flash" data["icon"] = "mdi:flash"
data["name"] = hostname + " CPU Voltage" data["name"] = hostname + " CPU Voltage"
data["unit_of_measurement"] = "V" data["unit_of_measurement"] = "V"
data["state_class"] = "measurement"
elif what_config == "swap": elif what_config == "swap":
data["icon"] = "mdi:harddisk" data["icon"] = "mdi:harddisk"
data["name"] = hostname + " Disk Swap" data["name"] = hostname + " Disk Swap"
data["unit_of_measurement"] = "%" data["unit_of_measurement"] = "%"
data["state_class"] = "measurement"
elif what_config == "memory": elif what_config == "memory":
data["icon"] = "mdi:memory" data["icon"] = "mdi:memory"
data["name"] = hostname + " Memory Usage" data["name"] = hostname + " Memory Usage"
data["unit_of_measurement"] = "%" data["unit_of_measurement"] = "%"
data["state_class"] = "measurement"
elif what_config == "sys_clock_speed": elif what_config == "sys_clock_speed":
data["icon"] = "mdi:speedometer" data["icon"] = "mdi:speedometer"
data["name"] = hostname + " CPU Clock Speed" data["name"] = hostname + " CPU Clock Speed"
data["unit_of_measurement"] = "MHz" data["unit_of_measurement"] = "MHz"
data["state_class"] = "measurement"
elif what_config == "uptime_days": elif what_config == "uptime_days":
data["icon"] = "mdi:calendar" data["icon"] = "mdi:calendar"
data["name"] = hostname + " Uptime" data["name"] = hostname + " Uptime"
data["unit_of_measurement"] = "days" data["unit_of_measurement"] = "days"
data["state_class"] = "measurement"
elif what_config == "wifi_signal": elif what_config == "wifi_signal":
data["icon"] = "mdi:wifi" data["icon"] = "mdi:wifi"
data["name"] = hostname + " Wifi Signal" data["name"] = hostname + " Wifi Signal"
data["unit_of_measurement"] = "%" data["unit_of_measurement"] = "%"
data["state_class"] = "measurement"
elif what_config == "wifi_signal_dbm": elif what_config == "wifi_signal_dbm":
data["icon"] = "mdi:wifi" data["icon"] = "mdi:wifi"
data["name"] = hostname + " Wifi Signal" data["name"] = hostname + " Wifi Signal"
data["unit_of_measurement"] = "dBm" data["unit_of_measurement"] = "dBm"
data["state_class"] = "measurement"
else: else:
return "" return ""
# Return our built discovery config # Return our built discovery config