Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 2.62 KB

File metadata and controls

37 lines (26 loc) · 2.62 KB

AWS logs

Status: Development

type: aws.log

Description: Resources specific to Amazon Web Services.

Attribute Type Description Examples Requirement Level Stability
aws.log.group.arns string[] The Amazon Resource Name(s) (ARN) of the AWS log group(s). [1] ["arn:aws:logs:us-west-1:123456789012:log-group:/aws/my/group:*"] Recommended Development
aws.log.group.names string[] The name(s) of the AWS log group(s) an application is writing to. [2] ["/aws/lambda/my-function", "opentelemetry-service"] Recommended Development
aws.log.stream.arns string[] The ARN(s) of the AWS log stream(s). [3] ["arn:aws:logs:us-west-1:123456789012:log-group:/aws/my/group:log-stream:logs/main/10838bed-421f-43ef-870a-f43feacbbb5b"] Recommended Development
aws.log.stream.names string[] The name(s) of the AWS log stream(s) an application is writing to. ["logs/main/10838bed-421f-43ef-870a-f43feacbbb5b"] Recommended Development

[1] aws.log.group.arns: See the log group ARN format documentation.

[2] aws.log.group.names: Multiple log groups must be supported for cases like multi-container applications, where a single application has sidecar containers, and each write to their own log group.

[3] aws.log.stream.arns: See the log stream ARN format documentation. One log group can contain several log streams, so these ARNs necessarily identify both a log group and a log stream.