File tree Expand file tree Collapse file tree
test/packages/good_v3/data_stream/foo Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 - description : Using non-GA versions of the spec in GA packages produces a filterable validation error instead of a warning
88 type : enhancement
99 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
1013- version : 3.0.0
1114 changes :
1215 - description : Validate processors used in ingest pipelines
Original file line number Diff line number Diff line change @@ -300,6 +300,8 @@ spec:
300300 $ref : " ./fields/fields.spec.yml#/items/properties/default_metric"
301301 ignore_above :
302302 $ref : " ./fields/fields.spec.yml#/items/properties/ignore_above"
303+ index :
304+ $ref : " ./fields/fields.spec.yml#/items/properties/index"
303305 patternProperties :
304306 # Exception for fields imported by elastic-package when import_mappings is used.
305307 # TODO: Allow this only on built packages.
Original file line number Diff line number Diff line change @@ -58,6 +58,21 @@ elasticsearch:
5858 number_of_shards : 1
5959 mappings :
6060 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
6176 ingest_pipeline :
6277 name : foobar
6378 privileges :
You can’t perform that action at this time.
0 commit comments