Skip to content

Commit b82d55a

Browse files
authored
Adding space_id field mapping to kibana reporting template (#128336) (#129061)
* Adding space id to report template * Incrementing stack template registry version
1 parent b66fb26 commit b82d55a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

x-pack/plugin/core/template-resources/src/main/resources/kibana-reporting@template.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,9 @@
8282
"status": {
8383
"type": "keyword"
8484
},
85+
"space_id": {
86+
"type": "keyword"
87+
},
8588
"parent_id": {
8689
"type": "keyword"
8790
},

x-pack/plugin/stack/src/main/java/org/elasticsearch/xpack/stack/StackTemplateRegistry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public class StackTemplateRegistry extends IndexTemplateRegistry {
4747

4848
// The stack template registry version. This number must be incremented when we make changes
4949
// to built-in templates.
50-
public static final int REGISTRY_VERSION = 14;
50+
public static final int REGISTRY_VERSION = 15;
5151

5252
public static final String TEMPLATE_VERSION_VARIABLE = "xpack.stack.template.version";
5353
public static final Setting<Boolean> STACK_TEMPLATES_ENABLED = Setting.boolSetting(

0 commit comments

Comments
 (0)