-
Hi team, Some of vector's transform components only work for a specific event subtype. For example, throttle only works for logs and tag_cardinality_limit only works for metrics. This makes sense because vector logs are a structured representation of a point-in-time event, and vector metrics are not represented as structured logs. However, it seems like when a component receives an incompatible event subtype it will drop it silently. Moreover, Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
This seems like it'd be a useful enhancement to add to Without that, I'm not sure there is a good way to differentiate between a log that happens to match the structure of a metric and an actual metric. |
Beta Was this translation helpful? Give feedback.
This seems like it'd be a useful enhancement to add to
vector tap
when the--meta
flag is used. It could be added to this file: https://github.com/vectordotdev/vector/blob/master/lib/vector-tap/src/lib.rsWithout that, I'm not sure there is a good way to differentiate between a log that happens to match the structure of a metric and an actual metric.