- Home
- API MCP Server
- tools
- observability
- observability
- Global Summary
Global Summary
Returns a healthy and critical count of all monitors in namespace, based on monitor type.
| Tool | Description |
|---|---|
f5xc-api-observability-global-summary-list | GET Global Summary. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
namespace | Namespace | - |
Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
monitor_type | Monitor_type. | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Global Summary resources:
List Global Summarys
Section titled “List Global Summarys”“List all global-summarys 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_summarys" \ -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_summarys/<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_summarys" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @global_summary.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/global_summarys/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"