Skip to content

DataDog/build-plugins

Repository files navigation

Datadog Build Plugins

A set of plugins to interact with Datadog directly from your builds.

Note

If you want to upgrade from v1 to v2, please follow our migration guide.


✨ Key takeaways ✨

  • This is a cross bundler plugin (webpack and esbuild for now).
  • Very easy to setup and disable on the fly.

Table of content

Plugins

telemetry Telemetry Plugin

Display and send telemetry data as metrics to Datadog.

📝 Full documentation ➡️

Configuration

{
    auth: {
        apiKey: '<mydatadogkey>',
        endPoint: 'app.datadoghq.com',
    },
    logLevel: 'warn',
    [plugin-name]: {
        disabled: false,
        [...plugin-specific-configuration],
    }
}

auth.apiKey

default null

In order to interact with Datadog, you have to use your own API Key.

auth.endPoint

default: "app.datadoghq.com"

To which endpoint will the metrics be sent.

logLevel

default: 'warn'

Which level of log do you want to show.


Contributing

Check out the CONTRIBUTING.md file for more information.


License

MIT


Back to top ⬆️