get_boot_logs
Retrieve recent boot logs from journalctl to diagnose and troubleshoot boot problems on systemd-based systems.
Instructions
Retrieve recent boot logs from journalctl. Useful for troubleshooting boot issues. Works on systemd-based systems.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| lines | No | Number of log lines to retrieve. Default: 100 |
Input Schema (JSON Schema)
{
"properties": {
"lines": {
"default": 100,
"description": "Number of log lines to retrieve. Default: 100",
"type": "integer"
}
},
"required": [],
"type": "object"
}