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
Eventusing 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
Eventfrom 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
Events from a byte frame containing JSON. - Config used to build a
JsonDeserializer. - JSON-specific decoding options.
 - Deserializer that builds
Events from a byte frame containing Vector’s native protobuf format. - Config used to build a
NativeDeserializer. - Deserializer that builds
Events 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
Events from a byte frame containing protobuf. - Config used to build a
ProtobufDeserializer. - Protobuf-specific decoding options.
 - Deserializer that builds an
Eventfrom a byte frame containing a syslog message. - Config used to build a
SyslogDeserializer. - Syslog-specific decoding options.
 - Deserializer that builds
Events 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
Boxcontaining aDeserializer.