field_standardize

field_standardize #

CategoryScope
Transformrecord

The “field_standardize” pipeline processor: it normalizes the attribute keys of the current record to the canonical naming of the INFINI log data model (OTel Log Data Model with lowercase snake_case keys by default).

Configuration #

FieldTypeDefaultDescription
modestringOperating mode of the processor.
normalize_casebooltrueNormalize the case of the mapped keys.
flatten*boolFlatten all array elements as indexed fields.
separatorstringSeparator between keys and values, or between fields.
mappingmap (string to string)Field mapping applied by the processor.
drop_unknownboolDrop fields that have no mapping.

Example #

processor:
  - field_standardize:
      mode: "mode"
      normalize_case: true
      flatten: "flatten"
      separator: "="
      mapping: []
Edit Edit this page