You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 23, 2023. It is now read-only.
@@ -770,6 +775,14 @@ func (s *Server) executePlan(ctx context.Context, orgId uint32, plan expr.Plan)
770
775
771
776
out=mergeSeries(out)
772
777
778
+
iflen(metaTagEnrichmentData) >0 {
779
+
fori:=rangeout {
780
+
ifmetaTags, ok:=metaTagEnrichmentData[out[i].Target]; ok {
781
+
out[i].EnrichWithTags(metaTags)
782
+
}
783
+
}
784
+
}
785
+
773
786
// instead of waiting for all data to come in and then start processing everything, we could consider starting processing earlier, at the risk of doing needless work
774
787
// if we need to cancel the request due to a fetch error
775
788
@@ -787,6 +800,7 @@ func (s *Server) executePlan(ctx context.Context, orgId uint32, plan expr.Plan)
0 commit comments