aws-cdk-lib.aws_ecs.JournaldLogDriverProps

interface JournaldLogDriverProps

LanguageType name
.NETAmazon.CDK.AWS.ECS.JournaldLogDriverProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsecs#JournaldLogDriverProps
Javasoftware.amazon.awscdk.services.ecs.JournaldLogDriverProps
Pythonaws_cdk.aws_ecs.JournaldLogDriverProps
TypeScript (source)aws-cdk-lib » aws_ecs » JournaldLogDriverProps

Specifies the journald log driver configuration options.

Source

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ecs as ecs } from 'aws-cdk-lib';
const journaldLogDriverProps: ecs.JournaldLogDriverProps = {
  env: ['env'],
  envRegex: 'envRegex',
  labels: ['labels'],
  tag: 'tag',
};

Properties

NameTypeDescription
env?string[]The env option takes an array of keys.
envRegex?stringThe env-regex option is similar to and compatible with env.
labels?string[]The labels option takes an array of keys.
tag?stringBy default, Docker uses the first 12 characters of the container ID to tag log messages.

env?

Type: string[] (optional, default: No env)

The env option takes an array of keys.

If there is collision between label and env keys, the value of the env takes precedence. Adds additional fields to the extra attributes of a logging message.


envRegex?

Type: string (optional, default: No envRegex)

The env-regex option is similar to and compatible with env.

Its value is a regular expression to match logging-related environment variables. It is used for advanced log tag options.


labels?

Type: string[] (optional, default: No labels)

The labels option takes an array of keys.

If there is collision between label and env keys, the value of the env takes precedence. Adds additional fields to the extra attributes of a logging message.


tag?

Type: string (optional, default: The first 12 characters of the container ID)

By default, Docker uses the first 12 characters of the container ID to tag log messages.

Refer to the log tag option documentation for customizing the log tag format.