Skip to content

Commit c2c811c

Browse files
committed
feat(syslog codec) syslog codec
1 parent c7ae2a6 commit c2c811c

File tree

7 files changed

+499
-16
lines changed

7 files changed

+499
-16
lines changed

lib/codecs/src/encoding/format/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ mod native_json;
1414
mod protobuf;
1515
mod raw_message;
1616
mod text;
17+
mod syslog;
1718

1819
use std::fmt::Debug;
1920

@@ -28,6 +29,7 @@ pub use native_json::{NativeJsonSerializer, NativeJsonSerializerConfig};
2829
pub use protobuf::{ProtobufSerializer, ProtobufSerializerConfig, ProtobufSerializerOptions};
2930
pub use raw_message::{RawMessageSerializer, RawMessageSerializerConfig};
3031
pub use text::{TextSerializer, TextSerializerConfig};
32+
pub use syslog::{SyslogSerializer, SyslogSerializerConfig};
3133
use vector_core::event::Event;
3234

3335
/// Serialize a structured event into a byte frame.

0 commit comments

Comments
 (0)