Hi,
I am using metricbeat 7.3.2, with migration.6_to_7.enabled: true set to get backward compatible fields.
One field that still isn't showing up is metricset.module. Many of our dashboards and alerts depend on this field, so I'd like to add it back via a processor.
However, I'm noticing some weird behavior. Without the following two blocks, other processors work fine (adding, removing, dissecting fields). However when I add either of these, metrics cease to be stored in ES. Is there some block on the metricset target?
Thanks, Justin
      - add_fields:
          target: metricset
          fields:
            module: kubernetes	
      - dissect:
          when:
            has_fields: ['event.module']
          tokenizer: "%{module}"
          field: "event.module"
          target_prefix: "metricset"