summaryrefslogtreecommitdiff
path: root/client/benchmarks/runner.py
AgeCommit message (Collapse)Author
2018-08-12Upload test results to from client to web serverMark Wong
2018-07-18Save postgres branch, commit, and settings in results jsonMark Wong
2018-02-04Move results directory check to start of clientMark Wong
Between the benchmark and collector modules, it's not clear who might have created the output directory first. Leave a warning in the benchmark modules for now, otherwise don't let it prevent the tests from running.
2018-01-05Always write results of a test to results.jsonMark Wong
The idea is to keep things simple by having a directory of results per test, and to have each directory with a consistently named results files.
2018-01-05Capture uname informationMark Wong
It has some things that are not in the sysctl information. Like hardware architecture.
2018-01-05Stop storing log files as jsonMark Wong
Keep the json results document small by saving log information externally. This include: * postgres log * pgbench output * sar output
2017-12-19Saved timestamp from test startMark Wong
2017-08-04Fix check for csv flagMark Wong
2017-08-04pep8 coding styleMark Wong
2017-02-27add support for collecting results into simple CSV fileTomas Vondra
Originally the results were collected into a JSON format, which is not very convenient when running ad-hoc benchmarks.
2017-02-27Check configuration before running any benchmarksTomas Vondra
Before doing any heavy-lifting, check existence of directories, binaries and some other sanity checks.
2017-02-27Import initial version of the clientTomas Vondra