- Home
- API MCP Server
- tools
- ddos
- infrastructure-protection
- Events Summary
Events Summary
Return a list of available event (suitable for an alert)
| Tool | Description |
|---|---|
f5xc-api-ddos-events-summary-list | Simple events view. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
namespace | Namespace | - |
Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
alert_id | Optional - allows to filter events by alert so only relevant events are returned. If not provided, all user events are returned. | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Events Summary resources:
List Events Summarys
Section titled “List Events Summarys”“List all events-summarys in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/events_summarys" \ -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}/events_summarys/<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}/events_summarys" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @events_summary.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/events_summarys/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"