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

GetNormalizeStats

Retrieve normalization processing statistics and error counts

Execution Availability

Try It Out

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

Request Inputs

This API requires no request parameters.

Responses

200 OK

On success, this API returns the following response structure.

  • totalProcessedString

    Total number of pods processed since service start

    Example: 100000

  • truncatedString

    Number of pods that had fields truncated

    Example: 150

  • skippedString

    Number of pods skipped due to filter rules

    Example: 200

  • errorsString

    Number of pods that encountered normalization errors

    Example: 12

  • lastProcessedAtString

    Timestamp of the last successfully processed pod

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

Endpoint

GET/api/v1/zaku/normalize/stats

/api/v1/zaku/normalize/stats

Operation ID

GetNormalizeStats

Permalink

Request Example

curl -X GET '{host}/api/v1/zaku/normalize/stats' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "totalProcessed": 100000,
  "truncated": 150,
  "skipped": 200,
  "errors": 12,
  "lastProcessedAt": "example"
}

Change History

This API has no change history records yet.

View all change history