Skip to content

Discovered Service

List the discovered services of specific type like virtual-servers, K8s, consul, NGINX server, etc.

ToolDescription
f5xc-api-telemetryandinsights-discovered-service-getGET Discovered Service Object.
f5xc-api-telemetryandinsights-discovered-service-listList discovered services of specific type.
ParameterDescriptionExample
nameName-
namespaceNamespace-
ParameterDescriptionExample
response_formatThe format in which the configuration object is to be fetched. This could be for example-
discovery_nameFilter results to only include items referencing this discovery object name.-
service_typeIdentifies the discovered service type. Omit for all types.-

Ask Claude to help you work with Discovered Service resources:

“List all discovered-services in the ‘production’ namespace”

“Get details of the discovered-service named ‘example’ in namespace ‘production‘“

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