Does it support different TagKey for same component which is used in different pipeline? #3566
-
Both pipeline I think it's something like receivers:
nop:
processors:
batch/1:
timeout: 10s
send_batch_size: 10000
send_batch_max_size: 11000
batch/2:
timeout: 10s
send_batch_size: 10000
send_batch_max_size: 11000
exporters:
nop:
service:
pipelines:
traces/1:
receivers: [nop]
processors: [batch/1]
exporters: [nop]
traces/2:
receivers: [nop]
processors: [batch/2]
exporters: [nop]
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Solved. We should use Thanks opentelemetry. The design is really awesome! |
Beta Was this translation helpful? Give feedback.
Solved. We should use
exportCtx, err := tag.New(context.Background(), tag.Insert(processorTagKey, cfg.ID().String()))
link.Thanks opentelemetry. The design is really awesome!