File tree 3 files changed +20
-0
lines changed
test/packages/good_v3/data_stream/foo
3 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 7
7
- description : Using non-GA versions of the spec in GA packages produces a filterable validation error instead of a warning
8
8
type : enhancement
9
9
link : https://github.com/elastic/package-spec/pull/627
10
+ - description : ' Allow to set index: false in dynamic templates defined in data stream manifests'
11
+ type : enhancement
12
+ link : https://github.com/elastic/package-spec/issues/650
10
13
- version : 3.0.0
11
14
changes :
12
15
- description : Validate processors used in ingest pipelines
Original file line number Diff line number Diff line change @@ -300,6 +300,8 @@ spec:
300
300
$ref : " ./fields/fields.spec.yml#/items/properties/default_metric"
301
301
ignore_above :
302
302
$ref : " ./fields/fields.spec.yml#/items/properties/ignore_above"
303
+ index :
304
+ $ref : " ./fields/fields.spec.yml#/items/properties/index"
303
305
patternProperties :
304
306
# Exception for fields imported by elastic-package when import_mappings is used.
305
307
# TODO: Allow this only on built packages.
Original file line number Diff line number Diff line change @@ -58,6 +58,21 @@ elasticsearch:
58
58
number_of_shards : 1
59
59
mappings :
60
60
dynamic : strict
61
+ dynamic_templates :
62
+ - histogram :
63
+ mapping :
64
+ type : histogram
65
+ - summary :
66
+ mapping :
67
+ type : aggregate_metric_double
68
+ metrics :
69
+ - sum
70
+ - value_count
71
+ default_metric : value_count
72
+ - double :
73
+ mapping :
74
+ type : double
75
+ index : false
61
76
ingest_pipeline :
62
77
name : foobar
63
78
privileges :
You can’t perform that action at this time.
0 commit comments