# Get metrics for multiple operations

Returns sliding window metrics for all ActivityPub operations or a filtered subset. Only includes operations that have active data within the specified time window. Each operation's metrics include count, average processing time, and percentiles.

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

Endpoint: GET /api/v1/admin/federation/metrics/running-averages-all
Version: 1.0
Security: header

## Query parameters:

  - `operations` (array,null)
    Comma-separated list of specific operations to get metrics for. If omitted, returns all operations.
    Example: "follow,create-note,announce"

  - `window` (string, required)
    Time window for metric calculation
    Enum: "TEN_MINUTES", "ONE_HOUR", "TWENTY_FOUR_HOURS"

## Response 403 fields (application/json):

  - `errorCode` (string, required)
    Error code

  - `message` (string, required)
    Error message

  - `docUrl` (string)
    Link to documentation


