- Home
- API MCP Server
- tools
- observability
- observability
- Global History
Global History
Returns a time series of critical monitor counts in namespace.
| Tool | Description |
|---|---|
f5xc-api-observability-global-history-list | GET Global History. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
namespace | Namespace | - |
Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
end_time | End_time. | - |
monitor_type | Monitor_type. | - |
start_time | Start_time. | - |
step_size | Step_size. | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Global History resources:
List Global Historys
Section titled “List Global Historys”“List all global-historys in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -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 resourcecurl -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 resourcecurl -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 resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/global_historys/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"