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

[IIS] Add dimension field mapping for application_pool datastream to … #6460

Merged
merged 2 commits into from Jun 14, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/iis/changelog.yml
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.12.0"
changes:
- description: Add dimension field mapping for application_pool datastream to support tsdb.
type: enhancement
link: https://github.com/elastic/integrations/pull/6460
- version: "1.11.0"
changes:
- description: Rename ownership from obs-service-integrations to obs-infraobs-integrations
Expand Down
15 changes: 15 additions & 0 deletions packages/iis/data_stream/application_pool/fields/agent.yml
Expand Up @@ -8,6 +8,7 @@
- name: account.id
level: extended
type: keyword
dimension: true
ignore_above: 1024
description: 'The cloud account or organization id used to identify different entities in a multi-tenant environment.

Expand All @@ -16,12 +17,14 @@
- name: availability_zone
level: extended
type: keyword
dimension: true
ignore_above: 1024
description: Availability zone in which this host is running.
example: us-east-1c
- name: instance.id
level: extended
type: keyword
dimension: true
ignore_above: 1024
description: Instance ID of the host machine.
example: i-1234567890abcdef0
Expand All @@ -39,12 +42,14 @@
- name: provider
level: extended
type: keyword
dimension: true
ignore_above: 1024
description: Name of the cloud provider. Example values are aws, azure, gcp, or digitalocean.
example: aws
- name: region
level: extended
type: keyword
dimension: true
ignore_above: 1024
description: Region in which this host is running.
example: us-east-1
Expand All @@ -65,6 +70,7 @@
- name: id
level: core
type: keyword
dimension: true
ignore_above: 1024
description: Unique container id.
- name: image.name
Expand Down Expand Up @@ -133,6 +139,7 @@
- name: name
level: core
type: keyword
dimension: true
ignore_above: 1024
description: 'Name of the host.

Expand Down Expand Up @@ -196,3 +203,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/iis/data_stream/application_pool/fields/ecs.yml
Expand Up @@ -2,5 +2,6 @@
name: ecs.version
- external: ecs
name: service.address
dimension: true
- external: ecs
name: service.type
Expand Up @@ -3,6 +3,7 @@
fields:
- name: name
type: keyword
dimension: true
description: |
application pool name
- name: process
Expand Down
1 change: 1 addition & 0 deletions packages/iis/docs/README.md
Expand Up @@ -368,6 +368,7 @@ The fields reported are:
| Field | Description | Type | Unit | 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/iis/manifest.yml
@@ -1,6 +1,6 @@
name: iis
title: IIS
version: "1.11.0"
version: "1.12.0"
description: Collect logs and metrics from Internet Information Services (IIS) servers with Elastic Agent.
type: integration
icons:
Expand Down