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 Fargate] Remove sum of counters in dashboard #6997

Merged
merged 2 commits into from
Jul 18, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/awsfargate/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: 0.2.5
changes:
- description: Update DiskIO Write and Read visualizations to use last_value instead of average.
type: enhancement
link: https://github.com/elastic/integrations/pull/6997
- version: 0.2.4
changes:
- description: Migrate AWS Fargate input control to new control panel.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -743,11 +743,6 @@
"attributes": {
"description": "",
"references": [
{
"id": "metrics-*",
"name": "indexpattern-datasource-current-indexpattern",
"type": "index-pattern"
},
{
"id": "metrics-*",
"name": "indexpattern-datasource-layer-c8d70f88-6554-41ca-ac1e-a3cf8b992972",
Expand Down Expand Up @@ -801,14 +796,15 @@
"dataType": "number",
"isBucketed": false,
"label": "DiskIO Read",
"operationType": "average",
"operationType": "last_value",
"params": {
"format": {
"id": "bytes",
"params": {
"decimals": 2
}
}
},
"sortField": "@timestamp"
},
"scale": "ratio",
"sourceField": "awsfargate.task_stats.diskio.read.bytes"
Expand Down Expand Up @@ -863,6 +859,7 @@
}
},
"title": "DiskIO Read [Metrics AWSFargate]",
"type": "lens",
"visualizationType": "lnsXY"
},
"enhancements": {},
Expand All @@ -885,11 +882,6 @@
"attributes": {
"description": "",
"references": [
{
"id": "metrics-*",
"name": "indexpattern-datasource-current-indexpattern",
"type": "index-pattern"
},
{
"id": "metrics-*",
"name": "indexpattern-datasource-layer-c8d70f88-6554-41ca-ac1e-a3cf8b992972",
Expand Down Expand Up @@ -943,14 +935,15 @@
"dataType": "number",
"isBucketed": false,
"label": "DiskIO Write",
"operationType": "average",
"operationType": "last_value",
"params": {
"format": {
"id": "bytes",
"params": {
"decimals": 2
}
}
},
"sortField": "@timestamp"
},
"scale": "ratio",
"sourceField": "awsfargate.task_stats.diskio.write.bytes"
Expand Down Expand Up @@ -1005,6 +998,7 @@
}
},
"title": "DiskIO Write [Metrics AWSFargate]",
"type": "lens",
"visualizationType": "lnsXY"
},
"enhancements": {},
Expand Down Expand Up @@ -1083,21 +1077,11 @@
"name": "a7a6e425-98fd-4210-b3d5-005268be6274:indexpattern-datasource-layer-0749cbce-4a88-471d-9715-9f4f54510864",
"type": "index-pattern"
},
{
"id": "metrics-*",
"name": "d7a6623a-14cf-411c-ab73-ded3734a359b:indexpattern-datasource-current-indexpattern",
"type": "index-pattern"
},
{
"id": "metrics-*",
"name": "d7a6623a-14cf-411c-ab73-ded3734a359b:indexpattern-datasource-layer-c8d70f88-6554-41ca-ac1e-a3cf8b992972",
"type": "index-pattern"
},
{
"id": "metrics-*",
"name": "89b0cd8b-13d9-4a43-8f93-3410aff125c3:indexpattern-datasource-current-indexpattern",
"type": "index-pattern"
},
{
"id": "metrics-*",
"name": "89b0cd8b-13d9-4a43-8f93-3410aff125c3:indexpattern-datasource-layer-c8d70f88-6554-41ca-ac1e-a3cf8b992972",
Expand Down
2 changes: 1 addition & 1 deletion packages/awsfargate/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: 1.0.0
name: awsfargate
title: AWS Fargate
version: 0.2.4
version: 0.2.5
license: basic
description: Collects metrics from containers and tasks running on Amazon ECS clusters with Elastic Agent.
type: integration
Expand Down