raulsperoni / magnesium-wordcloud-panel

Wordcloud / Tagcloud Panel Plugin for Grafana
Apache License 2.0
16 stars 9 forks source link

Support prometheus datasource? #10

Open luckzack opened 3 years ago

luckzack commented 3 years ago

Great wordcloud plugin, but I hope it can support prometheus datasource

raulsperoni commented 3 years ago

Thanks, I think it should work yes, as long a your data has the right shape (a column with count and a column with the word)

fredrik84 commented 1 year ago

I solved this by adding transformations to my query. First Series to Rows and then a Group By with grouping on metric and calculate mean on the value. My promql query is grouped to only 1 label.

count by (label) (query)

image