Skip to content

HTTP Monitor Detail

Returns the monitor latency, trend, and health by region.

ToolDescription
f5xc-api-observability-http-monitor-detail-listGET HTTP Monitor Detail.
ParameterDescriptionExample
namespaceNamespace-
ParameterDescriptionExample
end_timeEnd_time.-
monitor_nameMonitor_name. X-required-
start_timeStart_time. X-required-

Ask Claude to help you work with HTTP Monitor Detail resources:

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

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