Expand description
A collection of formats that can be used to convert from byte frames to structured events.
Structs§
- Serializer that converts bytes to an
Event
using the Apache Avro format. - Config used to build a
AvroDeserializer
. - Apache Avro serializer options.
- Deserializer that converts bytes to an
Event
. - Config used to build a
BytesDeserializer
. - Deserializer that builds an
Event
from a byte frame containing a GELF log message. - Config used to build a
GelfDeserializer
. - GELF-specific decoding options.
- Deserializer for the influxdb line protocol
- Config used to build a
InfluxdbDeserializer
. - Deserializer that builds
Event
s from a byte frame containing JSON. - Config used to build a
JsonDeserializer
. - JSON-specific decoding options.
- Deserializer that builds
Event
s from a byte frame containing Vector’s native protobuf format. - Config used to build a
NativeDeserializer
. - Deserializer that builds
Event
s from a byte frame containing Vector’s native JSON representation. - Config used to build a
NativeJsonDeserializer
. - Vector’s native JSON-specific decoding options.
- Deserializer that builds
Event
s from a byte frame containing protobuf. - Config used to build a
ProtobufDeserializer
. - Protobuf-specific decoding options.
- Deserializer that builds an
Event
from a byte frame containing a syslog message. - Config used to build a
SyslogDeserializer
. - Syslog-specific decoding options.
- Deserializer that builds
Event
s from a byte frame containing logs compatible with VRL. - Config used to build a
VrlDeserializer
. - VRL-specific decoding options.
Traits§
- Parse structured events from bytes.
Type Aliases§
- A
Box
containing aDeserializer
.