-
Notifications
You must be signed in to change notification settings - Fork 564
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implemented aws.ecs.* and aws.logs.* resource attributes
in go.opentelemetry.io/detectors/aws/ecs for ECS Metadata v4
- Loading branch information
Michele Mancioppi
committed
Sep 18, 2022
1 parent
c4876c3
commit ef483b1
Showing
9 changed files
with
487 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
detectors/aws/ecs/testdata/metadatav4-response-container-ec2.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"DockerId": "ea32192c8553fbff06c9340478a2ff089b2bb5646fb718b4ee206641c9086d66", | ||
"Name": "curl", | ||
"DockerName": "ecs-curltest-24-curl-cca48e8dcadd97805600", | ||
"Image": "111122223333.dkr.ecr.us-west-2.amazonaws.com/curltest:latest", | ||
"ImageID": "sha256:d691691e9652791a60114e67b365688d20d19940dde7c4736ea30e660d8d3553", | ||
"Labels": { | ||
"com.amazonaws.ecs.cluster": "default", | ||
"com.amazonaws.ecs.container-name": "curl", | ||
"com.amazonaws.ecs.task-arn": "arn:aws:ecs:us-west-2:111122223333:task/default/8f03e41243824aea923aca126495f665", | ||
"com.amazonaws.ecs.task-definition-family": "curltest", | ||
"com.amazonaws.ecs.task-definition-version": "24" | ||
}, | ||
"DesiredStatus": "RUNNING", | ||
"KnownStatus": "RUNNING", | ||
"Limits": { | ||
"CPU": 10, | ||
"Memory": 128 | ||
}, | ||
"CreatedAt": "2020-10-02T00:15:07.620912337Z", | ||
"StartedAt": "2020-10-02T00:15:08.062559351Z", | ||
"Type": "NORMAL", | ||
"LogDriver": "awslogs", | ||
"LogOptions": { | ||
"awslogs-create-group": "true", | ||
"awslogs-group": "/ecs/metadata", | ||
"awslogs-region": "us-west-2", | ||
"awslogs-stream": "ecs/curl/8f03e41243824aea923aca126495f665" | ||
}, | ||
"ContainerARN": "arn:aws:ecs:us-west-2:111122223333:container/0206b271-b33f-47ab-86c6-a0ba208a70a9", | ||
"Networks": [ | ||
{ | ||
"NetworkMode": "awsvpc", | ||
"IPv4Addresses": [ | ||
"10.0.2.100" | ||
], | ||
"AttachmentIndex": 0, | ||
"MACAddress": "0e:9e:32:c7:48:85", | ||
"IPv4SubnetCIDRBlock": "10.0.2.0/24", | ||
"PrivateDNSName": "ip-10-0-2-100.us-west-2.compute.internal", | ||
"SubnetGatewayIpv4Address": "10.0.2.1/24" | ||
} | ||
] | ||
} |
Oops, something went wrong.