-
Notifications
You must be signed in to change notification settings - Fork 456
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[AWS Farget] Set dimension fields #6733
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -33,6 +33,7 @@ | |||
name: container.id | ||||
- external: ecs | ||||
name: container.name | ||||
dimension: true | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. wondering if
so to rely not on the container name (in case there will be some changes in name generation), but the task name instead There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I mention it on the description: The structure for that field is: |
||||
- external: ecs | ||||
name: container.image.name | ||||
# container + custom labels | ||||
|
@@ -44,10 +45,15 @@ | |||
description: ECS container name | ||||
- name: container.labels.com_amazonaws_ecs_task-arn | ||||
type: keyword | ||||
dimension: true | ||||
description: ECS task ARN | ||||
- name: container.labels.com_amazonaws_ecs_task-definition-family | ||||
type: keyword | ||||
description: ECS task definition family | ||||
- name: container.labels.com_amazonaws_ecs_task-definition-version | ||||
type: keyword | ||||
description: ECS task definition version | ||||
# agent | ||||
- name: agent.id | ||||
external: ecs | ||||
dimension: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This sets dimension fields, but also
agent.id
. Should we mention it here?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
agent.id
was already present, but this time, it is just explicitly set on theecs.yml
. I can add that. What do you think is best @dmathieu?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mentioning that it's now explicitly set sounds good to me.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @dmathieu , I updated the changelog to include that