Skip to content

Convert to universal plugin with multiple inner plugins #144

@jsvd

Description

@jsvd

Currently mutate filter performs multiple mutations:

filter {
  mutate {
    rename => { .. }
    convert => { .. }
    gsub => { .. }
  }
}

However the user defined order doesn't correspond to the execution order as that is hard coded.

Using an universal plugin, we could provide each mutation as a top level filter:

filter {
  rename => { .. }
  convert => { .. }
  gsub => { .. }
}

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions