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/kubernetes_otel/changelog.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# newer versions go on top
- version: 2.2.0-preview3
changes:
- description: Improvements to the Node, Node detail and Namespaces dashboards.
type: enhancement
link: https://github.com/elastic/integrations/pull/19664
- version: 2.2.0-preview2
changes:
- description: Add ML anomaly detection module for workload memory and Kubernetes Warning events.
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -1777,7 +1777,7 @@
],
"index": "84f6ce3ff5709eed7dd3934d32b8aae90586b3a31f0765f56763d26f57372fa6",
"query": {
"esql": "FROM metrics-k8sclusterreceiver.otel-*\n | WHERE k8s.node.name IS NOT NULL AND k8s.node.name != \"\"\n AND k8s.pod.uid IS NOT NULL\n | STATS pod_count = COUNT_DISTINCT(k8s.pod.uid)\n BY @timestamp = BUCKET(@timestamp, 50, ?_tstart, ?_tend)\n| SORT @timestamp\n | KEEP @timestamp, pod_count"
"esql": "FROM metrics-k8sclusterreceiver.otel-*\n | WHERE k8s.node.name IS NOT NULL AND k8s.node.name != \"\"\n AND k8s.pod.uid IS NOT NULL\n | STATS last_seen = MAX(@timestamp)\n BY k8s.pod.uid, @timestamp = BUCKET(@timestamp, 50, ?_tstart, ?_tend)\n | STATS pod_count = COUNT(*) BY @timestamp\n| SORT @timestamp\n | KEEP @timestamp, pod_count"
},
"timeField": "@timestamp"
}
Expand All @@ -1787,7 +1787,7 @@
"filters": [],
"needsRefresh": false,
"query": {
"esql": "FROM metrics-k8sclusterreceiver.otel-*\n | WHERE k8s.node.name IS NOT NULL AND k8s.node.name != \"\"\n AND k8s.pod.uid IS NOT NULL\n | STATS pod_count = COUNT_DISTINCT(k8s.pod.uid)\n BY @timestamp = BUCKET(@timestamp, 50, ?_tstart, ?_tend)\n| SORT @timestamp\n | KEEP @timestamp, pod_count"
"esql": "FROM metrics-k8sclusterreceiver.otel-*\n | WHERE k8s.node.name IS NOT NULL AND k8s.node.name != \"\"\n AND k8s.pod.uid IS NOT NULL\n | STATS last_seen = MAX(@timestamp)\n BY k8s.pod.uid, @timestamp = BUCKET(@timestamp, 50, ?_tstart, ?_tend)\n | STATS pod_count = COUNT(*) BY @timestamp\n| SORT @timestamp\n | KEEP @timestamp, pod_count"
},
"visualization": {
"axisTitlesVisibilitySettings": {
Expand Down
Loading
Loading