I have two different Prometheus queries :
Input
product_description{id="1", quantity="12"} 2
product_status{id="1", status="online"} 1
Desired outupt
{id="1", quantity="12", status="online"} 2
What is the Prometheus query to obtain the equivalent of a MySQL join, to merge the labels of the two queries on the id
label ?
Edit
Thanks to @MichaelDoubez
product_description{id="1"} + on(id) group_left(status) (0 * product_status{id="1"})