delete-silence
Remove a specific silence from Prometheus Alertmanager by providing its unique silence ID to restore alert notifications for that condition.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| silenceId | Yes | ID of the silence to delete |
Input Schema (JSON Schema)
{
"properties": {
"silenceId": {
"description": "ID of the silence to delete",
"type": "string"
}
},
"required": [
"silenceId"
],
"type": "object"
}