Skip to main content
Monitoring & Collection/Zaku
GETZakuSince 1.0SynchronousAuth Required

GetCollectionStats

Retrieve data collection statistics for a platform

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Path Parameters

Request Inputs

Path Parameters

  • platformIdStringRequired

    Platform ID to retrieve collection stats for

Responses

200 OK

On success, this API returns the following response structure.

  • platformIdString

    Platform ID these stats belong to

    Example: plat-001

  • totalPodsInteger

    Total number of pods collected

    Example: 500

  • filteredPodsInteger

    Number of pods excluded by collection filters

    Example: 45

  • p50LatencyMsLong

    50th percentile collection latency in milliseconds

    Example: 12.5

  • p95LatencyMsLong

    95th percentile collection latency in milliseconds

    Example: 45.2

  • p99LatencyMsLong

    99th percentile collection latency in milliseconds

    Example: 98.7

  • lastCollectedAtString

    Timestamp of the last successful collection

    Example: 2026-01-15T08:00:00Z

Endpoint

GET/api/v1/platforms/{platformId}/collection-stats

/api/v1/platforms/{platformId}/collection-stats

Operation ID

GetCollectionStats

Permalink

Request Example

curl -X GET '{host}/api/v1/platforms/{platformId}/collection-stats' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "platformId": "plat-001",
  "totalPods": 500,
  "filteredPods": 45,
  "p50LatencyMs": 12.5,
  "p95LatencyMs": 45.2,
  "p99LatencyMs": 98.7,
  "lastCollectedAt": "example"
}

Change History

This API has no change history records yet.

View all change history