Skip to content
Open
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/aws_cloudwatch_input_otel/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "0.3.1"
changes:
- description: Update default collection period and stats.
type: enhancement
link: https://github.com/elastic/integrations/pull/19665
- version: "0.3.0"
changes:
- description: Add support for region specific to a service.
Expand Down
29 changes: 16 additions & 13 deletions packages/aws_cloudwatch_input_otel/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: 3.5.0
name: aws_cloudwatch_input_otel
title: "AWS CloudWatch OpenTelemetry Input Package"
version: 0.3.0
version: 0.3.1
source:
license: "Elastic-2.0"
description: "Collect AWS CloudWatch metrics for selected AWS services (EC2, RDS, SQS, ELB, Lambda, Fargate) using the OpenTelemetry Collector awscloudwatchmetrics receiver."
Expand Down Expand Up @@ -118,7 +118,7 @@ policy_templates:
type: duration
title: Delay
description: How far back from now each scrape's query window ends. Increase if metrics arrive late from CloudWatch.
default: 15m
default: 5m
required: false
show_user: false
# required: true to fetch metrics appropriately as the metrics only needed is fetched.
Expand All @@ -130,6 +130,7 @@ policy_templates:
default:
- Average
- Sum
- Maximum
required: true
show_user: false

Expand Down Expand Up @@ -159,21 +160,21 @@ policy_templates:
type: duration
title: Collection Interval
description: How often the receiver polls CloudWatch.
default: 5m
default: 1m
required: false
show_user: false
- name: period
type: duration
title: Period
description: CloudWatch aggregation window. Must match the metric resolution.
default: 5m
default: 1m
required: false
show_user: true
- name: delay
type: duration
title: Delay
description: How far back from now each scrape's query window ends. Increase if metrics arrive late from CloudWatch.
default: 10m
default: 5m
required: false
show_user: false
- name: autodiscover_aggregation
Expand Down Expand Up @@ -228,7 +229,7 @@ policy_templates:
type: duration
title: Delay
description: How far back from now each scrape's query window ends. Increase if metrics arrive late from CloudWatch.
default: 10m
default: 5m
required: false
show_user: false
- name: autodiscover_aggregation
Expand All @@ -238,6 +239,7 @@ policy_templates:
description: CloudWatch statistics applied to every discovered metric for this namespace.
default:
- Average
- Maximum
required: true
show_user: false

Expand Down Expand Up @@ -267,21 +269,21 @@ policy_templates:
type: duration
title: Collection Interval
description: How often the receiver polls CloudWatch.
default: 5m
default: 1m
required: false
show_user: false
- name: period
type: duration
title: Period
description: CloudWatch aggregation window. Must match the metric resolution.
default: 5m
default: 1m
required: false
show_user: true
- name: delay
type: duration
title: Delay
description: How far back from now each scrape's query window ends. Increase if metrics arrive late from CloudWatch.
default: 10m
default: 5m
required: false
show_user: false
- name: autodiscover_aggregation
Expand All @@ -291,7 +293,6 @@ policy_templates:
description: CloudWatch statistics applied to every discovered metric for this namespace.
default:
- Maximum
- Average
- Sum
required: true
show_user: false
Expand Down Expand Up @@ -377,21 +378,21 @@ policy_templates:
type: duration
title: Collection Interval
description: How often the receiver polls CloudWatch.
default: 5m
default: 1m
required: false
show_user: false
- name: period
type: duration
title: Period
description: CloudWatch aggregation window. Must match the metric resolution.
default: 5m
default: 1m
required: false
show_user: true
- name: delay
type: duration
title: Delay
description: How far back from now each scrape's query window ends. Increase if metrics arrive late from CloudWatch.
default: 10m
default: 5m
required: false
show_user: false
- name: autodiscover_aggregation
Expand All @@ -401,6 +402,8 @@ policy_templates:
description: CloudWatch statistics applied to every discovered metric for this namespace.
default:
- Average
- Maximum
- Sum
required: true
show_user: false

Expand Down
Loading