[BETA] Get Prometheus external integration endpoint settings

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://openapi-v2.exoscale.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Exoscale APIv2 MCP server": {
  "url": "https://openapi-v2.exoscale.com/mcp"
}
Close
GET /dbaas-external-endpoint-prometheus/{endpoint-id}

[BETA] Get Prometheus external integration endpoint settings

Path parameters

  • endpoint-id string(uuid) Required

Responses

  • 200 application/json

    200

    Hide response attributes Show response attributes object
    • name string

      External integration endpoint name

    • type string

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

    • id string(uuid)

      External integration endpoint id

    • settings object

      External integration Prometheus configuration

      Hide settings attribute Show settings attribute object
      • basic-auth-username string

        Prometheus basic authentication username

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

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