Vicky
Vicky

Reputation: 829

How to change the Kibana Refresh Interval in Saved objects window

How to change the Kibana Dashboard Refresh interval .

enter image description here

{
"index" : {
        "refresh_interval" : "5s"
}
}

I have tried the above one, it's not working. Please suggest how to change the Refresh interval. [Kibana dashboard should refresh automatically in every 5 seconds - Kibana 5.2]

Upvotes: 1

Views: 1603

Answers (2)

natrium
natrium

Reputation: 55

if you want to use the advantanced options consider that time is in ms: so for 5s use 5000 (withous s)

"refresh_interval" : "5000"

Upvotes: 0

baudsp
baudsp

Reputation: 4100

When setting the time filter, you can set the auto-refresh option:

enter image description here

(picture from here, with my modification)

Upvotes: 2

Related Questions