BanTheNons
unread,Aug 20, 2021, 9:21:56 AM8/20/21Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Prometheus Users
I have a graph query, "topk(15, sum(increase(score[$__range])) by (user) / sum(increase(msg_count[$__range])) by (user))". In this instance, users can send messages somewhere, and each time they do that, the "msg_count" counter increases and they get a certain amount of "score". By dividing their total score by their amount of messages, I'm getting the average of how many score they earn per message. From this query, I'm trying to filter out users that have 50 or less messages sent by them. How can I do that?