You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/api/supervisor/endpoints.md
+13-2Lines changed: 13 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1708,6 +1708,11 @@ Return information about the host.
1708
1708
| llmnr_hostname | string or null | The hostname currently exposed on the network via LLMNR for host |
1709
1709
| operating_system | string | The operating system on the host |
1710
1710
| startup_time | float | The time in seconds it took for last boot |
1711
+
| disk_life_time | float or null | Percentage of estimated disk lifetime used (0–100). Not all disks provide this information, returns `null` if unavailable. |
1712
+
| timezone | string | The current timezone of the host. |
1713
+
| dt_utc | string | Current UTC date/time of the host in ISO 8601 format. |
1714
+
| dt_synchronized | bool |`true` if the host is synchronized with an NTP service. |
1715
+
| use_ntp | bool |`true` if the host is using an NTP service for time synchronization. |
1711
1716
1712
1717
**Example response:**
1713
1718
@@ -1729,7 +1734,13 @@ Return information about the host.
1729
1734
"boot_timestamp": 1234567788,
1730
1735
"startup_time": 12.345,
1731
1736
"broadcast_llmnr": true,
1732
-
"broadcast_mdns": false
1737
+
"broadcast_mdns": false,
1738
+
"virtualization": "",
1739
+
"disk_life_time": 10.0,
1740
+
"timezone": "Europe/Brussels",
1741
+
"dt_utc": "2025-09-08T12:00:00.000000+00:00",
1742
+
"dt_synchronized": true,
1743
+
"use_ntp": true
1733
1744
}
1734
1745
```
1735
1746
@@ -2204,7 +2215,7 @@ Returns a dict with selected keys from other `/*/info` endpoints.
0 commit comments