New

The executive guide to generative AI

Read more
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.

Add tags

edit

The add_tags processor adds tags to a list of tags. If the target field already exists, the tags are appended to the existing list of tags.

tags
List of tags to add.
target
(Optional) Field the tags will be added to. Defaults to tags.

For example, this configuration:

processors:
  - add_tags:
      tags: [web, production]
      target: "environment"

Adds the environment field to every event:

{
  "environment": ["web", "production"]
}
Was this helpful?
Feedback