Functionbeat reached End of Support on October 18, 2023. You must consider
moving your deployments to the more versatile and efficient Elastic Serverless
Forwarder.
Add tags
editAdd tags
editThe 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
. Setting tags in@metadata
is not supported.
For example, this configuration:
processors: - add_tags: tags: [web, production] target: "environment"
Adds the environment field to every event:
{ "environment": ["web", "production"] }