LogGroup
- class aws_cdk.aws_logs.LogGroup(scope, id, *, encryption_key=None, log_group_name=None, removal_policy=None, retention=None)
Bases:
Resource
Define a CloudWatch Log Group.
- ExampleMetadata:
infused
Example:
import aws_cdk.aws_logs as logs log_group = logs.LogGroup(self, "Log Group") log_bucket = s3.Bucket(self, "S3 Bucket") tasks.EmrContainersStartJobRun(self, "EMR Containers Start Job Run", virtual_cluster=tasks.VirtualClusterInput.from_virtual_cluster_id("de92jdei2910fwedz"), release_label=tasks.ReleaseLabel.EMR_6_2_0, job_driver=tasks.JobDriver( spark_submit_job_driver=tasks.SparkSubmitJobDriver( entry_point=sfn.TaskInput.from_text("local:///usr/lib/spark/examples/src/main/python/pi.py"), spark_submit_parameters="--conf spark.executor.instances=2 --conf spark.executor.memory=2G --conf spark.executor.cores=2 --conf spark.driver.cores=1" ) ), monitoring=tasks.Monitoring( log_group=log_group, log_bucket=log_bucket ) )
- Parameters:
scope (
Construct
) –id (
str
) –encryption_key (
Optional
[IKey
]) – The KMS Key to encrypt the log group with. Default: - log group is encrypted with the default master keylog_group_name (
Optional
[str
]) – Name of the log group. Default: Automatically generatedremoval_policy (
Optional
[RemovalPolicy
]) – Determine the removal policy of this log group. Normally you want to retain the log group so you can diagnose issues from logs even after a deployment that no longer includes the log group. In that case, use the normal date-based retention policy to age out your logs. Default: RemovalPolicy.Retainretention (
Optional
[RetentionDays
]) – How long, in days, the log contents will be retained. To retain all logs, set this value to RetentionDays.INFINITE. Default: RetentionDays.TWO_YEARS
Methods
- add_metric_filter(id, *, filter_pattern, metric_name, metric_namespace, default_value=None, metric_value=None)
Create a new Metric Filter on this Log Group.
- Parameters:
id (
str
) – Unique identifier for the construct in its parent.filter_pattern (
IFilterPattern
) – Pattern to search for log events.metric_name (
str
) – The name of the metric to emit.metric_namespace (
str
) – The namespace of the metric to emit.default_value (
Union
[int
,float
,None
]) – The value to emit if the pattern does not match a particular event. Default: No metric emitted.metric_value (
Optional
[str
]) – The value to emit for the metric. Can either be a literal number (typically “1”), or the name of a field in the structure to take the value from the matched event. If you are using a field value, the field value must have been matched using the pattern. If you want to specify a field from a matched JSON structure, use ‘$.fieldName’, and make sure the field is in the pattern (if only as ‘$.fieldName = *’). If you want to specify a field from a matched space-delimited structure, use ‘$fieldName’. Default: “1”
- Return type:
- add_stream(id, *, log_stream_name=None)
Create a new Log Stream for this Log Group.
- Parameters:
id (
str
) – Unique identifier for the construct in its parent.log_stream_name (
Optional
[str
]) – The name of the log stream to create. The name must be unique within the log group. Default: Automatically generated
- Return type:
- add_subscription_filter(id, *, destination, filter_pattern)
Create a new Subscription Filter on this Log Group.
- Parameters:
id (
str
) – Unique identifier for the construct in its parent.destination (
ILogSubscriptionDestination
) – The destination to send the filtered events to. For example, a Kinesis stream or a Lambda function.filter_pattern (
IFilterPattern
) – Log events matching this pattern will be sent to the destination.
- Return type:
- add_to_resource_policy(statement)
Adds a statement to the resource policy associated with this log group.
A resource policy will be automatically created upon the first call to
addToResourcePolicy
.Any ARN Principals inside of the statement will be converted into AWS Account ID strings because CloudWatch Logs Resource Policies do not accept ARN principals.
- Parameters:
statement (
PolicyStatement
) – The policy statement to add.- Return type:
- apply_removal_policy(policy)
Apply the given removal policy to this resource.
The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you’ve removed it from the CDK application or because you’ve made a change that requires the resource to be replaced.
The resource can be deleted (
RemovalPolicy.DESTROY
), or left in your AWS account for data recovery and cleanup later (RemovalPolicy.RETAIN
).- Parameters:
policy (
RemovalPolicy
) –- Return type:
None
- extract_metric(json_field, metric_namespace, metric_name)
Extract a metric from structured log events in the LogGroup.
Creates a MetricFilter on this LogGroup that will extract the value of the indicated JSON field in all records where it occurs.
The metric will be available in CloudWatch Metrics under the indicated namespace and name.
- Parameters:
json_field (
str
) – JSON field to extract (example: ‘$.myfield’).metric_namespace (
str
) – Namespace to emit the metric under.metric_name (
str
) – Name to emit the metric under.
- Return type:
- Returns:
A Metric object representing the extracted metric
- grant(grantee, *actions)
Give the indicated permissions on this log group and all streams.
- Parameters:
grantee (
IGrantable
) –actions (
str
) –
- Return type:
- grant_write(grantee)
Give permissions to create and write to streams in this log group.
- Parameters:
grantee (
IGrantable
) –- Return type:
- log_group_physical_name()
Public method to get the physical name of this log group.
- Return type:
str
- Returns:
Physical name of log group
- to_string()
Returns a string representation of this construct.
- Return type:
str
Attributes
- env
The environment this resource belongs to.
For resources that are created and managed by the CDK (generally, those created by creating new class instances like Role, Bucket, etc.), this is always the same as the environment of the stack they belong to; however, for imported resources (those obtained from static methods like fromRoleArn, fromBucketName, etc.), that might be different than the stack they were imported into.
- log_group_arn
The ARN of this log group.
- log_group_name
The name of this log group.
- node
The construct tree node associated with this construct.
- stack
The stack in which this resource is defined.
Static Methods
- classmethod from_log_group_arn(scope, id, log_group_arn)
Import an existing LogGroup given its ARN.
- classmethod from_log_group_name(scope, id, log_group_name)
Import an existing LogGroup given its name.
- classmethod is_construct(x)
Return whether the given object is a Construct.
- Parameters:
x (
Any
) –- Return type:
bool
- classmethod is_resource(construct)
Check whether the given construct is a Resource.
- Parameters:
construct (
IConstruct
) –- Return type:
bool