-
Notifications
You must be signed in to change notification settings - Fork 3.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
"value" column to collectd #2412
Comments
Same applies for the graphite plugin. When sending a value for a metric named, say "cpu_load_short", the value is stored in a column "cpu_load_short" instead of "value". Example: Query: Result: {
"results": [
{
"series": [
{
"name": "cpu_load_short",
"columns": [
"time",
"cpu_load_short"
],
"values": [
[
"2015-04-27T13:07:37Z",
0.99
]
]
}
]
}
]
} Shouldn't the value stored in a column named 'value'? Otherwise in i.e. Grafana you have to create queries such as |
All fixed in RC29. |
https://github.com/influxdb/influxdb/blob/master/collectd/collectd.go#L174 adds a column named <plugin>_<value name> with the value. Some tools expect there to be a column named "value" with the value. Since the plugin and value name are already the name of the point, what about changing that line to
Based on conversation in https://groups.google.com/d/msg/influxdb/JxRmWPom6ao/QAIw0H8Vi5QJ
(I would have submitted this as a patch but I don't have a dev/test environment at the moment)
The text was updated successfully, but these errors were encountered: