- Functionbeat Reference:
- Overview
- Getting Started With Functionbeat
- Setting up and running Functionbeat
- Configuring Functionbeat
- Configure functions
- Specify general settings
- Configure the internal queue
- Configure the output
- Configure index lifecycle management
- Specify SSL settings
- Filter and enhance the exported data
- Define processors
- Add cloud metadata
- Add fields
- Add labels
- Add the local time zone
- Add tags
- Decode JSON fields
- Community ID Network Flow Hash
- Convert
- Drop events
- Drop fields from events
- Keep fields from events
- Rename fields from events
- Add Kubernetes metadata
- Add Docker metadata
- Add Host metadata
- Add Observer metadata
- Dissect strings
- DNS Reverse Lookup
- Add process metadata
- Extract array
- Parse data by using ingest node
- Enrich events with geoIP information
- Configure the Kibana endpoint
- Load the Elasticsearch index template
- Configure logging
- Use environment variables in the configuration
- YAML tips and gotchas
- Regular expression support
- functionbeat.reference.yml
- Exported fields
- Monitoring Functionbeat
- Securing Functionbeat
- Troubleshooting
A newer version is available. For the latest information, see the
current release documentation.
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
.
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?
Thank you for your feedback.