Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/log/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.1.0"
changes:
- description: Add custom logs and processors
type: enhancement
link: https://github.com/elastic/integrations/pull/2538

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi, Idk if this is the place to mention, but the link here is for the past 1.0.0 release instead of the 1.1.0 one which is this one #4568.
This duplicates the link to the PR and is confusing in the official https://docs.elastic.co/integrations/log documentation.

- version: "1.0.0"
changes:
- description: Release Custom Logs as GA
Expand Down
10 changes: 10 additions & 0 deletions packages/log/data_stream/log/agent/stream/stream.yml.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,15 @@ paths:

data_stream:
dataset: {{data_stream.dataset}}
{{#if processors.length}}
processors:
{{processors}}
{{/if}}
{{#if tags.length}}
tags:
{{#each tags as |tag i|}}
- {{tag}}
{{/each}}
{{/if}}

{{custom}}
15 changes: 14 additions & 1 deletion packages/log/data_stream/log/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,21 @@ streams:
title: Dataset name
description: >
Set the name for your dataset. Changing the dataset will send the data to a different index. You can't use `-` in the name of a dataset and only valid characters for [Elasticsearch index names](https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-index_.html).

type: text
- name: tags
type: text
title: Tags
Comment thread
fearful-symmetry marked this conversation as resolved.
description: Tags to include in the published event
multi: true
show_user: false
- name: processors
type: yaml
title: Processors
multi: false
required: false
show_user: false
description: >-
Processors are used to reduce the number of fields in the exported event or to enhance the event with metadata. This executes in the agent before the logs are parsed. See [Processors](https://www.elastic.co/guide/en/beats/filebeat/current/filtering-and-enhancing-data.html) for details.
- name: custom
title: Custom configurations
description: >
Expand Down
2 changes: 1 addition & 1 deletion packages/log/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: Custom Logs
description: >-
Collect custom logs with Elastic Agent.
type: integration
version: 1.0.0
version: 1.1.0
release: ga
license: basic
categories:
Expand Down