Forum Discussion

jbroenstrup's avatar
jbroenstrup
Copper Contributor
Jan 03, 2023

Rendering a CloumnChart in Application Insights Log Analytics with Logarithmic Scale

I am trying to render a columnchart and since it consists of very high and very low values I would like to see it on a logarithmic scale. According to the Kusto reference manual it should be possible with the property xaxis and value log. So if I put

datasource
| make-series sum(myvalue), default=0 on timestamp in range(min, max, binSize) by splitValue
| render columnchart with(xaxis=log, kind=unstacked)

I do not get an error message but the scale of the xaxis does not change.

 

Of course for the visualization I could simply use the log(sum(myvalue)). But then if I hover over the segments of the columnchart I do not get the correct values anymore but only the log-values ...

 

Am I missing something?

3 Replies

Resources