{% extends "base.html" %} {% block title %}Report {% if test %}#{{ uuid }} - {{ format_date(runAt) }}{% else %}Not Found{% end %} - Wight v{{ version }}{% end %} {% block contents %}
{{ test["config"]["description"] }}
This report details the test run at {{ format_date(runAt) }}, scheduled by user {{ createdBy }}.
{{ test["config"]["module"] }}
{{ test["config"]["className"] }}.{{ test["config"]["testName"] }}
{{ test["config"]["cycles"] }}
Concurrent users | Successful tests per second | Total | Success | Error | {% for cycle in test["cycles"] %}
---|---|---|---|---|
{{ cycle["concurrentUsers"] }} | {{ "%.0f" % cycle["test"]["successfulTestsPerSecond"] }} | {{ "%.0f" % cycle["test"]["totalTests"] }} | {{ "%.0f" % cycle["test"]["successfulTests"] }} | {{ "%.2f" % cycle["test"]["failedTestsPercentage"] }}% |
CUs | Apdex | SPPS | MaxSPPS | Total | Succ | Err | Min | P10 | Med | Avg | P90 | P95 | Max | {% for cycle in test["cycles"] %}
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ cycle["concurrentUsers"] }} | {{ "%.1f" % cycle["page"]["apdex"] }} | {{ "%.4f" % cycle["page"]["successfulPagesPerSecond"] }} | {{ "%.4f" % cycle["page"]["maxSuccessfulPagesPerSecond"] }} | {{ "%.0f" % cycle["page"]["totalRequests"] }} | {{ "%.0f" % cycle["page"]["successfulRequests"] }} | {{ "%.2f" % cycle["page"]["failedRequestPercentage"] }}% | {{ "%.4f" % cycle["page"]["minimum"] }} | {{ "%.4f" % cycle["page"]["p10"] }} | {{ "%.4f" % cycle["page"]["p50"] }} | {{ "%.4f" % cycle["page"]["average"] }} | {{ "%.4f" % cycle["page"]["p90"] }} | {{ "%.4f" % cycle["page"]["p95"] }} | {{ "%.4f" % cycle["page"]["maximum"] }} |
Min, P10, Med, Avg, P90, P95 and Max values measured in seconds.
CUs | Apdex | SPPS | MaxSPPS | Total | Succ | Err | Min | P10 | Med | Avg | P90 | P95 | Max | {% for cycle in test["cycles"] %}
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ cycle["concurrentUsers"] }} | {{ "%.1f" % cycle["request"]["apdex"] }} | {{ "%.4f" % cycle["request"]["successfulRequestsPerSecond"] }} | {{ "%.4f" % cycle["request"]["maxSuccessfulRequestsPerSecond"] }} | {{ "%.0f" % cycle["request"]["totalRequests"] }} | {{ "%.0f" % cycle["request"]["successfulRequests"] }} | {{ "%.2f" % cycle["request"]["failedRequestPercentage"] }}% | {{ "%.4f" % cycle["request"]["minimum"] }} | {{ "%.4f" % cycle["request"]["p10"] }} | {{ "%.4f" % cycle["request"]["p50"] }} | {{ "%.4f" % cycle["request"]["average"] }} | {{ "%.4f" % cycle["request"]["p90"] }} | {{ "%.4f" % cycle["request"]["p95"] }} | {{ "%.4f" % cycle["request"]["maximum"] }} |
Report generated at {{ report_date }} - Wight v{{ version }}
{% else %}We are unable to find a test result or load test with uuid {{ uuid }}.