Vega diagram autorefresh in Kibana

How to make vega virtualization can be autorefreshed after a interval like other form of virtualization in Kibana.

I'm using Kibana 6.2.2

and, I set my data query like this in vega. I use "now-11m/m" and "now-1m/m“ to get the 10 minutes timeframe data, and want it to be autorefreshed by 1 minute. How to get it ?

      "url": {
        "index": "cause_all*",
        "body": {
          "query": {
            "bool": {
              "must": [
                {
                  "range":{
                    "anomtime":{
                      "time_zone": "+08:00",
                      "gte":"now-11m/m",
                      "lt": "now-1m/m"
                    }
                  }
                },
                {
                  "range":{
                    "corrratio":{
                      "gte":0.9
                    }
                  }
                }
              ]
            }
          }
        }
      }

Regards,
Lei.W

@nyuriks - do u think u can help here ?
Thanks
Rashmi

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.