Oleg
Oleg

Reputation: 85

YAT: Save final console output to file

I want to save final data from console output to file without intermediate. How can i do that? enter image description here

Upvotes: 2

Views: 577

Answers (2)

Direvius
Direvius

Reputation: 427

The report module exports all info into html in JSON format. You can get some info from there (cumulative percentiles, for example). You even don't have to modify python code in that case, just add some JS to the page that generates a table.

On the other hand, if you want something more then that info included there, you should implement it in the report module.

What particular pieces of last screen data are you interested in?

P.S by the way, one may create a couple of templates and then provide the template parameter in report section of load.ini to specify which one you want to use.

Upvotes: 2

DoctorNkz
DoctorNkz

Reputation: 11

This screen is good report only for "const" benchmarking. For "line" and "step" ramping the last screen always demonstrates the worst timings and resources. But we are thinking about this feature request.

Upvotes: 1

Related Questions