Call Kibana Dashboard

Hi,

I am using Grafana dashboard and added a “Dashboard Links” to open kibana dashboard.
On click I am able to successfully open the kibana dashboard but it is not setting the proper timestamp
though i have selected “Time range” option i Grafana to pass those variable.

On investigating, I found that the format in which Kibana accepts is different.
Kibana expects in following way: time:(from:now-3h,to:now)) in the query parameter
Grafana passes: ?from=now-30m&to=now

can someone help me how to configure to match the time range.

Thank you

After few trials i was able to do this.
Create a dashboard link and specify the following query in your dashboard URL.
https://BASE_DASHBOARD_URI?_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:’{__from:date}',to:'{__to:date}’))