Datadog API: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 30: Line 30:
* https://datadogpy.readthedocs.io/en/latest/
* https://datadogpy.readthedocs.io/en/latest/
* https://docs.datadoghq.com/api/latest/using-the-api/
* https://docs.datadoghq.com/api/latest/using-the-api/
==<tt>requirements.txt</tt>==


==Playground==
==Playground==
{{External|https://github.com/ovidiuf/playground/tree/master/datadog/python-api}}
{{External|https://github.com/ovidiuf/playground/tree/master/datadog/python-api}}

Revision as of 21:45, 8 March 2022

External

Internal

Overview

Datadog resources can be provisioned via an API.

HTTP

Organization

Organization information

curl -s -X GET "https://api.datadoghq.com/api/v1/org" \
-H "Content-Type: application/json" \
-H "DD-API-KEY: ${DATADOG_API_KEY}" \
-H "DD-APPLICATION-KEY: ${DATADOG_APP_KEY}"

Dashboard

https://docs.datadoghq.com/api/latest/dashboards/

Getting all dashboards: https://docs.datadoghq.com/api/latest/dashboards/#get-all-dashboards
Get one dashboard: https://docs.datadoghq.com/api/latest/dashboards/#get-a-dashboard

Python

requirements.txt

Playground

https://github.com/ovidiuf/playground/tree/master/datadog/python-api