We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2918e6 commit 4f35c36Copy full SHA for 4f35c36
2 files changed
lib/codecs/src/decoding/format/mod.rs
@@ -50,6 +50,8 @@ pub trait Deserializer: DynClone + Send + Sync {
50
/// by not requiring heap allocations for it.
51
///
52
/// **Note**: The type of the produced events depends on the implementation.
53
+ ///
54
+ /// TODO: <https://github.com/vectordotdev/vector/issues/25044>
55
fn parse(
56
&self,
57
bytes: Bytes,
lib/codecs/src/decoding/format/otlp.rs
@@ -181,6 +181,7 @@ impl Deserializer for OtlpDeserializer {
181
}
182
183
OtlpSignalType::Traces => {
184
+ // TODO: https://github.com/vectordotdev/vector/issues/25045
185
if let Ok(mut events) =
186
self.traces_deserializer.parse(bytes.clone(), log_namespace)
187
&& let Some(Event::Log(log)) = events.first()
0 commit comments