Skip to content

DNS Monitors Health

Returns list of DNS monitors in namespace with corresponding region health(s)

ToolDescription
f5xc-api-observability-dns-monitors-health-createGET DNS Monitor Health.
ParameterDescriptionExample
namespaceNamespace-

Ask Claude to help you work with DNS Monitors Health resources:

“Create a dns-monitors-health named ‘example’ in the ‘production’ namespace”

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