コンテンツにスキップ
sigiro
日本語
Esc
移動開く⌘Jプレビュー

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 diagnose it.

GET/v1/services
Responses
200List of services
servicesServiceEntry[]required
Show properties
Array of ServiceEntry
firstSeenstring | null
lastSeenstring | null
namestringrequired
signalsServiceSignalsrequired
Show properties
logsinteger<int64>required
metricsinteger<int64>required
spansinteger<int64>required
totalCountinteger<int64>required
Request
curl -X GET "/v1/services"
Response
{
  "services": [
    {
      "firstSeen": "string",
      "lastSeen": "string",
      "name": "string",
      "signals": {
        "logs": 0,
        "metrics": 0,
        "spans": 0
      },
      "totalCount": 0
    }
  ]
}