mirror of
https://gitlab.com/depesz/explain.depesz.com.git
synced 2026-06-19 22:15:11 +02:00
Merge branch 'pr-io-rate-exclusive-time' into 'master'
add io rate calculated from exclusive time See merge request depesz/explain.depesz.com!31
This commit is contained in:
@@ -263,7 +263,10 @@
|
||||
<%= humanize_size( 8192 * $v ) %>
|
||||
% if ( $BD->{'timings'}->{'read'} ) {
|
||||
<br>in <%= commify_number( $BD->{'timings'}->{'read'} ) %> ms
|
||||
<br>~ <%= humanize_size( 8192 * $v * 1000 / $BD->{'timings'}->{'read'} ) %>/s
|
||||
<br>~ <%= humanize_size( 8192 * $v * 1000 / $BD->{'timings'}->{'read'} ) %>/s<% if ( $node->workers > 1 ) { %> (avg-per-worker)<% } %>
|
||||
% if ( $node->workers > 1 && defined $node->total_exclusive_time && $node->total_exclusive_time > 0 ) {
|
||||
<br>~ <%= humanize_size( 8192 * $v * 1000 / $node->total_exclusive_time ) %>/s (exclusive-time)
|
||||
% }
|
||||
% }
|
||||
</td>
|
||||
% }
|
||||
@@ -279,7 +282,10 @@
|
||||
<%= humanize_size( 8192 * $v ) %>
|
||||
% if ( $BD->{'timings'}->{'write'} ) {
|
||||
<br>in <%= commify_number( $BD->{'timings'}->{'write'} ) %> ms
|
||||
<br>~ <%= humanize_size( 8192 * $v * 1000 / $BD->{'timings'}->{'write'} ) %>/s
|
||||
<br>~ <%= humanize_size( 8192 * $v * 1000 / $BD->{'timings'}->{'write'} ) %>/s<% if ( $node->workers > 1 ) { %> (avg-per-worker)<% } %>
|
||||
% if ( $node->workers > 1 && defined $node->total_exclusive_time && $node->total_exclusive_time > 0 ) {
|
||||
<br>~ <%= humanize_size( 8192 * $v * 1000 / $node->total_exclusive_time ) %>/s (exclusive-time)
|
||||
% }
|
||||
% }
|
||||
</td>
|
||||
% }
|
||||
|
||||
Reference in New Issue
Block a user