Datadog API: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 32: Line 32:
==Dashboard==
==Dashboard==
{{External|https://docs.datadoghq.com/api/latest/dashboards/}}
{{External|https://docs.datadoghq.com/api/latest/dashboards/}}
Getting all dashboards: https://docs.datadoghq.com/api/latest/dashboards/#get-all-dashboards <br>
===Get All Dashboards===
{{External|https://docs.datadoghq.com/api/latest/dashboards/#get-all-dashboards}}
 
{{External|[https://github.com/ovidiuf/playground/tree/master/datadog/pyhton-api/dashboards Playground Example]}}
 
 
Getting all dashboards:  <br>
Get one dashboard: https://docs.datadoghq.com/api/latest/dashboards/#get-a-dashboard
Get one dashboard: https://docs.datadoghq.com/api/latest/dashboards/#get-a-dashboard



Revision as of 22:20, 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}"

Python

requirements.txt

datadog_api_client [== x.y.z]

Dashboard

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

Get All Dashboards

https://docs.datadoghq.com/api/latest/dashboards/#get-all-dashboards
Playground Example


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

Generic

TO PROCESS:

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