Skip to content

Monitor History

Returns the healthy and critical statuses for the specified monitor.

ToolDescription
f5xc-api-observability-monitor-history-listGET Monitor History.
ParameterDescriptionExample
namespaceNamespace-
ParameterDescriptionExample
end_timeEnd_time.-
monitor_nameMonitor_name. X-required-
monitor_typeMonitor_type. X-required-
start_timeStart_time. X-required-
step_sizeStep_size.-

Ask Claude to help you work with Monitor History resources:

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

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