Skip to content

Alert

RPC to GET a list of Alerts. Alerts are raised when an attack is detected by L3/L4 provider. Alerts help to start investigate and mitigate any malicious or suspicious activate.

ToolDescription
f5xc-api-ddos-alert-createDDoS Alerts.
f5xc-api-ddos-alert-listDDoS Alert.
ParameterDescriptionExample
namespaceNamespace-
alert_idAlert ID-

Ask Claude to help you work with Alert resources:

“Create a alert named ‘example’ in the ‘production’ namespace”

“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}"