GET /v1/services — discover what services are sending telemetry. Agents call this before /investigate to know what services exist.
GET
/v1/servicesResponses
200List of services
servicesServiceEntry[]requiredShow propertiesHide properties
Array of
ServiceEntryfirstSeenstring | nulllastSeenstring | nullnamestringrequiredspanCountinteger<int64>requiredRequest
curl -X GET "/v1/services"const response = await fetch("/v1/services", {
method: "GET"
});import requests
response = requests.get(
"/v1/services",
)Response
{
"services": [
{
"firstSeen": "string",
"lastSeen": "string",
"name": "string",
"spanCount": 0
}
]
}