Skip to content

Alert

GET alerts matching the filter for the given namespace.

ToolDescription
f5xc-api-observability-alert-listGET Alerts.
ParameterDescriptionExample
namespaceNamespace-
ParameterDescriptionExample
filterHighDiskUsage”, severity=“critical”}“-
inactiveIf set to true, active alerts will not be returned in the response.-
inhibitedShow inhibited alerts - alerts that are suppressed if certain other alerts are firing.-
silencedShow silenced alerts - alerts that are muted based on the matchers configured in the alert manager.-
unprocessedShow unprocessed alerts.-

Ask Claude to help you work with Alert resources:

“List all alerts in the ‘production’ namespace”

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/alerts" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Get specific resource
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/alerts/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json"
# Create resource
curl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/alerts" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @alert.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/alerts/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"