Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added dimension fields for partition datastream #5962

Merged
merged 3 commits into from
Apr 25, 2023
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/kafka/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.5.5"
changes:
- description: Add dimension fields for partition datastream.
type: enhancement
link: https://github.com/elastic/integrations/pull/5962
- version: "1.5.4"
changes:
- description: Add dimension mapping for consumergroup datastream.
Expand Down
13 changes: 13 additions & 0 deletions packages/kafka/data_stream/partition/fields/agent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
ignore_above: 1024
description: Instance ID of the host machine.
example: i-1234567890abcdef0
dimension: true
- name: instance.name
level: extended
type: keyword
Expand All @@ -42,6 +43,7 @@
ignore_above: 1024
description: Name of the cloud provider. Example values are aws, azure, gcp, or digitalocean.
example: aws
dimension: true
- name: region
level: extended
type: keyword
Expand All @@ -51,6 +53,7 @@
- name: project.id
type: keyword
description: Name of the project in Google Cloud.
dimension: true
- name: image.id
type: keyword
description: Image ID for the cloud instance.
Expand All @@ -67,6 +70,7 @@
type: keyword
ignore_above: 1024
description: Unique container id.
dimension: true
- name: image.name
level: extended
type: keyword
Expand Down Expand Up @@ -134,6 +138,7 @@
level: core
type: keyword
ignore_above: 1024
dimension: true
description: 'Name of the host.

It can contain what `hostname` returns on Unix systems, the fully qualified domain name, or a name specified by the user. The sender decides which value to use.'
Expand Down Expand Up @@ -196,3 +201,11 @@
description: >
OS codename, if any.

- name: agent
title: Agent
type: group
fields:
- name: id
type: keyword
ignore_above: 1024
dimension: true
1 change: 1 addition & 0 deletions packages/kafka/data_stream/partition/fields/ecs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name: ecs.version
- external: ecs
name: service.address
dimension: true
- external: ecs
name: service.type
- external: ecs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,14 @@
Broker id
- name: address
type: keyword
#Reason to add as dimension field: Multiple brokers may exist in a Kafka cluster.
dimension: true
description: |
Broker advertised address
- name: topic.name
type: keyword
#Reason to add as dimension field: Multiple values of topics exist.
dimension: true
description: |
Topic name
- name: topic.error.code
Expand All @@ -26,7 +30,11 @@
Partition id.
- name: partition.topic_id
type: keyword
#Reason to add as dimension field: Multiple records exist for the same kafka.partition.id, kafka.topic.name. Observed kafka.partition.topic_id is formed by combining kafka.partition.id with kafka.topic.name.
dimension: true
description: Unique id of the partition in the topic.
- name: partition.topic_broker_id
type: keyword
#Reason to add as dimension field: For future use.
dimension: true
description: Unique id of the partition in the topic and the broker.
1 change: 1 addition & 0 deletions packages/kafka/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,7 @@ An example event for `partition` looks as following:
| Field | Description | Type | Metric Type |
|---|---|---|---|
| @timestamp | Event timestamp. | date | |
| agent.id | | keyword | |
| cloud.account.id | The cloud account or organization id used to identify different entities in a multi-tenant environment. Examples: AWS account id, Google Cloud ORG Id, or other unique identifier. | keyword | |
| cloud.availability_zone | Availability zone in which this host is running. | keyword | |
| cloud.image.id | Image ID for the cloud instance. | keyword | |
Expand Down
2 changes: 1 addition & 1 deletion packages/kafka/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: 1.0.0
name: kafka
title: Kafka
version: 1.5.4
version: 1.5.5
license: basic
description: Collect logs and metrics from Kafka servers with Elastic Agent.
type: integration
Expand Down