-
Notifications
You must be signed in to change notification settings - Fork 39
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
Multiple series can't be distinguished in legend #517
Comments
hi @cdeil, this is due to the fact that that's the column name of the returned values. In fact, we could add an | summarize avg(Value) by bin(DateTime, $__timeInterval)
| project-rename W1_KAL_SCIN=avg_Value |
Hello @cdeil, Have you considered using a query where you add the SensorTag column in the summarize / group by?
This will give you an output like:
The graph would then look like this: However, this does not solve the In such situation where you need to hardcode this, you can use the let statement to define a key/value list with the SensorTag as the key and the friendly name as the value. Then use strcat() to format the label.
Which will result in something like this: |
|
When I use the query builder and add two queries and time series they are both shown as avg_Value in the legend and it's not clear which is which.
Other Plugins like Graphite have a nice way to alias time series names.
Could you please offer something like this for ADX as well?
PS: this was already mentioned in #14 and probably I should have filed it as a feature request, but I thought maybe bug reports get more attention. :-)
The text was updated successfully, but these errors were encountered: