Versions in this module Expand all Collapse all v0 v0.0.3 Dec 20, 2021 Changes in this version + func NewCsvParser(config CsvParserConfig) csvParser + func NewJsonParser(config JsonParserConfig) jsonParser + func NewRawParser() rawParser + type CsvParserConfig struct + ActivityColumn uint + CaseIdColumn uint + Delimiter string + IgnoreWhen []struct{ ... } + TimestampColumn uint + TimestampFormat string + TimestampTzIanakey string + type JsonParserConfig struct + ActivityPath string + CaseIdPath string + IgnoreWhen []struct{ ... } + JsonPath string + TimestampFormat string + TimestampPath string + TimestampTzIanakey string + type Parser interface + Close func() + Parse func(input []byte) (*events.Event, error)