I'm using vega to work out my visualization.
As you can see, I'm querying "telemetry" index.
While if I input via filter (either in dashboard filter field or visualization filter - KQL) by using "appName" field, I found its querying data from a separate index (that index also has "appName" field). Why it happen? or are there configuration mess up there?
{
"$schema": "https://vega.github.io/schema/vega-lite/v2.6.json",
"data": {
"name": "metrics",
"url": {
"%context%": true,
"index": "telemetry*"
....
}