I have a promQL expression like this- sum(metric_1) by (label_1)
. Now, I want to filter out the output of the expression using another label label_2
. Something like this- (sum(metric_1) by (label_1)){label_2="some_value"}
. But, this is not working and is giving a parse error. How can I achieve this?