Monitoring AIops
Disclaimer: Community-maintained open-source project. Not affiliated with, endorsed by, or sponsored by SolarWinds, Paessler, Zabbix, or any monitoring vendor. SolarWinds, Orion, SWQL, THWACK, PRTG, Paessler and Zabbix are trademarks of their respective owners. MIT licensed.
Governed AI-ops for network / infrastructure monitoring across three NOC
platforms in one server — SolarWinds Orion (SWIS REST + SWQL, port 17778,
HTTP Basic auth), Paessler PRTG (web API, port 443/8080, API token), and
Zabbix 6.x/7.x (JSON-RPC 2.0 at /api_jsonrpc.php, API token) — with
a built-in governance harness: unified audit log, policy engine,
token/runaway budget guard, undo-token recording, and graduated-autonomy risk
tiers. One config can span all NOCs; each target names its own platform.
What it does
Answers the questions a NOC operator actually repeats, and guards the writes that follow:
- Canned-SWQL library — the most-asked THWACK questions shipped as named,
validated queries (
nodes_down,flapping_interfaces,muted_report,high_cpu_nodes,volumes_full,unmanaged_scheduled), plus a validated read-only SWQL passthrough (SELECT-only) for everything else. - Active-alert dedup / rollup — collapses an interface-flap or node-down storm into a single counted entry instead of a wall of near-identical alerts, across SolarWinds, PRTG, and Zabbix (problems, with the 0-5 severity scale mapped to canonical levels).
- Triple SolarWinds + PRTG + Zabbix coverage — one MCP server spans all three NOCs; no incumbent hobby MCP does.
- Governed writes — mute/unmute, maintenance windows (incl. Zabbix
maintenance.createwith a replayable delete-undo), unmanage/remanage, node removal, and PRTG sensor pause/resume — each audited, risk-tiered, and the destructive ones gated with dry-run + double-confirm. Suppression and maintenance writes are time-boxed (they require an end time / duration).
Security: read-only mode
This tool is meant to be handed to an AI agent, so its safety story is enforced by the server rather than requested in a prompt:
export MONITORING_READ_ONLY=1
With that set, the 13 write tools are never registered. An MCP client lists 29 tools instead of 42 — the writes are not hidden, not gated behind a flag, and not merely refused when called. They are absent from the session. A model cannot invoke a tool it was never offered, and cannot be argued into one.
That distinction is the whole point. A tool that exists but refuses still invites retry loops and "I'll describe the call instead" behaviour from smaller models, and it leaves a reviewer trusting a promise. An absent tool is a fact you can check: connect, list the tools, and see that the writes are not there.
Enforcement is two layers deep, so the switch cannot be sidestepped by changing entry point:
| Layer | What it does | Covers |
|---|---|---|
@governed_tool harness |
refuses every non-read operation outright | MCP, CLI, and in-process callers |
| MCP registration | write tools are removed from list_tools() |
anything speaking MCP |
Read operations are unaffected, and every call is still audited to
~/.monitoring-aiops/audit.db.
The read/write split is derived from each tool's declared
risk_level, and a test asserts that this never disagrees with the[READ]/[WRITE]tag in the tool's own documentation — so a write can't quietly present itself as a read.
Running a smaller / local model? See agent-guardrails.md — it lists the guardrails this tool now enforces for you (so you don't spend prompt budget restating them) and gives a ready-made system prompt for what's left.
Capability matrix (42 MCP tools)
| Group | Platform | Tools | Count | R/W |
|---|---|---|---|---|
| SWQL | SolarWinds | swql_library, swql_canned, swql_query |
3 | read |
| Alerts | all | active_alerts (dedup/rollup) |
1 | read |
| all | alert_acknowledge |
1 | write (low) | |
| SolarWinds health | SolarWinds | node_status, nodes_list, interface_status, volume_status, application_status, topn, noc_rollup |
7 | read |
| SolarWinds writes | SolarWinds | list_events, list_unmanaged, list_muted |
3 | read |
| SolarWinds | mute_alerts, unmute_alerts, schedule_maintenance, remanage_node |
4 | write (med) | |
| SolarWinds | unmanage_node, remove_node |
2 | write (high) | |
| PRTG reads | PRTG | prtg_sensors, prtg_sensor_details, prtg_devices, prtg_groups, prtg_history, prtg_system_status, prtg_alarms |
7 | read |
| PRTG writes | PRTG | pause_sensor, resume_sensor, schedule_maintenance_prtg |
3 | write (med) |
| Zabbix reads | Zabbix | zabbix_problems, zabbix_hosts, zabbix_hostgroups, zabbix_triggers, zabbix_events, zabbix_item_history, zabbix_maintenances |
7 | read |
| Zabbix writes | Zabbix | zabbix_create_maintenance |
1 | write (med) |
| Zabbix | zabbix_delete_maintenance |
1 | write (high) | |
| Undo | all | undo_list, undo_apply |
2 | undo |
The CLI exposes a convenience subset; the full 42-tool surface is via the MCP server.
Quick start
uv tool install monitoring-aiops # or: pipx install monitoring-aiops
monitoring-aiops init # wizard: pick platform (solarwinds/prtg/zabbix) + store the secret (encrypted)
monitoring-aiops doctor # verify config, secrets, connectivity
monitoring-aiops overview # NOC summary: platform + active/unacked alerts + top rollup
monitoring-aiops swql library # list the canned SWQL queries
monitoring-aiops swql canned nodes_down # run a named canned query
Run as an MCP server (stdio):
export MONITORING_AIOPS_MASTER_PASSWORD=... # unlock secrets non-interactively
monitoring-aiops mcp
Governance
Every MCP tool passes through the bundled @governed_tool harness:
- Audit — every call (params, result, status, duration, risk tier,
approver, rationale) is logged to
~/.monitoring-aiops/audit.db(relocatable viaMONITORING_AIOPS_HOME). - Budget / runaway guard — token and call budgets trip a circuit breaker on tight poll/retry loops.
- Risk tiers — graduated autonomy; high-risk ops (
unmanage_node,remove_node,zabbix_delete_maintenance) can require a named approver (MONITORING_AUDIT_APPROVED_BY/MONITORING_AUDIT_RATIONALE). - Undo recording — reversible writes record an inverse descriptor
(
mute_alerts→unmute,unmanage_node→remanage,pause_sensor→resume,zabbix_create_maintenance→delete that maintenance id).
Supported scope & limitations
- Platforms: SolarWinds Orion (SWIS REST + SWQL), Paessler PRTG (web API),
and Zabbix 6.x/7.x (JSON-RPC 2.0; API token via Bearer header on 6.4+/7.x,
with a legacy
auth-field fallback for 6.0). - Zabbix scope: problems/triggers/hosts/host groups/events, bounded item
history, maintenance windows (create/delete), and event acknowledge via the
cross-platform
alert_acknowledge. Template/discovery/user CRUD andtrend.getare not covered — open an issue if you need them. - Validation status. Behaviour is exercised by the test suite against mocked
SWIS/PRTG/Zabbix responses; it has not been run against a live NOC (see
docs/VERIFICATION.md). PRTG has a free perpetual 100-sensor Freeware edition with the API, and Zabbix is fully open source (a Docker-compose appliance is a 10-minute live check) — the easiest live checks. SolarWinds is a 30-day trial only; past the trial this tool is mock-only, which is the largest verification debt.monitoring-aiops doctoris the fastest live check (a SWQL query for SolarWinds,/api/status.jsonfor PRTG, unauthenticatedapiinfo.version+ an authed host count for Zabbix).
Missing a capability?
Want another canned query, a platform dialect fixed, or a capability that isn't here? Open an issue or a PR — feedback and contributions are welcome.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file monitoring_aiops-0.4.2.tar.gz.
File metadata
- Download URL: monitoring_aiops-0.4.2.tar.gz
- Upload date:
- Size: 196.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
471e8f4a060db0526b6c725881e91b6d2b3f72ba54784a6c68e4417fde068458
|
|
| MD5 |
5aa34338b1003f1c831619ae324bdbb6
|
|
| BLAKE2b-256 |
6c216be376f3748a17497ca0ad1a872427d70fbf9453dcf56951420a58e9b70e
|
Provenance
The following attestation bundles were made for monitoring_aiops-0.4.2.tar.gz:
Publisher:
publish.yml on AIops-tools/Monitoring-AIops
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
monitoring_aiops-0.4.2.tar.gz -
Subject digest:
471e8f4a060db0526b6c725881e91b6d2b3f72ba54784a6c68e4417fde068458 - Sigstore transparency entry: 2204778861
- Sigstore integration time:
-
Permalink:
AIops-tools/Monitoring-AIops@f4a51838929644f994d071f2a8fb00dcc45c1b2e -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/AIops-tools
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f4a51838929644f994d071f2a8fb00dcc45c1b2e -
Trigger Event:
release
-
Statement type:
File details
Details for the file monitoring_aiops-0.4.2-py3-none-any.whl.
File metadata
- Download URL: monitoring_aiops-0.4.2-py3-none-any.whl
- Upload date:
- Size: 96.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ba989bbaa7ea3cfeae29a0e249e234f6fa275151411829d45118d42fc064eb9
|
|
| MD5 |
19cfaed951887f9949152dd304cc35e2
|
|
| BLAKE2b-256 |
848fc16c53770cc3f9bbd3f1cd24a3e1bad9acb48217d6da611b722ce8c5fcc2
|
Provenance
The following attestation bundles were made for monitoring_aiops-0.4.2-py3-none-any.whl:
Publisher:
publish.yml on AIops-tools/Monitoring-AIops
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
monitoring_aiops-0.4.2-py3-none-any.whl -
Subject digest:
0ba989bbaa7ea3cfeae29a0e249e234f6fa275151411829d45118d42fc064eb9 - Sigstore transparency entry: 2204778872
- Sigstore integration time:
-
Permalink:
AIops-tools/Monitoring-AIops@f4a51838929644f994d071f2a8fb00dcc45c1b2e -
Branch / Tag:
refs/tags/v0.4.2 - Owner: https://github.com/AIops-tools
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@f4a51838929644f994d071f2a8fb00dcc45c1b2e -
Trigger Event:
release
-
Statement type: