0

I am using Grafana to perform a Log to Metric query using an Azure Data Explorer datasource, that gives me a result like this as a table: enter image description here

This comes from this query:

Log
| where $__timeFilter(TIMESTAMP)
| where eventId == 666
| summarize count() by bin(TIMESTAMP, 15m), Region
| order by TIMESTAMP asc

When rendered as a timechart in AppInsights, it renders perfectly like this:

enter image description here

However in Grafana, this perplexingly renders by the Count_ column, not using the obvious Regional breakout field:

enter image description here

My goal is to get an AppInsight's like timechart with multiple data series, within Grafana

FoxDeploy
  • 12,569
  • 2
  • 33
  • 48

1 Answers1

0

I found my answer! It turns out I was rendering the data as a Table, using the Grafana query wizard here.

enter image description here

Once I changed that to TimeSeries, it all just worked!

enter image description here enter image description here

FoxDeploy
  • 12,569
  • 2
  • 33
  • 48