Pulsar Docs
API ReferenceAlerts Config

List Machine Metrics

GET
/v1/alerts-config/metrics

This endpoint requires authentication — use the Login page at the top of the API Reference, or paste a token in the Authorization section below.

The metrics each machine exposes, for picking an alert's upstream_metric_id.

Omit machineIds to get every machine in the caller's company. Every requested machine gets a key, empty when it has no metrics configured.

Authorization

bearerAuth user, superuser, admin, superadmin, readonly
Authorization<token>

In: header

Scope: user, superuser, admin, superadmin, readonly

Query Parameters

machineIds?array<>

An array of machine IDs to filter by.

Response Body

application/json

curl -X GET "https://example.com/v1/alerts-config/metrics"
{  "property1": [    {      "description": "string",      "displayName": "string",      "metricPrimitive": "string",      "metricTypeName": "string",      "metricId": 0.1    }  ],  "property2": [    {      "description": "string",      "displayName": "string",      "metricPrimitive": "string",      "metricTypeName": "string",      "metricId": 0.1    }  ]}