Google Chrome · Schema
BootPerformanceReport
Boot performance report.
BrowserChrome ExtensionsDeveloper ToolsWeb Platform
Properties
| Name | Type | Description |
|---|---|---|
| reportTime | string | Timestamp of the report. |
| bootUpDuration | string | Duration of boot-up in seconds. |
| bootUpTime | string | Timestamp when the device booted up. |
| shutdownDuration | string | Duration of shutdown in seconds. |
| shutdownTime | string | Timestamp when the device shut down. |
| shutdownReason | string | Reason for the last shutdown. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BootPerformanceReport",
"title": "BootPerformanceReport",
"type": "object",
"description": "Boot performance report.",
"properties": {
"reportTime": {
"type": "string",
"format": "date-time",
"description": "Timestamp of the report."
},
"bootUpDuration": {
"type": "string",
"description": "Duration of boot-up in seconds."
},
"bootUpTime": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the device booted up."
},
"shutdownDuration": {
"type": "string",
"description": "Duration of shutdown in seconds."
},
"shutdownTime": {
"type": "string",
"format": "date-time",
"description": "Timestamp when the device shut down."
},
"shutdownReason": {
"type": "string",
"description": "Reason for the last shutdown.",
"enum": [
"SHUTDOWN_REASON_UNSPECIFIED",
"USER_REQUEST",
"SYSTEM_UPDATE",
"LOW_BATTERY",
"OTHER"
]
}
}
}