-
Notifications
You must be signed in to change notification settings - Fork 282
JsonReport & Postloader (yandextank 1.9.2)
fomars edited this page Sep 20, 2017
·
1 revision
When enabled (enabled by default in core/config/00-base.yaml) it saves aggregated test results and monitoring data locally in JSON format (although they have .log extension by default) in test's artefacts dir. You can overwrite those files' names in tank's configuration file, although it is not recommended to do so if you're usung our Postloader (see below)
# load.ini
...
[json_report]:
monitoring_log=my_monitoring.json
test_data_log=my_test_data.json
...
# load.yaml
...
json_report:
monitoring_log: my_monitoring.json
test_data_log: my_test_data.json
...
Allows to download the results of completed test to overload.yandex.net if that test was launched with JsonReport enabled. Basic usage:
$ tank-postloader ./$TEST_DIR
- assuming that you have DataUploader plugin configured in the saved_conf.yaml
file in $TEST_DIR
.
Additionally, you can specify a special config and/or overwrite certain options - get more info with:
$ tank-postloader --help