Skip to content

Monitor Event

Returns the healthy and critical events for the specified monitor.

ToolDescription
f5xc-api-observability-monitor-event-listGET Monitor Events.
ParameterDescriptionExample
namespaceNamespace-
ParameterDescriptionExample
end_timeEnd_time.-
monitor_nameMonitor_name. X-required-
monitor_typeMonitor_type. X-required-
start_timeStart_time. X-required-

Ask Claude to help you work with Monitor Event resources:

“List all monitor-events in the ‘production’ namespace”

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/monitor_events" \
-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}/monitor_events/<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}/monitor_events" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @monitor_event.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/monitor_events/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"