File tree Expand file tree Collapse file tree
integration/_dev/benchmark
test/packages/integration_benchmarks/_dev/benchmark 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 : Remove deprecated `corpora.generator.size` in favour of `corpora.generator.total_events`
11+ type : breaking-change
12+ link : https://github.com/elastic/package-spec/pull/639
1013 - description : Allow to define limits of nested and total number of fields.
1114 type : enhancement
1215 link : https://github.com/elastic/package-spec/pull/641
Original file line number Diff line number Diff line change @@ -65,17 +65,12 @@ spec:
6565 type : object
6666 additionalProperties : false
6767 required :
68- - size
68+ - total_events
6969 - template
7070 - config
7171 - fields
7272 properties :
73- size :
74- description : A string describing the amount of data to generate.
75- type : string
76- example : 10MiB
77- deprecated : true # as for https://github.com/elastic/elastic-integration-corpus-generator-tool/pull/94
78- tot_events :
73+ total_events :
7974 description : An integer describing the total number of events to generate.
8075 type : integer
8176 example : 1000
Original file line number Diff line number Diff line change 22description : Benchmark 20MiB of data ingested
33data_stream.name : test
44warmup_time_period : 10s
5- corpora.generator.size : 20MiB
5+ corpora.generator.total_events : 20000
66corpora.generator.template.raw : ' {"@timestamp": "2016-12-07T10:04:37.000Z", "message": "a message"}'
77corpora.generator.config.path : ./20mb-track/config.yml
88corpora.generator.fields.path : ./20mb-track/fields.yml
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ data_stream.dataset: test
66data_stream.vars.paths :
77 - " {{SERVICE_LOGS_DIR}}/corpus-*"
88warmup_time_period : 10s
9- corpora.generator.size : 20MiB
9+ corpora.generator.total_events : 20000
1010corpora.generator.template.raw : a template
1111corpora.generator.config.path : ./tcp-benchmark/config.yml
1212corpora.generator.fields.path : ./tcp-benchmark/fields.yml
You can’t perform that action at this time.
0 commit comments