mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
24 lines
392 B
Markdown
24 lines
392 B
Markdown
|
###`get_poller_group`
|
||
|
|
||
|
Gets a specific poller group or all if none is specified
|
||
|
|
||
|
Route: `/api/v0/poller_group/:poller_group`
|
||
|
|
||
|
- poller_group: optional name or id of the poller group to get
|
||
|
|
||
|
Output:
|
||
|
|
||
|
```json
|
||
|
{
|
||
|
"status": "ok",
|
||
|
"get_poller_group": [
|
||
|
{
|
||
|
"id": 1,
|
||
|
"group_name": "test",
|
||
|
"descr": "test group"
|
||
|
}
|
||
|
],
|
||
|
"count": 1
|
||
|
}
|
||
|
```
|