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

[Kubernetes][Dashboards] Fix missing sort field on proxy and scheduler dashboards #6221

Merged
merged 8 commits into from
May 17, 2023
Merged
Show file tree
Hide file tree
Changes from 6 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/kubernetes/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: "1.40.1-beta"
constanca-m marked this conversation as resolved.
Show resolved Hide resolved
changes:
- description: Fix proxy and scheduler visualization with missing sort field.
type: bugfix
link: https://github.com/elastic/integrations/pull/6221
- version: "1.40.0-beta"
changes:
- description: Enable TSDS for metrics data_streams, except events for beta testing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1581,23 +1581,31 @@
"43097f7a-e478-47bc-81c1-7541bd899d46X0": {
"customLabel": true,
"dataType": "number",
"filter": {
"language": "kuery",
"query": "kubernetes.proxy.client.request.duration.us.sum: *"
},
"isBucketed": false,
"label": "Part of Average latency s",
"operationType": "last_value",
"params": {
"emptyAsNull": false
"sortField": "@timestamp"
},
"scale": "ratio",
"sourceField": "kubernetes.proxy.client.request.duration.us.sum"
},
"43097f7a-e478-47bc-81c1-7541bd899d46X1": {
"customLabel": true,
"dataType": "number",
"filter": {
"language": "kuery",
"query": "kubernetes.proxy.client.request.duration.us.count: *"
},
"isBucketed": false,
"label": "Part of Average latency s",
"operationType": "last_value",
"params": {
"emptyAsNull": false
"sortField": "@timestamp"
},
"scale": "ratio",
"sourceField": "kubernetes.proxy.client.request.duration.us.count"
Expand All @@ -1622,7 +1630,7 @@
1000
],
"location": {
"max": 112,
"max": 126,
"min": 0
},
"name": "divide",
Expand Down Expand Up @@ -2503,4 +2511,4 @@
"type": "dashboard",
"updated_at": "2023-01-11T16:15:13.706Z",
"version": "WzM1MDAsMV0="
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -341,9 +341,6 @@
"type": "lens",
"version": "8.6.0"
},



{
"embeddableConfig": {
"attributes": {
Expand Down Expand Up @@ -3345,23 +3342,31 @@
"43097f7a-e478-47bc-81c1-7541bd899d46X0": {
"customLabel": true,
"dataType": "number",
"filter": {
"language": "kuery",
"query": "kubernetes.scheduler.client.request.duration.us.sum: *"
},
"isBucketed": false,
"label": "Part of Average latency in ms",
"operationType": "last_value",
"params": {
"emptyAsNull": false
"sortField": "@timestamp"
},
"scale": "ratio",
"sourceField": "kubernetes.scheduler.client.request.duration.us.sum"
},
"43097f7a-e478-47bc-81c1-7541bd899d46X1": {
"customLabel": true,
"dataType": "number",
"filter": {
"language": "kuery",
"query": "kubernetes.scheduler.client.request.duration.us.count: *"
},
"isBucketed": false,
"label": "Part of Average latency in ms",
"operationType": "last_value",
"params": {
"emptyAsNull": false
"sortField": "@timestamp"
},
"scale": "ratio",
"sourceField": "kubernetes.scheduler.client.request.duration.us.count"
Expand All @@ -3386,7 +3391,7 @@
1000
],
"location": {
"max": 120,
"max": 134,
"min": 0
},
"name": "divide",
Expand Down Expand Up @@ -3658,4 +3663,4 @@
"type": "dashboard",
"updated_at": "2023-01-11T16:15:10.039Z",
"version": "WzM0NzYsMV0="
}
}
2 changes: 1 addition & 1 deletion packages/kubernetes/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
format_version: 1.0.0
name: kubernetes
title: Kubernetes
version: 1.40.0-beta
version: 1.40.1-beta
license: basic
description: Collect logs and metrics from Kubernetes clusters with Elastic Agent (TSDB Beta).
type: integration
Expand Down