Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

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.43.0"
changes:
- description: Expand index pattern for adHocDataviews for CCS use case
type: enhancement
link: https://github.com/elastic/integrations/pull/6603
- version: "1.42.0"
changes:
- description: Add permissions to reroute events to logs-*-* for container_logs datastream
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,4 @@ streams:
default: ""
# Ensures agents have permissions to write data to `logs-*-*`
elasticsearch.dynamic_dataset: true
elasticsearch.dynamic_namespace: true
elasticsearch.dynamic_namespace: true
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
},
"sourceFilters": [],
"timeFieldName": "@timestamp",
"title": "metrics-*"
"title": "*metrics-*"
},
"31c14ad9-51fd-465c-957c-b0171c23a0bb": {
"allowNoIndex": false,
Expand All @@ -168,7 +168,7 @@
},
"sourceFilters": [],
"timeFieldName": "@timestamp",
"title": "metrics-*"
"title": "*metrics-*"
},
"b0224778-49e2-4916-aa97-55d3b4ddf6c1": {
"allowNoIndex": false,
Expand All @@ -192,7 +192,7 @@
},
"sourceFilters": [],
"timeFieldName": "@timestamp",
"title": "metrics-*"
"title": "*metrics-*"
},
"d1e9a0d9-4696-43cb-b9f1-a4b0b9fe3732": {
"allowNoIndex": false,
Expand All @@ -216,7 +216,7 @@
},
"sourceFilters": [],
"timeFieldName": "@timestamp",
"title": "metrics-*"
"title": "*metrics-*"
},
"f8fa576a-6f91-4a11-a43d-7f3964869d7d": {
"allowNoIndex": false,
Expand All @@ -227,7 +227,7 @@
"runtimeFieldMap": {},
"sourceFilters": [],
"timeFieldName": "@timestamp",
"title": "metrics-*"
"title": "*metrics-*"

@herrBez herrBez Jul 5, 2023

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi there,
I think it should be actually metrics-*,*:metrics-* otherwise you are only checking in the local cluster (not performing CCS) and you are looking for indices that starts with metics locally e.g., foometrics would also be checked (which does not really make sense).

Something similar have been used here elastic/kibana#161016

}
},
"datasourceStates": {
Expand Down Expand Up @@ -1190,7 +1190,7 @@
},
"sourceFilters": [],
"timeFieldName": "@timestamp",
"title": "metrics-*"
"title": "*metrics-*"
},
"295ecdc5-f413-4f20-9f77-74927a10d33d": {
"allowNoIndex": false,
Expand All @@ -1214,7 +1214,7 @@
},
"sourceFilters": [],
"timeFieldName": "@timestamp",
"title": "metrics-*"
"title": "*metrics-*"
},
"f8fa576a-6f91-4a11-a43d-7f3964869d7d": {
"allowNoIndex": false,
Expand All @@ -1225,7 +1225,7 @@
"runtimeFieldMap": {},
"sourceFilters": [],
"timeFieldName": "@timestamp",
"title": "metrics-*"
"title": "*metrics-*"
}
},
"datasourceStates": {
Expand Down Expand Up @@ -1480,7 +1480,7 @@
},
"sourceFilters": [],
"timeFieldName": "@timestamp",
"title": "metrics-*"
"title": "*metrics-*"
},
"dbfaeb6f-4fff-4043-8bf8-19d5345fd339": {
"allowNoIndex": false,
Expand All @@ -1498,7 +1498,7 @@
},
"sourceFilters": [],
"timeFieldName": "@timestamp",
"title": "metrics-*"
"title": "*metrics-*"
},
"f8fa576a-6f91-4a11-a43d-7f3964869d7d": {
"allowNoIndex": false,
Expand All @@ -1509,7 +1509,7 @@
"runtimeFieldMap": {},
"sourceFilters": [],
"timeFieldName": "@timestamp",
"title": "metrics-*"
"title": "*metrics-*"
}
},
"datasourceStates": {
Expand Down Expand Up @@ -1942,7 +1942,7 @@
},
"sourceFilters": [],
"timeFieldName": "@timestamp",
"title": "metrics-*"
"title": "*metrics-*"
}
},
"datasourceStates": {
Expand Down Expand Up @@ -2231,7 +2231,7 @@
},
"sourceFilters": [],
"timeFieldName": "@timestamp",
"title": "metrics-*"
"title": "*metrics-*"
},
"0fa53a1e-0589-4380-b700-70dd489a33de": {
"allowNoIndex": false,
Expand Down Expand Up @@ -2273,7 +2273,7 @@
},
"sourceFilters": [],
"timeFieldName": "@timestamp",
"title": "metrics-*"
"title": "*metrics-*"
},
"34c15200-5232-4a16-8fb0-36ca5a194638": {
"allowNoIndex": false,
Expand All @@ -2297,7 +2297,7 @@
},
"sourceFilters": [],
"timeFieldName": "@timestamp",
"title": "metrics-*"
"title": "*metrics-*"
},
"f8fa576a-6f91-4a11-a43d-7f3964869d7d": {
"allowNoIndex": false,
Expand All @@ -2308,7 +2308,7 @@
"runtimeFieldMap": {},
"sourceFilters": [],
"timeFieldName": "@timestamp",
"title": "metrics-*"
"title": "*metrics-*"
}
},
"datasourceStates": {
Expand Down
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.42.0
version: 1.43.0
license: basic
description: Collect logs and metrics from Kubernetes clusters with Elastic Agent.
type: integration
Expand Down