이 페이지는 아직 한국어로 제공되지 않습니다. 번역 작업 중입니다.
현재 번역 프로젝트에 대한 질문이나 피드백이 있으신 경우 언제든지 연락주시기 바랍니다.

Integrations

The Integrations API is used to list available integrations and retrieve information about their installation status.

GET https://api.ap1.datadoghq.com/api/v2/integrationshttps://api.ap2.datadoghq.com/api/v2/integrationshttps://api.datadoghq.eu/api/v2/integrationshttps://api.ddog-gov.com/api/v2/integrationshttps://api.datadoghq.com/api/v2/integrationshttps://api.us3.datadoghq.com/api/v2/integrationshttps://api.us5.datadoghq.com/api/v2/integrations

개요

응답

Successful Response.

Response containing information about multiple integrations.

Expand All

항목

유형

설명

data [required]

[object]

Array of integration objects.

attributes [required]

object

Attributes for an integration.

categories [required]

[string]

List of categories associated with the integration.

description [required]

string

A description of the integration.

installed [required]

boolean

Whether the integration is installed.

title [required]

string

The name of the integration.

id [required]

string

The unique identifier of the integration.

links

object

Links for the integration resource.

self

string

Link to the integration resource.

type [required]

enum

Integration resource type. Allowed enum values: integration

default: integration

{
  "data": [
    {
      "attributes": {
        "categories": [
          "Category::Kubernetes",
          "Category::Log Collection"
        ],
        "description": "Calico is a networking and network security solution for containers.",
        "installed": true,
        "title": "calico"
      },
      "id": "calico",
      "links": {
        "self": "/integrations?integrationId=calico"
      },
      "type": "integration"
    }
  ]
}

Too many requests

API error response.

Expand All

항목

유형

설명

errors [required]

[string]

A list of errors.

{
  "errors": [
    "Bad Request"
  ]
}

코드 사례

                  # Curl command
curl -X GET "https://api.ap1.datadoghq.com"https://api.ap2.datadoghq.com"https://api.datadoghq.eu"https://api.ddog-gov.com"https://api.datadoghq.com"https://api.us3.datadoghq.com"https://api.us5.datadoghq.com/api/v2/integrations" \ -H "Accept: application/json" \ -H "DD-API-KEY: ${DD_API_KEY}" \ -H "DD-APPLICATION-KEY: ${DD_APP_KEY}"