Skip to content

Overview

GET SAFE Analyst Station Dashboard Transaction Breakdown request.

ToolDescription
f5xc-api-shape-overview-createTop Latency Overview.
f5xc-api-shape-overview-listGET SAFE Overview.
ParameterDescriptionExample
namespaceNamespace-
ParameterDescriptionExample
fromTimestamp representing start date of the requested period in millieseconds.-
toTimestamp representing end date of the requested period in millieseconds.-
versionThe API version to use.-

Ask Claude to help you work with Overview resources:

“Create a overview named ‘example’ in the ‘production’ namespace”

“List all overviews in the ‘production’ namespace”

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