[BETA] Create Prometheus external integration endpoint

POST /dbaas-external-endpoint-prometheus/{name}

[BETA] Create Prometheus external integration endpoint

application/json

Body Required

  • 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.

Responses

  • 200 application/json

    200

    Hide response attributes Show response attributes object

    Operation

    • id string(uuid)

      Operation ID

    • reason string

      Operation failure reason

      Values are incorrect, unknown, unavailable, forbidden, busy, fault, partial, not-found, interrupted, unsupported, or conflict.

    • Related resource reference

      Hide reference attributes Show reference attributes object
      • id string(uuid)

        Reference ID

      • command string

        Command name

    • message string

      Operation message

    • state string

      Operation status

      Values are failure, pending, success, or timeout.

POST /dbaas-external-endpoint-prometheus/{name}
curl \
 -X POST https://api-ch-gva-2.exoscale.com/v2/dbaas-external-endpoint-prometheus/{name} \
 -H "Content-Type: application/json" \
 -d '{"settings":{"basic-auth-username":"string","basic-auth-password":"string"}}'
Request examples
{
  "settings": {
    "basic-auth-username": "string",
    "basic-auth-password": "string"
  }
}
Response examples (200)
{
  "id": "string",
  "reason": "incorrect",
  "reference": {
    "id": "string",
    "link": "string",
    "command": "string"
  },
  "message": "string",
  "state": "failure"
}