I am using the .net application and using iframe to show the kibana dashboard. So just had control over URL to show the data on Kibana dashboard.
http://localhost:5601/#/dashboard/Name-Dashboard?embed=true&_g=(time:(from:now-6M,mode:quick,to:now),title:'Name%20Dashboard')
Now i want to filter the dashboard based on some application logic. So user will be shown data based on his settings. So need to add some query or filter to URL mentioned above. I checked the documentation for elastic search and there is provision for adding the query parameters from URL
http://localhost:9200/indexname/type/_search?q=field:fieldValue
But how I can add the query string in kibana so that the values will be passed to elastic search and dashboard is shown appropriately