-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
Retrieve AWS EC2 tags using instance metadata #15789
Comments
For my understanding, do you want the processor to use the instance-metadata endpoint instead of accessing the actual compute instance? |
@srebhan currently |
Sorry I'm not exactly sure what you are requesting here? To me it sounds like you want to use the |
I'd like to get instance tags via |
That's exactly what should happen if you only specify the And yes I've read the document you linked. ;-) |
you can not get instance tags from |
for now telegraf/plugins/processors/aws_ec2/ec2.go Line 146 in f693df8
But I want to get also EC2 instance tags from this path: |
I see. Sorry for not getting this earlier! Are you willing to contribute a pull-request? |
Probably I didn't explain what I needed in the initial request well and that's what confused you. I apologise and it's great that we've come to an understanding I'm not sure of my golang skills, but I'll try to add this feature myself next week ;) |
@kirillmandrygin please test the binary in PR #15795, available as soon as CI finished the tests, and let me know if this is what you had in mind. You should use the new |
@srebhan it seems this is not working for me, I can see telegraf.conf:
telegraf version:
tags are available through IMDS:
and there is no any error in debug log:
|
Could you please use the latest version of the binary in the PR and set [[processors.aws_ec2]]
log_level = "trace"
imds_tags = [ "accountId", "instanceId", "instanceType", "privateIp", "availabilityZone" ]
metadata_tags = [ "Name", "Stage" ] as this should print out all received metadata key-value pairs (I hope)... Could you please also provide the output of
|
@srebhan already provided trace here: #15795 (comment)
and please take a look at the output of the meta-data URL:
full path to a tag will be |
Hi @srebhan ! It is working good but I have two issues:
|
Use Case
I want to add EC2 tags using metadata and I don't want to use the instance role to do this.
AWS Documentation: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/work-with-tags-in-IMDS.html
Expected behavior
The AWS EC2 Metadata Processor plugin should support retrieving tags from IMDS
Actual behavior
The aws_ec2 processor plugin doesn't support this
Additional info
No response
The text was updated successfully, but these errors were encountered: