- Home
- API MCP Server
- tools
- observability
- observability
- HTTP Monitor Detail
HTTP Monitor Detail
Returns the monitor latency, trend, and health by region.
| Tool | Description |
|---|---|
f5xc-api-observability-http-monitor-detail-list | GET HTTP Monitor Detail. |
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_name | Monitor_name. X-required | - |
start_time | Start_time. X-required | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with HTTP Monitor Detail resources:
List HTTP Monitor Details
Section titled “List HTTP Monitor Details”“List all http-monitor-details in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -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 resourcecurl -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 resourcecurl -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 resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/http_monitor_details/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"