- Home
- API MCP Server
- tools
- observability
- alerts-&-events
- All Ns Alert
All Ns Alert
For system namespace, all the alerts for the tenant matching the filter specified in the request will be returned in the response.
| Tool | Description |
|---|---|
f5xc-api-observability-all-ns-alert-list | GET Alerts. |
Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
filter | HighDiskUsage”, severity=“critical”}“ | - |
inactive | If set to true, active alerts will not be returned in the response. | - |
inhibited | Show inhibited alerts - alerts that are suppressed if certain other alerts are firing. | - |
namespace | Namespace to scope the listing of alerts. | - |
silenced | Show silenced alerts - alerts that are muted based on the matchers configured in the alert manager. | - |
unprocessed | Show unprocessed alerts. | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with All Ns Alert resources:
List All Ns Alerts
Section titled “List All Ns Alerts”“List all all-ns-alerts in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/all_ns_alerts" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json"
# Get specific resourcecurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/all_ns_alerts/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json"
# Create resourcecurl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/all_ns_alerts" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @all_ns_alert.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/all_ns_alerts/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"