Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
392 B
Markdown
Raw Permalink Normal View History

2023-11-01 23:33:35 -04:00
###`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
}
```