Hello
I am trying to add time in milliseconds for yaxis timechart, but when i add it to the Dashboard i dint specified "Duration in Milliseconds" not displaying on the dashboard.
Below is my query:
requests
| where operation_Name contains "***" or cloud_RoleName == "*****"
| summarize avgRequestDuration=avg(duration), percentiles(duration, 95, 99) by bin(timestamp, 1m)
| extend SLA=1000
| project SLA, avgRequestDuration, percentiles_duration_95, percentiles_duration_99, timestamp
| render timechart with (ytitle="Duration in Milliseconds")
When i tried this query in ApplicationInsights everything looks good, but when i add this to Dashboard the specified "ytitle" = "Duration in Milliseconds" is not displaying on the chart.