Hello, Garrett Li,
I need to do an outer join, I would like you to provide an example, suppose we have two series of metric1: {label1=v1, label2=v2} and {label1=v3, label2=v4}
and one series of metric2: {label1=v1, label3=v5}
how can we join the two metrics without loosing {label1=v3, label2=v4}, in other words, how can we get {label1=v1, label2=v2, label3=v5} and {label1=v3, label2=v4, label3=None(or sth else)}
If we do sth like: metric1 * on(label1) group_left(label3) metric2 we will only get {label1=v1, label2=v2, label3=v5}
Thanks