Skip to content

Global History

Returns a time series of critical monitor counts in namespace.

ToolDescription
f5xc-api-observability-global-history-listGET Global History.
ParameterDescriptionExample
namespaceNamespace-
ParameterDescriptionExample
end_timeEnd_time.-
monitor_typeMonitor_type.-
start_timeStart_time.-
step_sizeStep_size.-

Ask Claude to help you work with Global History resources:

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

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