Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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/windows/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "3.2.0"
changes:
- description: Add match_by_parent_instance option to windows perfmon datastream.
type: enhancement
link: https://github.com/elastic/integrations/pull/15763
- version: "3.1.2"
changes:
- description: Remove unused agent files.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ condition: ${host.platform} == 'windows'
perfmon.group_measurements_by_instance: {{perfmon.group_measurements_by_instance}}
perfmon.ignore_non_existent_counters: {{perfmon.ignore_non_existent_counters}}
perfmon.refresh_wildcard_counters: {{perfmon.refresh_wildcard_counters}}
perfmon.match_by_parent_instance: {{perfmon.match_by_parent_instance}}
perfmon.queries: {{perfmon.queries}}
period: {{period}}
{{#if processors}}
Expand Down
8 changes: 8 additions & 0 deletions packages/windows/data_stream/perfmon/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ streams:
show_user: true
default: false
description: Enabling this option will cause the counter list to be retrieved after each fetch, rather than once at start time.
- name: perfmon.match_by_parent_instance
type: bool
title: Perfmon Match By Parent Instance
multi: false
required: false
show_user: true
default: true
description: Enabling this option will cause all instances of the same parent (process name) to have the same instance value. Disable this option if you run multiple processes with the same name (e.g. IIS workers).
- name: perfmon.queries
type: yaml
title: Perfmon Queries
Expand Down
2 changes: 1 addition & 1 deletion packages/windows/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: windows
title: Windows
version: 3.1.2
version: 3.2.0
description: Collect logs and metrics from Windows OS and services with Elastic Agent.
type: integration
categories:
Expand Down