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

Add skip_major option to docker/diskio #3254

Merged
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
6 changes: 5 additions & 1 deletion packages/docker/changelog.yml
@@ -1,5 +1,9 @@
# newer versions go on top

- version: "2.2.0"
changes:
- description: Add skip_major flag
type: bugfix
link: http://github.com/elastic/integrations/pull/3254
- version: "2.1.1"
changes:
- description: Fix missing dedot options
Expand Down
Expand Up @@ -4,4 +4,10 @@ hosts:
- {{this}}
{{/each}}
period: {{period}}
labels.dedot: {{labels.dedot}}
labels.dedot: {{labels.dedot}}
{{#if skip_major}}
fearful-symmetry marked this conversation as resolved.
Show resolved Hide resolved
skip_major:
{{#each skip_major}}
- {{this}}
{{/each}}
{{/if}}
7 changes: 7 additions & 0 deletions packages/docker/data_stream/diskio/manifest.yml
Expand Up @@ -18,6 +18,13 @@ streams:
required: true
show_user: true
default: 10s
- name: skip_major
type: text
title: Skip major device numbers in disk usage calculations
multi: true
required: false
show_user: true
default: [9, 253]
- name: labels.dedot
type: bool
title: De-Dot labels
Expand Down
4 changes: 2 additions & 2 deletions packages/docker/manifest.yml
@@ -1,6 +1,6 @@
name: docker
title: Docker Metrics
version: 2.1.1
version: 2.2.0
release: ga
description: Collect metrics from Docker instances with Elastic Agent.
type: integration
Expand All @@ -20,7 +20,7 @@ categories:
- containers
- os_system
conditions:
kibana.version: ^8.0.0
kibana.version: ^8.2.0
policy_templates:
- name: docker
title: Docker metrics
Expand Down