-
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
Added support for custom attributes #5971
Added support for custom attributes #5971
Conversation
* Don't stop collection on partial error * Compute average if query returned multiple samples for a metric
…roblems with some versions of vCenter
…g from GetClient(), fixed discovered object counting
plugins/parsers/wavefront/parser.go
Outdated
@@ -98,6 +98,8 @@ func (p *PointParser) Parse(buf []byte) ([]telegraf.Metric, error) { | |||
buf = append(buf, []byte("\n")...) | |||
} | |||
|
|||
//log.Printf("D! [parsers.wavefront] Received data: %s", string(buf)) |
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.
Delete 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.
Done.
@danielnelson This PR will most likely generate a nasty merge with the vSAN stuff that @YuxinZhou is working on. How do you want me to handle that? Just wait for her merge to clear and then clean up the merge on my fork? Or you want us to merge our two branches into one? |
Unfortunately, I'm not going to have time to help finish the vSAN code for the upcoming 1.12 release. Let's merge this in and have @YuxinZhou base his code on it. |
Required for all PRs:
Custom attributes is an important construct that allows administrators to tag resources workloads according to custom schemes. This can be used to group assets, tie containers to VMs, classify workload security requirements among many other things. Being able to use these in queries in target solutions such as InfluxDB has been desired by several users of the vSphere plugin.
Custom attribute collection is controlled by the
custom_attribute_include
andcustom_attribute_exclude
configuration settings.