Log monitoring metrics API - GET all metrics

Lists all log metric configurations.

The request produces an application/json payload.

This request is currently in preview and is subject to change. Changes may not be compatible with your current configuration.

GET
  • Managed https://{your-domain}/e/{your-environment-id}/api/config/v1/customMetric/log
  • SaaS https://{your-environment-id}.live.dexp.ae/api/config/v1/customMetric/log

Parameters

The request doesn't provide any configurable parameters.

Response format

The StubList object

An ordered list of short representations of DESK entities.

Element Type Description
values EntityShortRepresentation[]

An ordered list of short representations of DESK entities.

The EntityShortRepresentation object

The short representation of a DESK entity.

Element Type Description
id string

The ID of the DESK entity.

name string

The name of the DESK entity.

description string

A short description of the DESK entity.

Example

In this example, the request lists all custom log metrics in the mySampleEnv environment.

The API token is passed in the Authorization header.

The result is truncated to three entries.

Curl

curl -X GET \
  https://mySampleEnv.live.DESK.com/api/config/v1/customMetric/log \
  -H 'Authorization: Api-token abcdefjhij1234567890'

Request URL

https://mySampleEnv.live.dexp.ae/api/config/v1/customMetric/log

Response body

{
  "values": [
    {
      "id": "calc:log.mainappwarnings",
      "name": "Main app warnings"
    },
    {
      "id": "calc:log.samplemetric",
      "name": "Sample metric"
    },
    {
      "id": "calc:log.hosterrors",
      "name": "Host errors"
    }
  ]
}

Response code

200