You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by bc...@apache.org on 2019/02/25 18:10:23 UTC

[trafficserver] branch master updated: Added connect_end to the slow log report

This is an automated email from the ASF dual-hosted git repository.

bcall pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new ac25c6c  Added connect_end to the slow log report
ac25c6c is described below

commit ac25c6c0cb99735f9a45c75e4c32b03bf2bae786
Author: Bryan Call <bc...@apache.org>
AuthorDate: Fri Feb 22 09:59:07 2019 -0800

    Added connect_end to the slow log report
---
 tools/slow_log_report.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/slow_log_report.pl b/tools/slow_log_report.pl
index 597b2f5..9207b59 100755
--- a/tools/slow_log_report.pl
+++ b/tools/slow_log_report.pl
@@ -37,7 +37,7 @@ sub displayStat($) {
   my($stats) = @_;
 
   printf("%25s %10s %10s %10s %10s %10s %10s %10s %10s\n", 'key', 'total', 'count', 'mean', 'median', '95th', '99th', 'min', 'max');
-  foreach my $key ('ua_begin', 'ua_first_read', 'ua_read_header_done', 'cache_open_read_begin', 'cache_open_read_end', 'dns_lookup_begin', 'dns_lookup_end', 'server_connect', 'server_first_read', 'server_read_header_done', 'server_close', 'ua_close', 'sm_finish') {
+  foreach my $key ('ua_begin', 'ua_first_read', 'ua_read_header_done', 'cache_open_read_begin', 'cache_open_read_end', 'dns_lookup_begin', 'dns_lookup_end', 'server_connect', 'server_connect_end', 'server_first_read', 'server_read_header_done', 'server_close', 'ua_close', 'sm_finish') {
 
     my $count = $stats->{$key}->{count};
     my $total = $stats->{$key}->{total};