Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/semantic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ jobs:
ci
cli
codecs
codecs protobuf
compression
config
core
Expand Down
3 changes: 3 additions & 0 deletions changelog.d/proto_codecs.enhancement.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
The `protobuf` codecs now support all telemetry data types (logs, metrics, traces).

authors: pront
2 changes: 1 addition & 1 deletion lib/codecs/src/decoding/format/protobuf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ impl ProtobufDeserializerConfig {

/// Return the type of event build by this deserializer.
pub fn output_type(&self) -> DataType {
DataType::Log
DataType::all_bits()
}

/// The schema produced by the deserializer.
Expand Down
2 changes: 1 addition & 1 deletion lib/codecs/src/encoding/format/protobuf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ impl ProtobufSerializerConfig {

/// The data type of events that are accepted by `ProtobufSerializer`.
pub fn input_type(&self) -> DataType {
DataType::Log
DataType::all_bits()
}

/// The schema required by the serializer.
Expand Down
Loading