List services
Every service that has reported telemetry, with the first and last timestamp seen for each (microseconds since the Unix epoch). The entry point of an agent loop: pick a service here, then investigate it.
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
}
]
}