Skip to content

Commit 119d4df

Browse files
authored
Fix documentation gaps in /host/info API (home-assistant#2780)
1 parent 6dbc3d4 commit 119d4df

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

docs/api/supervisor/endpoints.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1708,6 +1708,11 @@ Return information about the host.
17081708
| llmnr_hostname | string or null | The hostname currently exposed on the network via LLMNR for host |
17091709
| operating_system | string | The operating system on the host |
17101710
| 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. |
17111716

17121717
**Example response:**
17131718

@@ -1729,7 +1734,13 @@ Return information about the host.
17291734
"boot_timestamp": 1234567788,
17301735
"startup_time": 12.345,
17311736
"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
17331744
}
17341745
```
17351746

@@ -2204,7 +2215,7 @@ Returns a dict with selected keys from other `/*/info` endpoints.
22042215
"channel": "stable",
22052216
"logging": "info",
22062217
"state": "running",
2207-
"timezone": "Europe/Tomorrowland"
2218+
"timezone": "Europe/Brussels"
22082219
}
22092220
```
22102221

0 commit comments

Comments
 (0)