AwsLogDriverProps¶
-
class
aws_cdk.aws_ecs.
AwsLogDriverProps
(*, stream_prefix, datetime_format=None, log_group=None, log_retention=None, multiline_pattern=None)¶ Bases:
object
Specifies the awslogs log driver configuration options.
- Parameters
stream_prefix (
str
) – Prefix for the log streams. The awslogs-stream-prefix option allows you to associate a log stream with the specified prefix, the container name, and the ID of the Amazon ECS task to which the container belongs. If you specify a prefix with this option, then the log stream takes the following format:: prefix-name/container-name/ecs-task-iddatetime_format (
Optional
[str
]) – This option defines a multiline start pattern in Python strftime format. A log message consists of a line that matches the pattern and any following lines that don’t match the pattern. Thus the matched line is the delimiter between log messages. Default: - No multiline matching.log_group (
Optional
[ILogGroup
]) – The log group to log to. Default: - A log group is automatically created.log_retention (
Optional
[RetentionDays
]) – The number of days log events are kept in CloudWatch Logs when the log group is automatically created by this construct. Default: - Logs never expire.multiline_pattern (
Optional
[str
]) – This option defines a multiline start pattern using a regular expression. A log message consists of a line that matches the pattern and any following lines that don’t match the pattern. Thus the matched line is the delimiter between log messages. This option is ignored if datetimeFormat is also configured. Default: - No multiline matching.
Attributes
-
datetime_format
¶ This option defines a multiline start pattern in Python strftime format.
A log message consists of a line that matches the pattern and any following lines that don’t match the pattern. Thus the matched line is the delimiter between log messages.
- Default
No multiline matching.
- Return type
Optional
[str
]
-
log_group
¶ The log group to log to.
- Default
A log group is automatically created.
- Return type
Optional
[ILogGroup
]
-
log_retention
¶ The number of days log events are kept in CloudWatch Logs when the log group is automatically created by this construct.
- Default
Logs never expire.
- Return type
Optional
[RetentionDays
]
-
multiline_pattern
¶ This option defines a multiline start pattern using a regular expression.
A log message consists of a line that matches the pattern and any following lines that don’t match the pattern. Thus the matched line is the delimiter between log messages.
This option is ignored if datetimeFormat is also configured.
- Default
No multiline matching.
- Return type
Optional
[str
]
-
stream_prefix
¶ Prefix for the log streams.
The awslogs-stream-prefix option allows you to associate a log stream with the specified prefix, the container name, and the ID of the Amazon ECS task to which the container belongs. If you specify a prefix with this option, then the log stream takes the following format:
prefix-name/container-name/ecs-task-id
- Return type
str