diff --git a/docs/changelog/125048.yaml b/docs/changelog/125048.yaml new file mode 100644 index 0000000000000..499ee97b85236 --- /dev/null +++ b/docs/changelog/125048.yaml @@ -0,0 +1,6 @@ +pr: 125048 +summary: Removing incorrect use of `constant_keyword` field type from deprecation + logger mapping +area: Infra/Logging +type: bug +issues: [] diff --git a/x-pack/plugin/core/template-resources/src/main/resources/deprecation/deprecation-indexing-mappings.json b/x-pack/plugin/core/template-resources/src/main/resources/deprecation/deprecation-indexing-mappings.json index cdbceb14c7a40..fd724a81e1e47 100644 --- a/x-pack/plugin/core/template-resources/src/main/resources/deprecation/deprecation-indexing-mappings.json +++ b/x-pack/plugin/core/template-resources/src/main/resources/deprecation/deprecation-indexing-mappings.json @@ -20,14 +20,13 @@ "data_stream": { "properties": { "type": { - "type": "constant_keyword", - "value": "logs" + "type": "keyword" }, "dataset": { - "type": "constant_keyword" + "type": "keyword" }, "namespace": { - "type": "constant_keyword" + "type": "keyword" } } },