Skip to content

Commit 930c5d4

Browse files
authored
Adding space_id field mapping to kibana reporting template (#128336)
* Adding space id to report template * Incrementing stack template registry version
1 parent 27a557b commit 930c5d4

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/[email protected]

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
@@ -38,7 +38,7 @@ public class StackTemplateRegistry extends IndexTemplateRegistry {
3838

3939
// The stack template registry version. This number must be incremented when we make changes
4040
// to built-in templates.
41-
public static final int REGISTRY_VERSION = 14;
41+
public static final int REGISTRY_VERSION = 15;
4242

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

0 commit comments

Comments
 (0)