Description
Kibana version: 5.0.0-rc1
In kibana 4.x, the interval of data_histogram is visible in the dashboard's shared url. So I can use a dropdown menu to control the interval selection. Below is the part from shared url of kibana 4.x.
"vis": {
"aggs": [
{
"enabled": true,
"id": "2",
"params": {
"customInterval": "2h",
"customLabel": "",
"extended_bounds": {},
"field": "@timestamp",
"interval": "w",
"min_doc_count": 1
},
"schema": "segment",
"type": "date_histogram"
},
However, the interval related details are hidden in kibana 5.0.0-rc1.
Actually, there has been a enhancement #5066 for interval update. But there is no plan for #5066 . So, I find out a workaround that change the interval option in the url and reload the page from iframe.
But, this can't be worked in kibana 5.0.0-rc1, since the interval option was hidden now.