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

[AWS] [API Gateway] Fix aggregation types for metrics dashboard #7675

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
5 changes: 5 additions & 0 deletions packages/aws/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "2.1.2"
changes:
- description: Fix AWS API Gateway metrics dashboard
type: bugfix
link: https://github.com/elastic/integrations/pull/7675
- version: "2.1.1"
changes:
- description: Improve AWS API Gateway dashboard
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
"11242c77-c1e8-482f-a8ab-d14342367450": {
"dataType": "number",
"isBucketed": false,
"label": "Count of aws.apigateway.metrics.Count.sum",
"operationType": "count",
"label": "Sum of aws.apigateway.metrics.Count.sum",
"operationType": "sum",
"params": {
"emptyAsNull": true
},
Expand Down Expand Up @@ -336,8 +336,8 @@
"90c328ce-f5c8-48a0-8545-57ea1ec6d7fe": {
"dataType": "number",
"isBucketed": false,
"label": "Median of aws.apigateway.metrics.5XXError.sum",
"operationType": "median",
"label": "Sum of aws.apigateway.metrics.5XXError.sum",
"operationType": "sum",
"params": {
"emptyAsNull": true
},
Expand Down Expand Up @@ -1013,8 +1013,8 @@
"11242c77-c1e8-482f-a8ab-d14342367450": {
"dataType": "number",
"isBucketed": false,
"label": "Count of aws.apigateway.metrics.Count.sum",
"operationType": "count",
"label": "Sum of aws.apigateway.metrics.Count.sum",
"operationType": "sum",
"params": {
"emptyAsNull": true
},
Expand Down Expand Up @@ -1607,8 +1607,8 @@
"cd10361b-ce2e-454c-8612-6be186ffefac": {
"dataType": "number",
"isBucketed": false,
"label": "Median of aws.apigateway.metrics.4xx.sum",
"operationType": "median",
"label": "Sum of aws.apigateway.metrics.4xx.sum",
"operationType": "sum",
"params": {
"emptyAsNull": true
},
Expand Down Expand Up @@ -1705,8 +1705,8 @@
"53bb15bf-1d19-4aaa-be68-5015b194e60b": {
"dataType": "number",
"isBucketed": false,
"label": "Median of aws.apigateway.metrics.5xx.sum",
"operationType": "median",
"label": "Sum of aws.apigateway.metrics.5xx.sum",
"operationType": "sum",
"params": {
"emptyAsNull": true
},
Expand Down
2 changes: 1 addition & 1 deletion packages/aws/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: 1.0.0
name: aws
title: AWS
version: 2.1.1
version: 2.1.2
license: basic
description: Collect logs and metrics from Amazon Web Services (AWS) with Elastic Agent.
type: integration
Expand Down