Skip to content

Instantly share code, notes, and snippets.

@magnetikonline
Last active January 29, 2024 23:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save magnetikonline/ade8597b8adfdd0a453c589fda78af13 to your computer and use it in GitHub Desktop.
Save magnetikonline/ade8597b8adfdd0a453c589fda78af13 to your computer and use it in GitHub Desktop.
Datadog list all installed integrations.

Datadog list all installed integrations

From what I can see, there is no simple way to extract a list of installed Datadog integrations for documentation/etc. purposes.

Here is a lo-fi method of pulling it from the web UI DOM:

  • Visit the Integrations page for your Datadog account.
  • Open browser web developer tools.
  • Execute the following from the JavaScript console:
     (() => { const homeEl = $$('div + h2 + div > div')[0]; let output = ''; for (const item of $$('div > div > a span span span',homeEl)) { output += item.innerText + '\n'; }; console.log(output); })();
  • Results are listed in the console.
  • Fin.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment