get_alert_groups
Retrieve a list of alert groups based on their status, including silenced, inhibited, or active, for efficient monitoring and management in alertmanager-mcp-server.
Instructions
Get a list of alert groups
Input Schema
Name | Required | Description | Default |
---|---|---|---|
active | No | ||
inhibited | No | ||
silenced | No |
Input Schema (JSON Schema)
{
"properties": {
"active": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Active"
},
"inhibited": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Inhibited"
},
"silenced": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Silenced"
}
},
"title": "get_alert_groupsArguments",
"type": "object"
}