[BETA] Get Prometheus external integration endpoint settings

GET /dbaas-external-endpoint-prometheus/{id}

[BETA] Get Prometheus external integration endpoint settings

Path parameters

  • id string(uuid) Required

Responses

  • 200 application/json

    200

    Hide response attributes Show response attributes object
    • name string

      External integration endpoint name

    • type string

      External integration endpoint type

      Values are prometheus, opensearch, rsyslog, datadog, or elasticsearch.

    • id string(uuid)

      External integration endpoint id

    • settings object

      External integration Prometheus configuration

      Hide settings attributes Show settings attributes object
      • Prometheus basic authentication username

        Minimum length is 5, maximum length is 32. Format should match the following pattern: ^[a-z0-9\-@_]{5,32}$.

      • Prometheus basic authentication password

        Minimum length is 8, maximum length is 64.

GET /dbaas-external-endpoint-prometheus/{id}
curl \
 -X GET https://api-ch-gva-2.exoscale.com/v2/dbaas-external-endpoint-prometheus/{id}
Response examples (200)
{
  "name": "string",
  "type": "prometheus",
  "id": "string",
  "settings": {
    "basic-auth-username": "string",
    "basic-auth-password": "string"
  }
}