Client

Send custom metrics

This operation accepts custom metrics from clients. These metrics will be exposed via Prometheus in Unleash.

post/api/client/metrics/custom

Request body

Example request

{
  "metrics": [
    {
      "name": "http_responses_total",
      "value": 1,
      "labels": {
        "status": "200",
        "method": "GET"
      }
    }
  ]
}

Response

This response has no body.

Changes

No recorded changes to this endpoint across all 7 revisions of this API.