Skip to content

Commit

Permalink
feat(syslog codec) syslog codec
Browse files Browse the repository at this point in the history
  • Loading branch information
syedriko committed Nov 12, 2023
1 parent c7ae2a6 commit c2c811c
Show file tree
Hide file tree
Showing 7 changed files with 499 additions and 16 deletions.
2 changes: 2 additions & 0 deletions lib/codecs/src/encoding/format/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ mod native_json;
mod protobuf;
mod raw_message;
mod text;
mod syslog;

use std::fmt::Debug;

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

/// Serialize a structured event into a byte frame.
Expand Down
Loading

0 comments on commit c2c811c

Please sign in to comment.