# Get global aggregated metrics

Retrieves global aggregated feed performance metrics for a specific operation within a time window. Includes average times, total measurements, and user counts.

RBAC:
- requires ANY of Jobs.Read, Jobs.Manage

Endpoint: GET /api/v1/admin/feed/metrics/global-single
Version: 1.0
Security: header

## Query parameters:

  - `operation` (string, required)
    Feed operation type (populate, merge, unmerge, redis, redisLex, cache, idsDb, db, add, remove)
    Enum: "populate", "merge", "unmerge", "redis", "redisLex", "cache", "idsDb", "db", "add", "remove"

  - `window` (string, required)
    Time window for aggregation (TEN_MINUTES, ONE_HOUR, TWENTY_FOUR_HOURS or 10m, 1h, 24h)
    Enum: "TEN_MINUTES", "ONE_HOUR", "TWENTY_FOUR_HOURS"

## Response 200 fields (application/json):

  - `globalAverage` (number, required)

  - `totalMeasurements` (integer, required)

  - `totalTime` (integer, required)

  - `userCount` (integer, required)

  - `lastUpdated` (string, required)
    Example: "2022-03-10T16:15:50Z"

  - `operation` (string, required)
    Enum: "populate", "merge", "unmerge", "redis", "redisLex", "cache", "idsDb", "db", "add", "remove"

## Response 403 fields (application/json):

  - `errorCode` (string, required)
    Error code

  - `message` (string, required)
    Error message

  - `docUrl` (string)
    Link to documentation


