Interface AddDatadogToFargateTaskProps

interface AddDatadogToFargateTaskProps {
    agent?: DatadogFargateAgentProps;
    datadogApiKeySecret: Secret;
    datadogSite?: string;
    fireLensLogging?: DatadogFargateFirelensLoggingProps;
}

Properties

datadogApiKeySecret: Secret

The secret containing the Datadog API key

Remarks

It is important that the value specified by this secret doesn't have a newline at the end. Otherwise, the firelens logging configuration will fail to send logs to Datadog. This is an easy mistake to introduce when the source for the secret is a secretsmanager Secret containing a single value, rather than key-value pairs.

datadogSite?: string

The Datadog site to send data to

Remarks

Defaults to datadoghq.com See information about other datadog site parameters at https://docs.datadoghq.com/getting_started/site/#access-the-datadog-site

Default

datadoghq.com

Generated using TypeDoc