LogTransformerTransformerConfigGrok constructor

const LogTransformerTransformerConfigGrok({
  1. required Input<String> match,
  2. Input<String?>? source,
})

Creates a new LogTransformerTransformerConfigGrok. match Specifies the grok pattern to match against the log event. source Specifies the path to the field in the log event that has the comma separated values to be parsed. If omitted, the whole log message is processed.

Implementation

const LogTransformerTransformerConfigGrok({
  required this.match,
  this.source,
});