How to pass arguments dynamically in kibana

i create a dashboard with using of multiple visualization like pie. vertical bar etc. If i give a arguments dynamically in backend side . It can be affect the dashboard visualization based on dynamic arguments in kibana.

Most things in Kibana are controlled via the URL, so if you specify different URL parameters, you can control the visualization.

For example, if I create a bar chart where I want to plot the sum of duration, the URL will have something like this:

aggs:!((enabled:!t,id:'1',params:(field:duration),schema:metric,type:avg))

If I dynamically change duration to start_time it will update in the chart. This is currently the only way to specify dynamic parameters.

1 Like

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