2020-08-05 12:47:14 +00:00
|
|
|
**/target
|
2019-11-22 21:59:04 +00:00
|
|
|
**/*.rs.bk
|
2019-12-11 23:03:00 +00:00
|
|
|
.idea/
|
|
|
|
.env
|
2021-08-19 12:59:05 +00:00
|
|
|
.gdb_history
|
2020-06-02 11:17:20 +00:00
|
|
|
*.tsm
|
2021-02-23 21:30:41 +00:00
|
|
|
**/.DS_Store
|
2021-06-29 16:09:51 +00:00
|
|
|
**/.vscode
|
2022-08-08 12:04:06 +00:00
|
|
|
heaptrack.*
|
2021-09-02 13:37:28 +00:00
|
|
|
massif.out.*
|
2022-08-08 12:04:06 +00:00
|
|
|
perf.data*
|
|
|
|
perf.svg
|
|
|
|
perf.txt
|
2021-08-19 12:59:05 +00:00
|
|
|
valgrind-out.txt
|
2023-02-09 10:47:29 +00:00
|
|
|
*.pending-snap
|
feat: improved results directory structure for load generation (#24869)
* feat: add new clap args for results gen
Added the results_dir and configuration_name args
to the common load generator config which will be
used in generating the results directory structure.
* feat: load gen results directory structure
Write and query load generation runners will now setup files in a
results directory, using a specific structure. Users of the load tool
can specify a `results_dir` to save these results, or the tool will
pick a `results` folder in the current directory, by default.
Results will be saved in files using the following path convention:
results/<s>/<c>/<write|query|system>_<time>.csv
- <s>: spec name
- <c>: configuration name, specified by user with the `config-name`
arg, or by default, will use the revision SHA of the running server
- <write|query|system>: which kind of results file
- <time>: a timestamp in the form 'YYYY-MM-DD-HH-MM'
The setup code was unified for both write and query commands, in
preparation for the creation of a system stats file, as well as for
the capability to run both query and write at the same time, however,
those remain unimplemented as of this commit.
* feat: /ping API support on influxdb3_client::Client
2024-04-02 18:06:51 +00:00
|
|
|
results/
|