For example, I have teo metrics with different label
node_metrics_first{foo="bar",AAA="aaa"}
node_metrics_second{BBB="bbb",CCC="ccc"}
how can I use relabeling/metricRelabeling drop/labeldrop in servicemonitor to remove foo label in node_metrics_first, which means I should get the result:
node_metrics_first{AAA="aaa"}
node_metrics_second{BBB="bbb",CCC="ccc"}