Performance results report
Summary
transaction: {{ report.total_transactions }}
errors: {{ report.total_errors }}
run time: {{ run_time }}
test start: {{ report.start_datetime }}
test finish: {{ report.finish_datetime }}
time-series interval: {{ ts_interval }} seconds
{% if turrets_config %}
workload configuration
turret name |
uuid |
canons |
script name |
rampup |
Last known status |
Last status update |
{% for turret in turrets_config %}
{{ turret.name }} |
{{ turret.uuid }} |
{{ turret.canons }} |
{{ turret.script }} |
{{ turret.rampup }} |
{{ turret.status }} |
{{ turret.updated_at }} |
{% endfor %}
{% endif %}
All transactions
Transaction Response Summary (secs)
count |
min |
avg |
80pct |
90pct |
95pct |
max |
stdev |
{{ report.total_transactions }} |
{{ results.all.summary['min'] }} |
{{ results.all.summary['mean'] }} |
{{ results.all.summary['80%'] }} |
{{ results.all.summary['90%'] }} |
{{ results.all.summary['95%'] }} |
{{ results.all.summary['max'] }} |
{{ results.all.summary['std'] }} |
Interval Details (secs)
interval |
count |
min |
avg |
80pct |
90pct |
95pct |
max |
stdev |
{% for index, row in results.all.compiled.iterrows() %}
{{ loop.index }} |
{{ row['count'] }} |
{{ row['min'] }} |
{{ row['mean'] }} |
{{ row['80%'] }} |
{{ row['90%'] }} |
{{ row['95%'] }} |
{{ row['max'] }} |
{{ row['std'] }} |
{% endfor %}
Graphs
Response Time: {{ ts_interval }} sec time-series
Response Time: raw data (all points)
Throughput: 5 sec time-series
{% for key, value in results.timers.items() %}
Custom Timer: {{ key }}
Timer Summary (secs)
count |
min |
avg |
80pct |
90pct |
95pct |
max |
stdev |
{{ value.raw.count()['scriptrun_time'] }} |
{{ value.summary['min'] }} |
{{ value.summary['mean'] }} |
{{ value.summary['80%'] }} |
{{ value.summary['90%'] }} |
{{ value.summary['95%'] }} |
{{ value.summary['max'] }} |
{{ value.summary['std'] }} |
Interval Details (secs)
interval |
count |
min |
avg |
80pct |
90pct |
95pct |
max |
stdev |
{% for index, row in value.compiled.iterrows() %}
{{ loop.index }} |
{{ row['count'] }} |
{{ row['min'] }} |
{{ row['mean'] }} |
{{ row['80%'] }} |
{{ row['90%'] }} |
{{ row['95%'] }} |
{{ row['max'] }} |
{{ row['std'] }} |
{% endfor %}
Graphs
Response Time: {{ ts_interval }} sec time-series
Response Time: raw data (all points)
Throughput: 5 sec time-series
{% endfor %}