Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add units to table #537

Merged
merged 1 commit into from
Feb 16, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions locust/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,10 @@ <h2>Change the locust count</h2>
<th class="stats_label" href="#" data-sortkey="name">Name</th>
<th class="stats_label numeric" href="#" data-sortkey="num_requests" title="Number of successful requests"># requests</th>
<th class="stats_label numeric" href="#" data-sortkey="num_failures" title="Number of failures"># fails</th>
<th class="stats_label numeric" href="#" data-sortkey="median_response_time" title="Median response time">Median</th>
<th class="stats_label numeric" href="#" data-sortkey="avg_response_time" title="Average response time">Average</th>
<th class="stats_label numeric" href="#" data-sortkey="min_response_time" title="Min response time">Min</th>
<th class="stats_label numeric" href="#" data-sortkey="max_response_time" title="Max response time">Max</th>
<th class="stats_label numeric" href="#" data-sortkey="median_response_time" title="Median response time">Median (ms)</th>
<th class="stats_label numeric" href="#" data-sortkey="avg_response_time" title="Average response time">Average (ms)</th>
<th class="stats_label numeric" href="#" data-sortkey="min_response_time" title="Min response time">Min (ms)</th>
<th class="stats_label numeric" href="#" data-sortkey="max_response_time" title="Max response time">Max (ms)</th>
<th class="stats_label numeric" href="#" data-sortkey="avg_content_length" title="Average response size">Content Size</th>
<th class="stats_label numeric" href="#" data-sortkey="current_rps" title="Current number of requests per second"># reqs/sec</th>
</tr>
Expand Down