mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* clean up all but header incrementing in Creating-Transport.md * make Device-Dependencies.md mdl happy * make Entities.md as mdl happy as possible... one long table line left * make mdl as happy as possible for index.md * clean up Introduction.md as much as possible * minor formatting cleanup... move each icon onto its own row * make ack and notes the same style * clean Macros.md up * clean Rules.md up as much as possible * tweak one line a bit to get it to format a bit nicer * a bit more format tweaking, making sure it does not sure with > * clean up as much as possible for Templates.md * make Testing.md as mdl happy as possibly * clean Transports.md up as much as possible * clean as many issues as possible for Alerts.md * clean up as much of ARP.md as possible * clean up as much as possible for Bills.md * make DeviceGroups.md as mdl happy as possible * cleanup Devices.md * make as mdl happy as possible Inventory.md and index.md * mdl cleanup for Logs.md and PortGroups.md * make Ports.md and Routing.md as happy as possible * clean up Services.md, Switching.md, and Systems.md as much as possible * more markup cleanup * lots more md cleanup udner Devloping/ * reapply bits from #10343 that accidentally got removed when merging
80 lines
1.9 KiB
Markdown
80 lines
1.9 KiB
Markdown
source: API/Logs.md
|
|
path: blob/master/doc/
|
|
|
|
All the `list_*logs` calls are aliased to `list_logs`.
|
|
|
|
Retrieve all logs or logs for a specific device.
|
|
|
|
- id or hostname is the specific device
|
|
|
|
nput:
|
|
|
|
- start: The page number to request.
|
|
- limit: The limit of results to be returned.
|
|
- from: The date and time to search from.
|
|
- to: The data and time to search to.
|
|
|
|
### `list_eventlog`
|
|
|
|
Route: `/api/v0/logs/eventlog/:hostname`
|
|
|
|
### `list_syslog`
|
|
|
|
Route: `/api/v0/logs/syslog/:hostname`
|
|
|
|
### `list_alertlog`
|
|
|
|
Route: `/api/v0/logs/alertlog/:hostname`
|
|
|
|
### `list_authlog`
|
|
|
|
Route: `/api/v0/logs/authlog/:hostname`
|
|
|
|
Example:
|
|
|
|
```curl
|
|
curl -H 'X-Auth-Token: YOURAPITOKENHERE' https://librenms.org/api/v0/logs/eventlog/:hostname
|
|
curl -H 'X-Auth-Token: YOURAPITOKENHERE' https://librenms.org/api/v0/logs/syslog/:hostname?limit=20
|
|
curl -H 'X-Auth-Token: YOURAPITOKENHERE' https://librenms.org/api/v0/logs/eventlog/:hostname?limit=20&start=5&from=2017-07-22%2023:00:00
|
|
```
|
|
|
|
Output:
|
|
|
|
```json
|
|
{
|
|
"status": "ok",
|
|
"message": "",
|
|
"count": 5,
|
|
"total": "15",
|
|
"logs": [
|
|
{
|
|
"hostname": "localhost",
|
|
"sysName": "web01.1.novalocal",
|
|
"event_id": "10050349",
|
|
"host": "279",
|
|
"device_id": "279",
|
|
"datetime": "2017-07-22 19:57:47",
|
|
"message": "ifAlias: -> <pptp-something-something-tunnel-something>",
|
|
"type": "interface",
|
|
"reference": "NULL",
|
|
"username": "",
|
|
"severity": "3"
|
|
},
|
|
....
|
|
{
|
|
"hostname": "localhost",
|
|
"sysName": "web01.1.novalocal",
|
|
"event_id": "10050353",
|
|
"host": "279",
|
|
"device_id": "279",
|
|
"datetime": "2017-07-22 19:57:47",
|
|
"message": "ifHighSpeed: -> 0",
|
|
"type": "interface",
|
|
"reference": "NULL",
|
|
"username": "",
|
|
"severity": "3"
|
|
}
|
|
]
|
|
}
|
|
```
|