SaAk
SaAk

Reputation: 75

Is it possible to filter the panels created in a dashboard using GRAFANA based on their name

I have created a dashboard in grafana having multiple status panels. I need to provide a dropdown such that when one option is selected all the panels having a name corresponding to the selected option will be filtered. So, basically i need to filter the panels based on their name.Is this possible. If yes, how can we go about it

Upvotes: 1

Views: 9193

Answers (2)

Nick
Nick

Reputation: 3384

The way to accomplish something like this is with Grafana's Repeating Rows/Panels feature.

Essentially, this lets you dynamically duplicate a row/panel for all the possible results of a given variable. Then a dashboard user can use the variable selection UI to drill down and only show certain rows or panels. Make sure you allow multi-select and/or All as an option for the variable(s) so that you can see multiple results at a time.

Upvotes: 0

fmakawa
fmakawa

Reputation: 350

a bit late for an answer now I suppose but will answer you anyway. You can create filters in Grafana without the need for a plug in through using the Variables feature in your Dashboard settings. Its also used in templating to make your data more dynamic but also crucial in display when you want to filter. Check out the link below

https://grafana.com/docs/grafana/latest/reference/templating/

Upvotes: 1

Related Questions