kubernetes-retired / contrib

[EOL] This is a place for various components in the Kubernetes ecosystem that aren't part of the Kubernetes core.
Apache License 2.0
2.46k stars 1.68k forks source link

nginx ingress controller performance issues #1977

Closed dhawal55 closed 6 years ago

dhawal55 commented 7 years ago

I'm running the latest nginx ingress controller (v0.8.3) on a Kubernetes (v1.4.4) cluster on AWS (m4.2xlarge instances). When I use hey to performance test my service, I see that nginx is adding 100-200 ms to response time.

Here's the output when running 500 requests against 4 nginx pods (so 125 requests each) for 2 mins:

Summary:
  Total:    121.0365 secs
  Slowest:  1.0351 secs
  Fastest:  0.0015 secs
  Average:  0.1553 secs
  Requests/sec: 495.7182
  Total data:   1200000 bytes
  Size/request: 20 bytes

Status code distribution:
  [200] 60000 responses

Response time histogram:
  0.001 [1] |
  0.105 [4734]  |∎∎∎∎
  0.208 [48646] |∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
  0.312 [6618]  |∎∎∎∎∎
  0.415 [0] |
  0.518 [0] |
  0.622 [0] |
  0.725 [0] |
  0.828 [0] |
  0.932 [0] |
  1.035 [1] |

Latency distribution:
  10% in 0.1091 secs
  25% in 0.1288 secs
  50% in 0.1530 secs
  75% in 0.1824 secs
  90% in 0.2106 secs
  95% in 0.2260 secs
  99% in 0.2485 secs

Now, when I run the same test against the service endpoint (by-passing nginx), I see much better performance:

Summary:
  Total:    120.0107 secs
  Slowest:  0.2032 secs
  Fastest:  0.0003 secs
  Average:  0.0048 secs
  Requests/sec: 499.9555
  Total data:   1200000 bytes
  Size/request: 20 bytes

Status code distribution:
  [200] 60000 responses

Response time histogram:
  0.000 [1] |
  0.021 [59376] |∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
  0.041 [142]   |
  0.061 [416]   |
  0.081 [16]    |
  0.102 [0] |
  0.122 [0] |
  0.142 [0] |
  0.163 [0] |
  0.183 [0] |
  0.203 [49]    |

Latency distribution:
  10% in 0.0015 secs
  25% in 0.0023 secs
  50% in 0.0034 secs
  75% in 0.0047 secs
  90% in 0.0098 secs
  95% in 0.0122 secs
  99% in 0.0309 secs

FYI, the service I'm hitting is not doing much, just printing "hello-world" and returning 200

What could be causing the 100-200 ms delay? Is it normal for nginx to add this kind of delay? I have tried tuning the basic suspects but no luck. Here's my nginx config


daemon off;

worker_processes 8;

pid /run/nginx.pid;

worker_rlimit_nofile 131072;

pcre_jit on;

events {
    multi_accept        on;
    worker_connections  16384;
    use                 epoll; 
}

http {      
    real_ip_header      X-Forwarded-For;
    set_real_ip_from    0.0.0.0/0;
    real_ip_recursive   on;

    geoip_country       /etc/nginx/GeoIP.dat;
    geoip_city          /etc/nginx/GeoLiteCity.dat;
    geoip_proxy_recursive on;# lua section to return proper error codes when custom pages are used
    lua_package_path '.?.lua;./etc/nginx/lua/?.lua;/etc/nginx/lua/vendor/lua-resty-http/lib/?.lua;';
    init_by_lua_block {        
        require("error_page")
    }

    sendfile            on;
    aio                 threads;
    tcp_nopush          on;
    tcp_nodelay         on;

    log_subrequest      on;

    reset_timedout_connection on;

    keepalive_timeout 75s;

    types_hash_max_size 2048;
    server_names_hash_max_size 512;
    server_names_hash_bucket_size 256;

    include /etc/nginx/mime.types;
    default_type text/html;
    gzip on;
    gzip_comp_level 5;
    gzip_http_version 1.1;
    gzip_min_length 256;
    gzip_types application/atom+xml application/javascript aplication/x-javascript application/json application/rss+xml application/vnd.ms-fontobject application/x-font-ttf application/x-web-app-manifest+json application/xhtml+xml application/xml font/opentype image/svg+xml image/x-icon text/css text/plain text/x-component;    
    gzip_proxied any;

    client_max_body_size "1m";

    log_format upstreaminfo '$remote_addr - '
        '[$proxy_add_x_forwarded_for] - $remote_user [$time_local] "$request" $status $body_bytes_sent "$http_referer" "$http_user_agent" '
        '$request_length $request_time $upstream_addr $upstream_response_length $upstream_response_time $upstream_status';

    map $request $loggable {
        default 1;
    }

    access_log /var/log/nginx/access.log upstreaminfo if=$loggable;
    error_log  /var/log/nginx/error.log notice;

    # Custom dns resolver.
    resolver 25.0.0.10 valid=30s;

    map $http_upgrade $connection_upgrade {
        default upgrade;
        ''      close;
    }

    # trust http_x_forwarded_proto headers correctly indicate ssl offloading
    map $http_x_forwarded_proto $pass_access_scheme {
      default $http_x_forwarded_proto;
      ''      $scheme;
    }

    # Map a response error watching the header Content-Type
    map $http_accept $httpAccept {
        default          html;
        application/json json;
        application/xml  xml;
        text/plain       text;
    }

    map $httpAccept $httpReturnType {
        default          text/html;
        json             application/json;
        xml              application/xml;
        text             text/plain;
    }

    server_name_in_redirect off;
    port_in_redirect off;

    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;

    # turn on session caching to drastically improve performance

    ssl_session_cache builtin:1000 shared:SSL:10m;
    ssl_session_timeout 10m;

    # allow configuring ssl session tickets
    ssl_session_tickets on;

    # slightly reduce the time-to-first-byte
    ssl_buffer_size 4k;

    # allow configuring custom ssl ciphers
    ssl_ciphers 'ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:AES:CAMELLIA:DES-CBC3-SHA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!aECDH:!EDH-DSS-DES-CBC3-SHA:!EDH-RSA-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA';
    ssl_prefer_server_ciphers on;

    # In case of errors try the next upstream server before returning an error
    proxy_next_upstream                     error timeout invalid_header http_502 http_503 http_504;

    upstream default-hello-world-8080 {
        least_conn;
        server 25.1.5.10:8080 max_fails=0 fail_timeout=0;
        server 25.1.71.13:8080 max_fails=0 fail_timeout=0;

    }

    upstream upstream-default-backend {
        least_conn;
        server 25.1.5.11:8080 max_fails=0 fail_timeout=0;

    }

    server {
        server_name _;
        listen 80;
        listen 443  ssl spdy http2;

        # PEM sha: 4f450338155afd5929cd0194bd4fbcb825e5531c        
        ssl_certificate /etc/nginx-ssl/system-snake-oil-certificate.pem;
        ssl_certificate_key /etc/nginx-ssl/system-snake-oil-certificate.pem;

        more_set_headers                            "Strict-Transport-Security: max-age=15724800; includeSubDomains; preload";

        location / {
             proxy_set_header Host                   $host;

            # Pass Real IP
            proxy_set_header X-Real-IP              $remote_addr;

            # Allow websocket connections
            proxy_set_header                        Upgrade           $http_upgrade;
            proxy_set_header                        Connection        $connection_upgrade;

            proxy_set_header X-Forwarded-For        $proxy_add_x_forwarded_for;
            proxy_set_header X-Forwarded-Host       $host;
            proxy_set_header X-Forwarded-Port       $server_port;
            proxy_set_header X-Forwarded-Proto      $pass_access_scheme;

            # mitigate HTTPoxy Vulnerability
            # https://www.nginx.com/blog/mitigating-the-httpoxy-vulnerability-with-nginx/
            proxy_set_header Proxy                  "";

            proxy_connect_timeout                   5s;
            proxy_send_timeout                      60s;
            proxy_read_timeout                      60s;

            proxy_redirect                          off;
            proxy_buffering                         off;
            proxy_http_version                      1.1;

            proxy_pass http://upstream-default-backend;
        }

        # this is required to avoid error if nginx is being monitored
        # with an external software (like sysdig)
        location /nginx_status {
            allow 127.0.0.1;
            deny all;

            access_log off;
            stub_status on;
        }
    }

    server {
        server_name hello-world.default.xxx.example.com;
        listen 80;
        location / {

            proxy_set_header Host                   $host;

            # Pass Real IP
            proxy_set_header X-Real-IP              $remote_addr;

            # Allow websocket connections
            proxy_set_header                        Upgrade           $http_upgrade;
            proxy_set_header                        Connection        $connection_upgrade;

            proxy_set_header X-Forwarded-For        $proxy_add_x_forwarded_for;
            proxy_set_header X-Forwarded-Host       $host;
            proxy_set_header X-Forwarded-Port       $server_port;
            proxy_set_header X-Forwarded-Proto      $pass_access_scheme;

            # mitigate HTTPoxy Vulnerability
            # https://www.nginx.com/blog/mitigating-the-httpoxy-vulnerability-with-nginx/
            proxy_set_header Proxy                  "";

            proxy_connect_timeout                   5s;
            proxy_send_timeout                      60s;
            proxy_read_timeout                      60s;

            proxy_redirect                          off;
            proxy_buffering                         off;

            proxy_http_version                      1.1;

            proxy_pass http://default-hello-world-8080;
        }
    }

    # default server, used for NGINX healthcheck and access to nginx stats
    server {
        # Use the port 18080 (random value just to avoid known ports) as default port for nginx.
        # Changing this value requires a change in:
        # https://github.com/kubernetes/contrib/blob/master/ingress/controllers/nginx/nginx/command.go#L104
        listen 18080 default_server reuseport backlog=511;

        location /healthz {
            access_log off;
            return 200;
        }

        location /nginx_status {
            access_log off;
            stub_status on;
        }

        location / {
            proxy_pass             http://upstream-default-backend;
        }
    }

    # default server for services without endpoints
    server {
        listen 8181;
        location / {
           return 503;
       }        
    }    
}

stream {
# TCP services

# UDP services

}
aledbf commented 7 years ago

@dhawal55 please check this comment https://github.com/kubernetes/contrib/issues/1482#issuecomment-237745513

dhawal55 commented 7 years ago

Thanks @aledbf. I already tried sysctl-buddy to increase net.core.somaxconn but it had no noticeable effect.

Performance with net.core.somaxconn=32768:

Summary:
  Total:    120.1085 secs
  Slowest:  0.2656 secs
  Fastest:  0.0015 secs
  Average:  0.0671 secs
  Requests/sec: 499.5482
  Total data:   3293406 bytes
  Size/request: 54 bytes

Status code distribution:
  [200] 60000 responses

Response time histogram:
  0.002 [1] |
  0.028 [13619] |∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
  0.054 [10898] |∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
  0.081 [11145] |∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
  0.107 [15210] |∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
  0.134 [6952]  |∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎∎
  0.160 [1764]  |∎∎∎∎∎
  0.186 [187]   |
  0.213 [59]    |
  0.239 [84]    |
  0.266 [81]    |

Latency distribution:
  10% in 0.0204 secs
  25% in 0.0295 secs
  50% in 0.0687 secs
  75% in 0.0970 secs
  90% in 0.1152 secs
  95% in 0.1284 secs
  99% in 0.1507 secs
aledbf commented 7 years ago

@dhawal55 ok, please post a gist with the output of kubectl logs <ing pod> to check the nginx.log

dhawal55 commented 7 years ago

Here a sample (i have debug loggging on):

2016/11/03 00:07:20 [debug] 28#28: *24438 posix_memalign: 00007F11EBEEE680:4096 @16
2016/11/03 00:07:20 [debug] 28#28: *24438 HTTP/1.1 200 OK
Server: nginx/1.11.1
Date: Thu, 03 Nov 2016 00:07:20 GMT
Content-Type: text/plain; charset=utf-8
Content-Length: 54
Connection: keep-alive
Access-Control-Allow-Headers: Accept, Authorization, Content-Type, Origin
Access-Control-Allow-Methods: GET, OPTIONS
Access-Control-Allow-Origin: *
Access-Control-Expose-Headers: Date

2016/11/03 00:07:20 [debug] 26#26: *31092 writev: 380 of 380
2016/11/03 00:07:20 [debug] 28#28: *24438 write new buf t:1 f:0 00007F11EBEEE6A0, pos 00007F11EBEEE6A0, size: 351 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31092 chain writer out: 0000000000000000
2016/11/03 00:07:20 [debug] 28#28: *24438 http write filter: l:0 f:0 s:351
2016/11/03 00:07:20 [debug] 26#26: *31092 event timer del: 62: 1478131645702
2016/11/03 00:07:20 [debug] 28#28: *24438 http proxy filter init s:200 h:0 c:0 l:54
2016/11/03 00:07:20 [debug] 26#26: *31092 event timer add: 62: 60000:1478131700704
2016/11/03 00:07:20 [debug] 28#28: *24438 http upstream process non buffered downstream
2016/11/03 00:07:20 [debug] 26#26: *31097 http keepalive handler
2016/11/03 00:07:20 [debug] 28#28: *24438 http output filter "/foo?"
2016/11/03 00:07:20 [debug] 28#28: *24438 http copy filter: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31097 malloc: 00007F11EBF3E830:1024
2016/11/03 00:07:20 [debug] 26#26: *31097 recv: eof:0, avail:1
2016/11/03 00:07:20 [debug] 28#28: *24438 http postpone filter "/foo?" 00007F11EBF4B1A8
2016/11/03 00:07:20 [debug] 28#28: *24438 write old buf t:1 f:0 00007F11EBEEE6A0, pos 00007F11EBEEE6A0, size: 351 file: 0, size: 0
2016/11/03 00:07:20 [debug] 28#28: *24438 write new buf t:0 f:0 0000000000000000, pos 00007F11EBEED7B4, size: 54 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31097 recv: fd:89 273 of 1024
2016/11/03 00:07:20 [debug] 28#28: *24438 http write filter: l:0 f:1 s:405
2016/11/03 00:07:20 [debug] 26#26: *31097 reusable connection: 0
2016/11/03 00:07:20 [debug] 28#28: *24438 http write filter limit 0
2016/11/03 00:07:20 [debug] 26#26: *31097 posix_memalign: 00007F11EBED8730:4096 @16
2016/11/03 00:07:20 [debug] 26#26: *31097 event timer del: 89: 1478131711648
2016/11/03 00:07:20 [debug] 26#26: *31097 http process request line
2016/11/03 00:07:20 [debug] 26#26: *31097 http request line: "GET /foo HTTP/1.1"
2016/11/03 00:07:20 [debug] 26#26: *31097 http uri: "/foo"
2016/11/03 00:07:20 [debug] 26#26: *31097 http args: ""
2016/11/03 00:07:20 [debug] 26#26: *31097 http exten: ""
2016/11/03 00:07:20 [debug] 26#26: *31097 posix_memalign: 00007F11EBF6ECB0:4096 @16
2016/11/03 00:07:20 [debug] 26#26: *31097 http process request header line
2016/11/03 00:07:20 [debug] 26#26: *31097 http header: "host: hello-world.default.xxx.example.com"
2016/11/03 00:07:20 [debug] 26#26: *31097 http header: "Accept-Encoding: gzip"
2016/11/03 00:07:20 [debug] 26#26: *31097 http header: "Content-Type: text/html"
2016/11/03 00:07:20 [debug] 26#26: *31097 http header: "User-Agent: Go-http-client/1.1"
2016/11/03 00:07:20 [debug] 26#26: *31097 http header: "X-Forwarded-For: 172.24.242.25"
2016/11/03 00:07:20 [debug] 26#26: *31097 http header: "X-Forwarded-Port: 80"
2016/11/03 00:07:20 [debug] 26#26: *31097 http header: "X-Forwarded-Proto: http"
2016/11/03 00:07:20 [debug] 26#26: *31097 http header: "Connection: keep-alive"
2016/11/03 00:07:20 [debug] 26#26: *31097 http header done
2016/11/03 00:07:20 [debug] 28#28: *24438 writev: 405 of 405
2016/11/03 00:07:20 [debug] 26#26: *31097 generic phase: 0
2016/11/03 00:07:20 [debug] 28#28: *24438 http write filter 0000000000000000
2016/11/03 00:07:20 [debug] 26#26: *31097 rewrite phase: 1
2016/11/03 00:07:20 [debug] 28#28: *24438 http copy filter: 0 "/foo?"
2016/11/03 00:07:20 [debug] 28#28: *24438 finalize http upstream request: 0
2016/11/03 00:07:20 [debug] 28#28: *24438 finalize http proxy request
2016/11/03 00:07:20 [debug] 28#28: *24438 free rr peer 2 0
2016/11/03 00:07:20 [debug] 28#28: *24438 close http upstream connection: 39
2016/11/03 00:07:20 [debug] 28#28: *24438 free: 00007F11EBF60D10, unused: 48
2016/11/03 00:07:20 [debug] 28#28: *24438 event timer del: 39: 1478131700694
2016/11/03 00:07:20 [debug] 28#28: *24438 reusable connection: 0
2016/11/03 00:07:20 [debug] 26#26: *31097 test location: "/"
2016/11/03 00:07:20 [debug] 28#28: *24438 http output filter "/foo?"
2016/11/03 00:07:20 [debug] 28#28: *24438 http copy filter: "/foo?"
2016/11/03 00:07:20 [debug] 28#28: *24438 http postpone filter "/foo?" 00007FFFC0584F50
2016/11/03 00:07:20 [debug] 28#28: *24438 write new buf t:0 f:0 0000000000000000, pos 0000000000000000, size: 0 file: 0, size: 0
2016/11/03 00:07:20 [debug] 28#28: *24438 http write filter: l:1 f:0 s:0
2016/11/03 00:07:20 [debug] 28#28: *24438 http copy filter: 0 "/foo?"
2016/11/03 00:07:20 [debug] 28#28: *24438 http finalize request: 0, "/foo?" a:1, c:1
2016/11/03 00:07:20 [debug] 28#28: *24438 set http keepalive handler
2016/11/03 00:07:20 [debug] 28#28: *24438 http close request
2016/11/03 00:07:20 [debug] 28#28: *24438 http log handler
2016/11/03 00:07:20 [debug] 28#28: *24438 http vts handler
2016/11/03 00:07:20 [debug] 28#28: *24438 free: 00007F11EBEED670
2016/11/03 00:07:20 [debug] 28#28: *24438 free: 00007F11EBF49230, unused: 2
2016/11/03 00:07:20 [debug] 28#28: *24438 free: 00007F11EBF4A240, unused: 1
2016/11/03 00:07:20 [debug] 28#28: *24438 free: 00007F11EBEEE680, unused: 3217
2016/11/03 00:07:20 [debug] 28#28: *24438 free: 00007F11EBF3FB40
2016/11/03 00:07:20 [debug] 28#28: *24438 hc free: 0000000000000000 0
2016/11/03 00:07:20 [debug] 28#28: *24438 hc busy: 0000000000000000 0
2016/11/03 00:07:20 [debug] 28#28: *24438 reusable connection: 1
2016/11/03 00:07:20 [debug] 28#28: *24438 event timer add: 98: 75000:1478131715705
2016/11/03 00:07:20 [debug] 28#28: *17413 http keepalive handler
2016/11/03 00:07:20 [debug] 28#28: *17413 malloc: 00007F11EBEE8230:1024
2016/11/03 00:07:20 [debug] 28#28: *17413 recv: eof:0, avail:1
2016/11/03 00:07:20 [debug] 28#28: *17413 recv: fd:81 273 of 1024
2016/11/03 00:07:20 [debug] 28#28: *17413 reusable connection: 0
2016/11/03 00:07:20 [debug] 28#28: *17413 posix_memalign: 00007F11EBEED670:4096 @16
2016/11/03 00:07:20 [debug] 28#28: *17413 event timer del: 81: 1478131714652
2016/11/03 00:07:20 [debug] 28#28: *17413 http process request line
2016/11/03 00:07:20 [debug] 28#28: *17413 http request line: "GET /foo HTTP/1.1"
2016/11/03 00:07:20 [debug] 28#28: *17413 http uri: "/foo"
2016/11/03 00:07:20 [debug] 28#28: *17413 http args: ""
2016/11/03 00:07:20 [debug] 28#28: *17413 http exten: ""
2016/11/03 00:07:20 [debug] 28#28: *17413 posix_memalign: 00007F11EBEEE680:4096 @16
2016/11/03 00:07:20 [debug] 28#28: *17413 http process request header line
2016/11/03 00:07:20 [debug] 28#28: *17413 http header: "host: hello-world.default.xxx.example.com"
2016/11/03 00:07:20 [debug] 28#28: *17413 http header: "Accept-Encoding: gzip"
2016/11/03 00:07:20 [debug] 28#28: *17413 http header: "Content-Type: text/html"
2016/11/03 00:07:20 [debug] 28#28: *17413 http header: "User-Agent: Go-http-client/1.1"
2016/11/03 00:07:20 [debug] 28#28: *17413 http header: "X-Forwarded-For: 172.24.242.25"
2016/11/03 00:07:20 [debug] 28#28: *17413 http header: "X-Forwarded-Port: 80"
2016/11/03 00:07:20 [debug] 28#28: *17413 http header: "X-Forwarded-Proto: http"
2016/11/03 00:07:20 [debug] 28#28: *17413 http header: "Connection: keep-alive"
2016/11/03 00:07:20 [debug] 28#28: *17413 http header done
2016/11/03 00:07:20 [debug] 28#28: *17413 generic phase: 0
2016/11/03 00:07:20 [debug] 28#28: *17413 rewrite phase: 1
2016/11/03 00:07:20 [debug] 28#28: *17413 test location: "/"
2016/11/03 00:07:20 [debug] 28#28: *17413 using configuration "/"
2016/11/03 00:07:20 [debug] 28#28: *17413 http cl:-1 max:1048576
2016/11/03 00:07:20 [debug] 28#28: *17413 rewrite phase: 3
2016/11/03 00:07:20 [debug] 28#28: *17413 post rewrite phase: 4
2016/11/03 00:07:20 [debug] 28#28: *17413 generic phase: 5
2016/11/03 00:07:20 [debug] 28#28: *17413 http vts limit handler
2016/11/03 00:07:20 [debug] 28#28: *17413 generic phase: 6
2016/11/03 00:07:20 [debug] 26#26: *31097 using configuration "/"
2016/11/03 00:07:20 [debug] 28#28: *17413 generic phase: 7
2016/11/03 00:07:20 [debug] 28#28: *17413 generic phase: 8
2016/11/03 00:07:20 [debug] 26#26: *31097 http cl:-1 max:1048576
2016/11/03 00:07:20 [debug] 28#28: *17413 access phase: 9
2016/11/03 00:07:20 [debug] 26#26: *31097 rewrite phase: 3
2016/11/03 00:07:20 [debug] 28#28: *17413 access phase: 10
2016/11/03 00:07:20 [debug] 26#26: *31097 post rewrite phase: 4
2016/11/03 00:07:20 [debug] 28#28: *17413 access phase: 11
2016/11/03 00:07:20 [debug] 26#26: *31097 generic phase: 5
2016/11/03 00:07:20 [debug] 28#28: *17413 access phase: 12
2016/11/03 00:07:20 [debug] 26#26: *31097 http vts limit handler
2016/11/03 00:07:20 [debug] 26#26: *31097 generic phase: 6
2016/11/03 00:07:20 [debug] 28#28: *17413 post access phase: 13
2016/11/03 00:07:20 [debug] 26#26: *31097 generic phase: 7
2016/11/03 00:07:20 [debug] 28#28: *17413 http init upstream, client timer: 0
2016/11/03 00:07:20 [debug] 26#26: *31097 generic phase: 8
2016/11/03 00:07:20 [debug] 26#26: *31097 access phase: 9
2016/11/03 00:07:20 [debug] 26#26: *31097 access phase: 10
2016/11/03 00:07:20 [debug] 28#28: *17413 http map started
2016/11/03 00:07:20 [debug] 26#26: *31097 access phase: 11
2016/11/03 00:07:20 [debug] 28#28: *17413 http map: "" "close"
2016/11/03 00:07:20 [debug] 26#26: *31097 access phase: 12
2016/11/03 00:07:20 [debug] 26#26: *31097 post access phase: 13
2016/11/03 00:07:20 [debug] 28#28: *17413 http map started
2016/11/03 00:07:20 [debug] 28#28: *17413 http script var: "http"
2016/11/03 00:07:20 [debug] 26#26: *31097 http init upstream, client timer: 0
2016/11/03 00:07:20 [debug] 28#28: *17413 http script var: "http"
2016/11/03 00:07:20 [debug] 26#26: *31097 http map started
2016/11/03 00:07:20 [debug] 28#28: *17413 http map: "http" "http"
2016/11/03 00:07:20 [debug] 26#26: *31097 http map: "" "close"
2016/11/03 00:07:20 [debug] 28#28: *17413 http script copy: "Host: "
2016/11/03 00:07:20 [debug] 26#26: *31097 http map started
2016/11/03 00:07:20 [debug] 28#28: *17413 http script var: "hello-world.default.xxx.example.com"
2016/11/03 00:07:20 [debug] 26#26: *31097 http script var: "http"
2016/11/03 00:07:20 [debug] 28#28: *17413 http script copy: "
"
2016/11/03 00:07:20 [debug] 26#26: *31097 http script var: "http"
2016/11/03 00:07:20 [debug] 28#28: *17413 http script copy: "X-Real-IP: "
2016/11/03 00:07:20 [debug] 26#26: *31097 http map: "http" "http"
2016/11/03 00:07:20 [debug] 28#28: *17413 http script var: "25.1.5.1"
2016/11/03 00:07:20 [debug] 28#28: *17413 http script copy: "
"
2016/11/03 00:07:20 [debug] 26#26: *31097 http script copy: "Host: "
2016/11/03 00:07:20 [debug] 28#28: *17413 http script copy: ""
2016/11/03 00:07:20 [debug] 26#26: *31097 http script var: "hello-world.default.xxx.example.com"
2016/11/03 00:07:20 [debug] 28#28: *17413 http script copy: ""
2016/11/03 00:07:20 [debug] 26#26: *31097 http script copy: "
"
2016/11/03 00:07:20 [debug] 28#28: *17413 http script copy: "Connection: "
2016/11/03 00:07:20 [debug] 26#26: *31097 http script copy: "X-Real-IP: "
2016/11/03 00:07:20 [debug] 28#28: *17413 http script var: "close"
2016/11/03 00:07:20 [debug] 26#26: *31097 http script var: "25.1.5.1"
2016/11/03 00:07:20 [debug] 28#28: *17413 http script copy: "
"
2016/11/03 00:07:20 [debug] 26#26: *31097 http script copy: "
"
2016/11/03 00:07:20 [debug] 28#28: *17413 http script copy: "X-Forwarded-For: "
2016/11/03 00:07:20 [debug] 26#26: *31097 http script copy: ""
2016/11/03 00:07:20 [debug] 28#28: *17413 http script var: "172.24.242.25, 25.1.5.1"
2016/11/03 00:07:20 [debug] 26#26: *31097 http script copy: ""
2016/11/03 00:07:20 [debug] 28#28: *17413 http script copy: "
"
2016/11/03 00:07:20 [debug] 26#26: *31097 http script copy: "Connection: "
2016/11/03 00:07:20 [debug] 28#28: *17413 http script copy: "X-Forwarded-Host: "
2016/11/03 00:07:20 [debug] 26#26: *31097 http script var: "close"
2016/11/03 00:07:20 [debug] 28#28: *17413 http script var: "hello-world.default.xxx.example.com"
2016/11/03 00:07:20 [debug] 26#26: *31097 http script copy: "
"
2016/11/03 00:07:20 [debug] 28#28: *17413 http script copy: "
"
2016/11/03 00:07:20 [debug] 26#26: *31097 http script copy: "X-Forwarded-For: "
2016/11/03 00:07:20 [debug] 28#28: *17413 http script copy: "X-Forwarded-Port: "
2016/11/03 00:07:20 [debug] 26#26: *31097 http script var: "172.24.242.25, 25.1.5.1"
2016/11/03 00:07:20 [debug] 28#28: *17413 http script var: "80"
2016/11/03 00:07:20 [debug] 26#26: *31097 http script copy: "
"
2016/11/03 00:07:20 [debug] 28#28: *17413 http script copy: "
"
2016/11/03 00:07:20 [debug] 26#26: *31097 http script copy: "X-Forwarded-Host: "
2016/11/03 00:07:20 [debug] 28#28: *17413 http script copy: "X-Forwarded-Proto: "
2016/11/03 00:07:20 [debug] 28#28: *17413 http script var: "http"
2016/11/03 00:07:20 [debug] 28#28: *17413 http script copy: "
"
2016/11/03 00:07:20 [debug] 28#28: *17413 http script copy: ""
2016/11/03 00:07:20 [debug] 28#28: *17413 http script copy: ""
2016/11/03 00:07:20 [debug] 28#28: *17413 http script copy: ""
2016/11/03 00:07:20 [debug] 28#28: *17413 http script copy: ""
2016/11/03 00:07:20 [debug] 28#28: *17413 http proxy header: "Accept-Encoding: gzip"
2016/11/03 00:07:20 [debug] 28#28: *17413 http proxy header: "Content-Type: text/html"
2016/11/03 00:07:20 [debug] 28#28: *17413 http proxy header: "User-Agent: Go-http-client/1.1"
2016/11/03 00:07:20 [debug] 28#28: *17413 http proxy header:
"GET /foo HTTP/1.1
Host: hello-world.default.p13.platform.prod.aws.cloud.nordstrom.net
X-Real-IP: 25.1.5.1
Connection: close
X-Forwarded-For: 172.24.242.25, 25.1.5.1
X-Forwarded-Host: hello-world.default.p13.platform.prod.aws.cloud.nordstrom.net
X-Forwarded-Port: 80
X-Forwarded-Proto: http
Accept-Encoding: gzip
Content-Type: text/html
User-Agent: Go-http-client/1.1

"
2016/11/03 00:07:20 [debug] 28#28: *17413 http cleanup add: 00007F11EBEEF068
2016/11/03 00:07:20 [debug] 28#28: *17413 init least conn peer
2016/11/03 00:07:20 [debug] 28#28: *17413 get least conn peer, try: 2
2016/11/03 00:07:20 [debug] 28#28: *17413 get least conn peer, many
2016/11/03 00:07:20 [debug] 28#28: *17413 stream socket 34
2016/11/03 00:07:20 [debug] 26#26: *31097 http script var: "hello-world.default.xxx.example.com"
2016/11/03 00:07:20 [debug] 28#28: *17413 epoll add connection: fd:34 ev:80002005
2016/11/03 00:07:20 [debug] 26#26: *31097 http script copy: "
"
2016/11/03 00:07:20 [debug] 26#26: *31097 http script copy: "X-Forwarded-Port: "
2016/11/03 00:07:20 [debug] 26#26: *31097 http script var: "80"
2016/11/03 00:07:20 [debug] 28#28: *17413 connect to 25.1.5.10:8080, fd:34 #34500
2016/11/03 00:07:20 [debug] 26#26: *31097 http script copy: "
"
2016/11/03 00:07:20 [debug] 26#26: *31097 http script copy: "X-Forwarded-Proto: "
2016/11/03 00:07:20 [debug] 26#26: *31097 http script var: "http"
2016/11/03 00:07:20 [debug] 26#26: *31097 http script copy: "
"
2016/11/03 00:07:20 [debug] 26#26: *31097 http script copy: ""
2016/11/03 00:07:20 [debug] 26#26: *31097 http script copy: ""
2016/11/03 00:07:20 [debug] 26#26: *31097 http script copy: ""
2016/11/03 00:07:20 [debug] 26#26: *31097 http script copy: ""
2016/11/03 00:07:20 [debug] 26#26: *31097 http proxy header: "Accept-Encoding: gzip"
2016/11/03 00:07:20 [debug] 26#26: *31097 http proxy header: "Content-Type: text/html"
2016/11/03 00:07:20 [debug] 26#26: *31097 http proxy header: "User-Agent: Go-http-client/1.1"
2016/11/03 00:07:20 [debug] 26#26: *31097 http proxy header:
"GET /foo HTTP/1.1
Host: hello-world.default.xxx.example.com
X-Real-IP: 25.1.5.1
Connection: close
X-Forwarded-For: 172.24.242.25, 25.1.5.1
X-Forwarded-Host: hello-world.default.xxx.example.com
X-Forwarded-Port: 80
X-Forwarded-Proto: http
Accept-Encoding: gzip
Content-Type: text/html
User-Agent: Go-http-client/1.1

"
2016/11/03 00:07:20 [debug] 26#26: *31097 http cleanup add: 00007F11EBF6F698
2016/11/03 00:07:20 [debug] 26#26: *31097 init least conn peer
2016/11/03 00:07:20 [debug] 26#26: *31097 get least conn peer, try: 2
2016/11/03 00:07:20 [debug] 26#26: *31097 stream socket 54
2016/11/03 00:07:20 [debug] 26#26: *31097 epoll add connection: fd:54 ev:80002005
2016/11/03 00:07:20 [debug] 26#26: *31097 connect to 25.1.71.13:8080, fd:54 #34501
2016/11/03 00:07:20 [debug] 26#26: *31097 http upstream connect: -2
2016/11/03 00:07:20 [debug] 28#28: *17413 http upstream connect: -2
2016/11/03 00:07:20 [debug] 28#28: *17413 posix_memalign: 00007F11EBEF15E0:128 @16
2016/11/03 00:07:20 [debug] 28#28: *17413 event timer add: 34: 5000:1478131645705
2016/11/03 00:07:20 [debug] 28#28: *17413 http finalize request: -4, "/foo?" a:1, c:2
2016/11/03 00:07:20 [debug] 28#28: *17413 http request count:2 blk:0
2016/11/03 00:07:20 [debug] 28#28: *17413 http run request: "/foo?"
2016/11/03 00:07:20 [debug] 28#28: *17413 http upstream check client, write event:1, "/foo"
2016/11/03 00:07:20 [debug] 26#26: *31097 posix_memalign: 00007F11EBF4A540:128 @16
2016/11/03 00:07:20 [debug] 26#26: *31097 event timer add: 54: 5000:1478131645704
2016/11/03 00:07:20 [debug] 28#28: *17413 http upstream request: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31097 http finalize request: -4, "/foo?" a:1, c:2
2016/11/03 00:07:20 [debug] 28#28: *17413 http upstream send request handler
2016/11/03 00:07:20 [debug] 26#26: *31097 http request count:2 blk:0
2016/11/03 00:07:20 [debug] 28#28: *17413 http upstream send request
2016/11/03 00:07:20 [debug] 26#26: *31097 http run request: "/foo?"
2016/11/03 00:07:20 [debug] 28#28: *17413 http upstream send request body
2016/11/03 00:07:20 [debug] 26#26: *31097 http upstream check client, write event:1, "/foo"
2016/11/03 00:07:20 [debug] 28#28: *17413 chain writer buf fl:1 s:380
2016/11/03 00:07:20 [debug] 28#28: *17413 chain writer in: 00007F11EBEEF0A0
2016/11/03 00:07:20 [debug] 26#26: *31234 http upstream request: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31234 http upstream send request handler
2016/11/03 00:07:20 [debug] 26#26: *31234 http upstream send request
2016/11/03 00:07:20 [debug] 26#26: *31234 http upstream send request body
2016/11/03 00:07:20 [debug] 26#26: *31234 chain writer buf fl:1 s:380
2016/11/03 00:07:20 [debug] 26#26: *31234 chain writer in: 00007F11EBEDE1A0
2016/11/03 00:07:20 [debug] 26#26: *31234 writev: 380 of 380
2016/11/03 00:07:20 [debug] 28#28: *17413 writev: 380 of 380
2016/11/03 00:07:20 [debug] 28#28: *17413 chain writer out: 0000000000000000
2016/11/03 00:07:20 [debug] 28#28: *17413 event timer del: 34: 1478131645705
2016/11/03 00:07:20 [debug] 28#28: *17413 event timer add: 34: 60000:1478131700706
2016/11/03 00:07:20 [debug] 26#26: *31234 chain writer out: 0000000000000000
2016/11/03 00:07:20 [debug] 26#26: *31234 event timer del: 42: 1478131645704
2016/11/03 00:07:20 [debug] 26#26: *31234 event timer add: 42: 60000:1478131700706
2016/11/03 00:07:20 [debug] 26#26: *31233 http upstream request: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31233 http upstream send request handler
2016/11/03 00:07:20 [debug] 26#26: *31233 http upstream send request
2016/11/03 00:07:20 [debug] 26#26: *31233 http upstream send request body
2016/11/03 00:07:20 [debug] 26#26: *31233 chain writer buf fl:1 s:380
2016/11/03 00:07:20 [debug] 26#26: *31233 chain writer in: 00007F11EBED8140
2016/11/03 00:07:20 [debug] 25#25: *23573 http upstream request: "/foo?"
2016/11/03 00:07:20 [debug] 25#25: *23573 http upstream process header
2016/11/03 00:07:20 [debug] 25#25: *23573 malloc: 00007F11EBF7F5D0:4096
2016/11/03 00:07:20 [debug] 25#25: *23573 recv: eof:1, avail:1
2016/11/03 00:07:20 [debug] 25#25: *23573 recv: fd:74 379 of 4096
2016/11/03 00:07:20 [debug] 25#25: *23573 http proxy status 200 "200 OK"
2016/11/03 00:07:20 [debug] 25#25: *23573 http proxy header: "Access-Control-Allow-Headers: Accept, Authorization, Content-Type, Origin"
2016/11/03 00:07:20 [debug] 25#25: *23573 http proxy header: "Access-Control-Allow-Methods: GET, OPTIONS"
2016/11/03 00:07:20 [debug] 25#25: *23573 http proxy header: "Access-Control-Allow-Origin: *"
2016/11/03 00:07:20 [debug] 25#25: *23573 http proxy header: "Access-Control-Expose-Headers: Date"
2016/11/03 00:07:20 [debug] 25#25: *23573 http proxy header: "Date: Thu, 03 Nov 2016 00:07:20 GMT"
2016/11/03 00:07:20 [debug] 26#26: *31233 writev: 380 of 380
2016/11/03 00:07:20 [debug] 25#25: *23573 http proxy header: "Content-Length: 55"
2016/11/03 00:07:20 [debug] 25#25: *23573 http proxy header: "Content-Type: text/plain; charset=utf-8"
2016/11/03 00:07:20 [debug] 25#25: *23573 http proxy header: "Connection: close"
2016/11/03 00:07:20 [debug] 25#25: *23573 http proxy header done
2016/11/03 00:07:20 [debug] 25#25: *23573 posix_memalign: 00007F11EBF82A10:4096 @16
2016/11/03 00:07:20 [debug] 26#26: *31233 chain writer out: 0000000000000000
2016/11/03 00:07:20 [debug] 25#25: *23573 HTTP/1.1 200 OK
Server: nginx/1.11.1
Date: Thu, 03 Nov 2016 00:07:20 GMT
Content-Type: text/plain; charset=utf-8
Content-Length: 55
Connection: keep-alive
Access-Control-Allow-Headers: Accept, Authorization, Content-Type, Origin
Access-Control-Allow-Methods: GET, OPTIONS
Access-Control-Allow-Origin: *
Access-Control-Expose-Headers: Date

2016/11/03 00:07:20 [debug] 26#26: *31233 event timer del: 53: 1478131645704
2016/11/03 00:07:20 [debug] 25#25: *23573 write new buf t:1 f:0 00007F11EBF82A30, pos 00007F11EBF82A30, size: 351 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31233 event timer add: 53: 60000:1478131700706
2016/11/03 00:07:20 [debug] 25#25: *23573 http write filter: l:0 f:0 s:351
2016/11/03 00:07:20 [debug] 25#25: *23573 http proxy filter init s:200 h:0 c:0 l:55
2016/11/03 00:07:20 [debug] 25#25: *23573 http upstream process non buffered downstream
2016/11/03 00:07:20 [debug] 25#25: *23573 http output filter "/foo?"
2016/11/03 00:07:20 [debug] 25#25: *23573 http copy filter: "/foo?"
2016/11/03 00:07:20 [debug] 25#25: *23573 http postpone filter "/foo?" 00007F11EBF82968
2016/11/03 00:07:20 [debug] 25#25: *23573 write old buf t:1 f:0 00007F11EBF82A30, pos 00007F11EBF82A30, size: 351 file: 0, size: 0
2016/11/03 00:07:20 [debug] 25#25: *23573 write new buf t:0 f:0 0000000000000000, pos 00007F11EBF7F714, size: 55 file: 0, size: 0
2016/11/03 00:07:20 [debug] 25#25: *23573 http write filter: l:0 f:1 s:406
2016/11/03 00:07:20 [debug] 25#25: *23573 http write filter limit 0
2016/11/03 00:07:20 [debug] 25#25: *23573 writev: 406 of 406
2016/11/03 00:07:20 [debug] 25#25: *23573 http write filter 0000000000000000
2016/11/03 00:07:20 [debug] 25#25: *23573 http copy filter: 0 "/foo?"
2016/11/03 00:07:20 [debug] 25#25: *23573 finalize http upstream request: 0
2016/11/03 00:07:20 [debug] 25#25: *23573 finalize http proxy request
2016/11/03 00:07:20 [debug] 25#25: *23573 free rr peer 2 0
2016/11/03 00:07:20 [debug] 25#25: *23573 close http upstream connection: 74
2016/11/03 00:07:20 [debug] 25#25: *23573 free: 00007F11EBF66160, unused: 48
2016/11/03 00:07:20 [debug] 25#25: *23573 event timer del: 74: 1478131700705
2016/11/03 00:07:20 [debug] 25#25: *23573 reusable connection: 0
2016/11/03 00:07:20 [debug] 25#25: *23573 http output filter "/foo?"
2016/11/03 00:07:20 [debug] 25#25: *23573 http copy filter: "/foo?"
2016/11/03 00:07:20 [debug] 25#25: *23573 http postpone filter "/foo?" 00007FFFC0584F50
2016/11/03 00:07:20 [debug] 25#25: *23573 write new buf t:0 f:0 0000000000000000, pos 0000000000000000, size: 0 file: 0, size: 0
2016/11/03 00:07:20 [debug] 25#25: *23573 http write filter: l:1 f:0 s:0
2016/11/03 00:07:20 [debug] 25#25: *23573 http copy filter: 0 "/foo?"
2016/11/03 00:07:20 [debug] 25#25: *23573 http finalize request: 0, "/foo?" a:1, c:1
2016/11/03 00:07:20 [debug] 25#25: *23573 set http keepalive handler
2016/11/03 00:07:20 [debug] 25#25: *23573 http close request
2016/11/03 00:07:20 [debug] 25#25: *23573 http log handler
2016/11/03 00:07:20 [debug] 25#25: *23573 http vts handler
2016/11/03 00:07:20 [debug] 25#25: *23573 free: 00007F11EBF7F5D0
2016/11/03 00:07:20 [debug] 25#25: *23573 free: 00007F11EBF809F0, unused: 2
2016/11/03 00:07:20 [debug] 25#25: *23573 free: 00007F11EBF81A00, unused: 1
2016/11/03 00:07:20 [debug] 25#25: *23573 free: 00007F11EBF82A10, unused: 3217
2016/11/03 00:07:20 [debug] 25#25: *23573 free: 00007F11EBF805E0
2016/11/03 00:07:20 [debug] 25#25: *23573 hc free: 0000000000000000 0
2016/11/03 00:07:20 [debug] 25#25: *23573 hc busy: 0000000000000000 0
2016/11/03 00:07:20 [debug] 25#25: *23573 reusable connection: 1
2016/11/03 00:07:20 [debug] 25#25: *23573 event timer add: 44: 75000:1478131715706
2016/11/03 00:07:20 [debug] 26#26: *31097 http upstream request: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31097 http upstream send request handler
2016/11/03 00:07:20 [debug] 26#26: *31097 http upstream send request
2016/11/03 00:07:20 [debug] 26#26: *31097 http upstream send request body
2016/11/03 00:07:20 [debug] 26#26: *31097 chain writer buf fl:1 s:380
2016/11/03 00:07:20 [debug] 26#26: *31097 chain writer in: 00007F11EBF6F6D0
2016/11/03 00:07:20 [debug] 26#26: *31097 writev: 380 of 380
2016/11/03 00:07:20 [debug] 26#26: *31097 chain writer out: 0000000000000000
2016/11/03 00:07:20 [debug] 26#26: *31097 event timer del: 54: 1478131645704
2016/11/03 00:07:20 [debug] 26#26: *31097 event timer add: 54: 60000:1478131700707
2016/11/03 00:07:20 [debug] 26#26: *31234 http upstream request: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31234 http upstream process header
2016/11/03 00:07:20 [debug] 26#26: *31234 malloc: 00007F11EBF6FCC0:4096
2016/11/03 00:07:20 [debug] 26#26: *31234 recv: eof:1, avail:1
2016/11/03 00:07:20 [debug] 26#26: *31234 recv: fd:42 379 of 4096
2016/11/03 00:07:20 [debug] 26#26: *31234 http proxy status 200 "200 OK"
2016/11/03 00:07:20 [debug] 26#26: *31234 http proxy header: "Access-Control-Allow-Headers: Accept, Authorization, Content-Type, Origin"
2016/11/03 00:07:20 [debug] 26#26: *31234 http proxy header: "Access-Control-Allow-Methods: GET, OPTIONS"
2016/11/03 00:07:20 [debug] 26#26: *31234 http proxy header: "Access-Control-Allow-Origin: *"
2016/11/03 00:07:20 [debug] 26#26: *31234 http proxy header: "Access-Control-Expose-Headers: Date"
2016/11/03 00:07:20 [debug] 26#26: *31234 http proxy header: "Date: Thu, 03 Nov 2016 00:07:20 GMT"
2016/11/03 00:07:20 [debug] 26#26: *31234 http proxy header: "Content-Length: 55"
2016/11/03 00:07:20 [debug] 26#26: *31234 http proxy header: "Content-Type: text/plain; charset=utf-8"
2016/11/03 00:07:20 [debug] 26#26: *31234 http proxy header: "Connection: close"
2016/11/03 00:07:20 [debug] 26#26: *31234 http proxy header done
2016/11/03 00:07:20 [debug] 26#26: *31234 posix_memalign: 00007F11EBEDE970:4096 @16
2016/11/03 00:07:20 [debug] 26#26: *31234 HTTP/1.1 200 OK
Server: nginx/1.11.1
Date: Thu, 03 Nov 2016 00:07:20 GMT
Content-Type: text/plain; charset=utf-8
Content-Length: 55
Connection: keep-alive
Access-Control-Allow-Headers: Accept, Authorization, Content-Type, Origin
Access-Control-Allow-Methods: GET, OPTIONS
Access-Control-Allow-Origin: *
Access-Control-Expose-Headers: Date

2016/11/03 00:07:20 [debug] 26#26: *31234 write new buf t:1 f:0 00007F11EBEDE990, pos 00007F11EBEDE990, size: 351 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31234 http write filter: l:0 f:0 s:351
2016/11/03 00:07:20 [debug] 26#26: *31234 http proxy filter init s:200 h:0 c:0 l:55
2016/11/03 00:07:20 [debug] 26#26: *31234 http upstream process non buffered downstream
2016/11/03 00:07:20 [debug] 26#26: *31234 http output filter "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31234 http copy filter: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31234 http postpone filter "/foo?" 00007F11EBEDE6E8
2016/11/03 00:07:20 [debug] 26#26: *31234 write old buf t:1 f:0 00007F11EBEDE990, pos 00007F11EBEDE990, size: 351 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31234 write new buf t:0 f:0 0000000000000000, pos 00007F11EBF6FE04, size: 55 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31234 http write filter: l:0 f:1 s:406
2016/11/03 00:07:20 [debug] 26#26: *31234 http write filter limit 0
2016/11/03 00:07:20 [debug] 26#26: *31234 writev: 406 of 406
2016/11/03 00:07:20 [debug] 26#26: *31234 http write filter 0000000000000000
2016/11/03 00:07:20 [debug] 26#26: *31234 http copy filter: 0 "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31234 finalize http upstream request: 0
2016/11/03 00:07:20 [debug] 26#26: *31234 finalize http proxy request
2016/11/03 00:07:20 [debug] 26#26: *31234 free rr peer 2 0
2016/11/03 00:07:20 [debug] 26#26: *31234 close http upstream connection: 42
2016/11/03 00:07:20 [debug] 26#26: *31234 free: 00007F11EBEEBE80, unused: 48
2016/11/03 00:07:20 [debug] 26#26: *31234 event timer del: 42: 1478131700706
2016/11/03 00:07:20 [debug] 26#26: *31234 reusable connection: 0
2016/11/03 00:07:20 [debug] 26#26: *31234 http output filter "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31234 http copy filter: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31234 http postpone filter "/foo?" 00007FFFC0584F50
2016/11/03 00:07:20 [debug] 26#26: *31234 write new buf t:0 f:0 0000000000000000, pos 0000000000000000, size: 0 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31234 http write filter: l:1 f:0 s:0
2016/11/03 00:07:20 [debug] 26#26: *31234 http copy filter: 0 "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31234 http finalize request: 0, "/foo?" a:1, c:1
2016/11/03 00:07:20 [debug] 26#26: *31234 set http keepalive handler
2016/11/03 00:07:20 [debug] 26#26: *31234 http close request
2016/11/03 00:07:20 [debug] 26#26: *31234 http log handler
2016/11/03 00:07:20 [debug] 26#26: *31234 http vts handler
2016/11/03 00:07:20 [debug] 26#26: *31234 free: 00007F11EBF6FCC0
2016/11/03 00:07:20 [debug] 26#26: *31234 free: 00007F11EBEED670, unused: 2
2016/11/03 00:07:20 [debug] 26#26: *31234 free: 00007F11EBEDD780, unused: 1
2016/11/03 00:07:20 [debug] 26#26: *31234 free: 00007F11EBEDE970, unused: 3217
2016/11/03 00:07:20 [debug] 26#26: *31234 free: 00007F11EBF6A6B0
2016/11/03 00:07:20 [debug] 26#26: *31234 hc free: 0000000000000000 0
2016/11/03 00:07:20 [debug] 26#26: *31234 hc busy: 0000000000000000 0
2016/11/03 00:07:20 [debug] 26#26: *31234 reusable connection: 1
2016/11/03 00:07:20 [debug] 26#26: *31234 event timer add: 95: 75000:1478131715707
2016/11/03 00:07:20 [debug] 26#26: *31233 http upstream request: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31233 http upstream process header
2016/11/03 00:07:20 [debug] 26#26: *31233 malloc: 00007F11EBEED670:4096
2016/11/03 00:07:20 [debug] 26#26: *31233 recv: eof:1, avail:1
2016/11/03 00:07:20 [debug] 26#26: *31233 recv: fd:53 379 of 4096
2016/11/03 00:07:20 [debug] 26#26: *31233 http proxy status 200 "200 OK"
2016/11/03 00:07:20 [debug] 26#26: *31233 http proxy header: "Access-Control-Allow-Headers: Accept, Authorization, Content-Type, Origin"
2016/11/03 00:07:20 [debug] 26#26: *31233 http proxy header: "Access-Control-Allow-Methods: GET, OPTIONS"
2016/11/03 00:07:20 [debug] 26#26: *31233 http proxy header: "Access-Control-Allow-Origin: *"
2016/11/03 00:07:20 [debug] 26#26: *31233 http proxy header: "Access-Control-Expose-Headers: Date"
2016/11/03 00:07:20 [debug] 26#26: *31233 http proxy header: "Date: Thu, 03 Nov 2016 00:07:20 GMT"
2016/11/03 00:07:20 [debug] 26#26: *31233 http proxy header: "Content-Length: 55"
2016/11/03 00:07:20 [debug] 26#26: *31233 http proxy header: "Content-Type: text/plain; charset=utf-8"
2016/11/03 00:07:20 [debug] 26#26: *31233 http proxy header: "Connection: close"
2016/11/03 00:07:20 [debug] 26#26: *31233 http proxy header done
2016/11/03 00:07:20 [debug] 26#26: *31233 posix_memalign: 00007F11EBEDD780:4096 @16
2016/11/03 00:07:20 [debug] 26#26: *31233 HTTP/1.1 200 OK
Server: nginx/1.11.1
Date: Thu, 03 Nov 2016 00:07:20 GMT
Content-Type: text/plain; charset=utf-8
Content-Length: 55
Connection: keep-alive
Access-Control-Allow-Headers: Accept, Authorization, Content-Type, Origin
Access-Control-Allow-Methods: GET, OPTIONS
Access-Control-Allow-Origin: *
Access-Control-Expose-Headers: Date

2016/11/03 00:07:20 [debug] 26#26: *31233 write new buf t:1 f:0 00007F11EBEDD7A0, pos 00007F11EBEDD7A0, size: 351 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31233 http write filter: l:0 f:0 s:351
2016/11/03 00:07:20 [debug] 26#26: *31233 http proxy filter init s:200 h:0 c:0 l:55
2016/11/03 00:07:20 [debug] 26#26: *31233 http upstream process non buffered downstream
2016/11/03 00:07:20 [debug] 26#26: *31233 http output filter "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31233 http copy filter: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31233 http postpone filter "/foo?" 00007F11EBED8688
2016/11/03 00:07:20 [debug] 26#26: *31233 write old buf t:1 f:0 00007F11EBEDD7A0, pos 00007F11EBEDD7A0, size: 351 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31233 write new buf t:0 f:0 0000000000000000, pos 00007F11EBEED7B4, size: 55 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31233 http write filter: l:0 f:1 s:406
2016/11/03 00:07:20 [debug] 26#26: *31233 http write filter limit 0
2016/11/03 00:07:20 [debug] 26#26: *31233 writev: 406 of 406
2016/11/03 00:07:20 [debug] 26#26: *31233 http write filter 0000000000000000
2016/11/03 00:07:20 [debug] 26#26: *31233 http copy filter: 0 "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31233 finalize http upstream request: 0
2016/11/03 00:07:20 [debug] 26#26: *31233 finalize http proxy request
2016/11/03 00:07:20 [debug] 26#26: *31233 free rr peer 2 0
2016/11/03 00:07:20 [debug] 26#26: *31233 close http upstream connection: 53
2016/11/03 00:07:20 [debug] 26#26: *31233 free: 00007F11EBF4C2B0, unused: 48
2016/11/03 00:07:20 [debug] 26#26: *31233 event timer del: 53: 1478131700706
2016/11/03 00:07:20 [debug] 26#26: *31233 reusable connection: 0
2016/11/03 00:07:20 [debug] 31#31: *33989 http upstream request: "/foo?"
2016/11/03 00:07:20 [debug] 31#31: *33989 http upstream process header
2016/11/03 00:07:20 [debug] 31#31: *33989 malloc: 00007F11EBF483C0:4096
2016/11/03 00:07:20 [debug] 31#31: *33989 recv: eof:0, avail:1
2016/11/03 00:07:20 [debug] 31#31: *33989 recv: fd:41 379 of 4096
2016/11/03 00:07:20 [debug] 31#31: *33989 http proxy status 200 "200 OK"
2016/11/03 00:07:20 [debug] 31#31: *33989 http proxy header: "Access-Control-Allow-Headers: Accept, Authorization, Content-Type, Origin"
2016/11/03 00:07:20 [debug] 31#31: *33989 http proxy header: "Access-Control-Allow-Methods: GET, OPTIONS"
2016/11/03 00:07:20 [debug] 31#31: *33989 http proxy header: "Access-Control-Allow-Origin: *"
2016/11/03 00:07:20 [debug] 31#31: *33989 http proxy header: "Access-Control-Expose-Headers: Date"
2016/11/03 00:07:20 [debug] 31#31: *33989 http proxy header: "Date: Thu, 03 Nov 2016 00:07:20 GMT"
2016/11/03 00:07:20 [debug] 31#31: *33989 http proxy header: "Content-Length: 55"
2016/11/03 00:07:20 [debug] 31#31: *33989 http proxy header: "Content-Type: text/plain; charset=utf-8"
2016/11/03 00:07:20 [debug] 31#31: *33989 http proxy header: "Connection: close"
2016/11/03 00:07:20 [debug] 31#31: *33989 http proxy header done
2016/11/03 00:07:20 [debug] 31#31: *33989 posix_memalign: 00007F11EBF3E420:4096 @16
2016/11/03 00:07:20 [debug] 31#31: *33989 HTTP/1.1 200 OK
Server: nginx/1.11.1
Date: Thu, 03 Nov 2016 00:07:20 GMT
Content-Type: text/plain; charset=utf-8
Content-Length: 55
Connection: keep-alive
Access-Control-Allow-Headers: Accept, Authorization, Content-Type, Origin
Access-Control-Allow-Methods: GET, OPTIONS
Access-Control-Allow-Origin: *
Access-Control-Expose-Headers: Date

2016/11/03 00:07:20 [debug] 31#31: *33989 write new buf t:1 f:0 00007F11EBF3E440, pos 00007F11EBF3E440, size: 351 file: 0, size: 0
2016/11/03 00:07:20 [debug] 31#31: *33989 http write filter: l:0 f:0 s:351
2016/11/03 00:07:20 [debug] 31#31: *33989 http proxy filter init s:200 h:0 c:0 l:55
2016/11/03 00:07:20 [debug] 31#31: *33989 http upstream process non buffered downstream
2016/11/03 00:07:20 [debug] 31#31: *33989 http output filter "/foo?"
2016/11/03 00:07:20 [debug] 31#31: *33989 http copy filter: "/foo?"
2016/11/03 00:07:20 [debug] 31#31: *33989 http postpone filter "/foo?" 00007F11EBF4B348
2016/11/03 00:07:20 [debug] 31#31: *33989 write old buf t:1 f:0 00007F11EBF3E440, pos 00007F11EBF3E440, size: 351 file: 0, size: 0
2016/11/03 00:07:20 [debug] 31#31: *33989 write new buf t:0 f:0 0000000000000000, pos 00007F11EBF48504, size: 55 file: 0, size: 0
2016/11/03 00:07:20 [debug] 31#31: *33989 http write filter: l:0 f:1 s:406
2016/11/03 00:07:20 [debug] 31#31: *33989 http write filter limit 0
2016/11/03 00:07:20 [debug] 31#31: *33989 writev: 406 of 406
2016/11/03 00:07:20 [debug] 31#31: *33989 http write filter 0000000000000000
2016/11/03 00:07:20 [debug] 31#31: *33989 http copy filter: 0 "/foo?"
2016/11/03 00:07:20 [debug] 31#31: *33989 finalize http upstream request: 0
2016/11/03 00:07:20 [debug] 31#31: *33989 finalize http proxy request
2016/11/03 00:07:20 [debug] 31#31: *33989 free rr peer 2 0
2016/11/03 00:07:20 [debug] 31#31: *33989 close http upstream connection: 41
2016/11/03 00:07:20 [debug] 31#31: *33989 free: 00007F11EBF66160, unused: 48
2016/11/03 00:07:20 [debug] 31#31: *33989 event timer del: 41: 1478131700703
2016/11/03 00:07:20 [debug] 31#31: *33989 reusable connection: 0
2016/11/03 00:07:20 [debug] 31#31: *33989 http output filter "/foo?"
2016/11/03 00:07:20 [debug] 31#31: *33989 http copy filter: "/foo?"
2016/11/03 00:07:20 [debug] 31#31: *33989 http postpone filter "/foo?" 00007FFFC0584F50
2016/11/03 00:07:20 [debug] 31#31: *33989 write new buf t:0 f:0 0000000000000000, pos 0000000000000000, size: 0 file: 0, size: 0
2016/11/03 00:07:20 [debug] 31#31: *33989 http write filter: l:1 f:0 s:0
2016/11/03 00:07:20 [debug] 31#31: *33989 http copy filter: 0 "/foo?"
2016/11/03 00:07:20 [debug] 31#31: *33989 http finalize request: 0, "/foo?" a:1, c:1
2016/11/03 00:07:20 [debug] 31#31: *33989 set http keepalive handler
2016/11/03 00:07:20 [debug] 31#31: *33989 http close request
2016/11/03 00:07:20 [debug] 31#31: *33989 http log handler
2016/11/03 00:07:20 [debug] 31#31: *33989 http vts handler
2016/11/03 00:07:20 [debug] 31#31: *33989 free: 00007F11EBF483C0
2016/11/03 00:07:20 [debug] 31#31: *33989 free: 00007F11EBF493D0, unused: 2
2016/11/03 00:07:20 [debug] 31#31: *33989 free: 00007F11EBF4A3E0, unused: 2
2016/11/03 00:07:20 [debug] 31#31: *33989 free: 00007F11EBF3E420, unused: 3218
2016/11/03 00:07:20 [debug] 31#31: *33989 free: 00007F11EBEDD5B0
2016/11/03 00:07:20 [debug] 31#31: *33989 hc free: 0000000000000000 0
2016/11/03 00:07:20 [debug] 31#31: *33989 hc busy: 0000000000000000 0
2016/11/03 00:07:20 [debug] 31#31: *33989 reusable connection: 1
2016/11/03 00:07:20 [debug] 31#31: *33989 event timer add: 38: 75000:1478131715708
2016/11/03 00:07:20 [debug] 28#28: *17413 http upstream request: "/foo?"
2016/11/03 00:07:20 [debug] 28#28: *17413 http upstream process header
2016/11/03 00:07:20 [debug] 28#28: *17413 malloc: 00007F11EBED7720:4096
2016/11/03 00:07:20 [debug] 28#28: *17413 recv: eof:0, avail:1
2016/11/03 00:07:20 [debug] 28#28: *17413 recv: fd:34 379 of 4096
2016/11/03 00:07:20 [debug] 28#28: *17413 http proxy status 200 "200 OK"
2016/11/03 00:07:20 [debug] 28#28: *17413 http proxy header: "Access-Control-Allow-Headers: Accept, Authorization, Content-Type, Origin"
2016/11/03 00:07:20 [debug] 28#28: *17413 http proxy header: "Access-Control-Allow-Methods: GET, OPTIONS"
2016/11/03 00:07:20 [debug] 28#28: *17413 http proxy header: "Access-Control-Allow-Origin: *"
2016/11/03 00:07:20 [debug] 28#28: *17413 http proxy header: "Access-Control-Expose-Headers: Date"
2016/11/03 00:07:20 [debug] 28#28: *17413 http proxy header: "Date: Thu, 03 Nov 2016 00:07:20 GMT"
2016/11/03 00:07:20 [debug] 28#28: *17413 http proxy header: "Content-Length: 55"
2016/11/03 00:07:20 [debug] 28#28: *17413 http proxy header: "Content-Type: text/plain; charset=utf-8"
2016/11/03 00:07:20 [debug] 28#28: *17413 http proxy header: "Connection: close"
2016/11/03 00:07:20 [debug] 28#28: *17413 http proxy header done
2016/11/03 00:07:20 [debug] 28#28: *17413 posix_memalign: 00007F11EBED8730:4096 @16
2016/11/03 00:07:20 [debug] 28#28: *17413 HTTP/1.1 200 OK
Server: nginx/1.11.1
Date: Thu, 03 Nov 2016 00:07:20 GMT
Content-Type: text/plain; charset=utf-8
Content-Length: 55
Connection: keep-alive
Access-Control-Allow-Headers: Accept, Authorization, Content-Type, Origin
Access-Control-Allow-Methods: GET, OPTIONS
Access-Control-Allow-Origin: *
Access-Control-Expose-Headers: Date

2016/11/03 00:07:20 [debug] 28#28: *17413 write new buf t:1 f:0 00007F11EBED8750, pos 00007F11EBED8750, size: 351 file: 0, size: 0
2016/11/03 00:07:20 [debug] 28#28: *17413 http write filter: l:0 f:0 s:351
2016/11/03 00:07:20 [debug] 28#28: *17413 http proxy filter init s:200 h:0 c:0 l:55
2016/11/03 00:07:20 [debug] 28#28: *17413 http upstream process non buffered downstream
2016/11/03 00:07:20 [debug] 28#28: *17413 http output filter "/foo?"
2016/11/03 00:07:20 [debug] 28#28: *17413 http copy filter: "/foo?"
2016/11/03 00:07:20 [debug] 28#28: *17413 http postpone filter "/foo?" 00007F11EBEEF5E8
2016/11/03 00:07:20 [debug] 28#28: *17413 write old buf t:1 f:0 00007F11EBED8750, pos 00007F11EBED8750, size: 351 file: 0, size: 0
2016/11/03 00:07:20 [debug] 28#28: *17413 write new buf t:0 f:0 0000000000000000, pos 00007F11EBED7864, size: 55 file: 0, size: 0
2016/11/03 00:07:20 [debug] 28#28: *17413 http write filter: l:0 f:1 s:406
2016/11/03 00:07:20 [debug] 28#28: *17413 http write filter limit 0
2016/11/03 00:07:20 [debug] 28#28: *17413 writev: 406 of 406
2016/11/03 00:07:20 [debug] 28#28: *17413 http write filter 0000000000000000
2016/11/03 00:07:20 [debug] 28#28: *17413 http copy filter: 0 "/foo?"
2016/11/03 00:07:20 [debug] 28#28: *17413 finalize http upstream request: 0
2016/11/03 00:07:20 [debug] 28#28: *17413 finalize http proxy request
2016/11/03 00:07:20 [debug] 28#28: *17413 free rr peer 2 0
2016/11/03 00:07:20 [debug] 28#28: *17413 close http upstream connection: 34
2016/11/03 00:07:20 [debug] 28#28: *17413 free: 00007F11EBEF15E0, unused: 48
2016/11/03 00:07:20 [debug] 28#28: *17413 event timer del: 34: 1478131700706
2016/11/03 00:07:20 [debug] 28#28: *17413 reusable connection: 0
2016/11/03 00:07:20 [debug] 26#26: *31233 http output filter "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31233 http copy filter: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31233 http postpone filter "/foo?" 00007FFFC0584F50
2016/11/03 00:07:20 [debug] 26#26: *31233 write new buf t:0 f:0 0000000000000000, pos 0000000000000000, size: 0 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31233 http write filter: l:1 f:0 s:0
2016/11/03 00:07:20 [debug] 26#26: *31233 http copy filter: 0 "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31233 http finalize request: 0, "/foo?" a:1, c:1
2016/11/03 00:07:20 [debug] 26#26: *31233 set http keepalive handler
2016/11/03 00:07:20 [debug] 26#26: *31233 http close request
2016/11/03 00:07:20 [debug] 26#26: *31233 http log handler
2016/11/03 00:07:20 [debug] 26#26: *31233 http vts handler
2016/11/03 00:07:20 [debug] 26#26: *31233 free: 00007F11EBEED670
2016/11/03 00:07:20 [debug] 28#28: *17413 http output filter "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31233 free: 00007F11EBEEE890, unused: 2
2016/11/03 00:07:20 [debug] 28#28: *17413 http copy filter: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31233 free: 00007F11EBED7720, unused: 1
2016/11/03 00:07:20 [debug] 26#26: *31233 free: 00007F11EBEDD780, unused: 3217
2016/11/03 00:07:20 [debug] 28#28: *17413 http postpone filter "/foo?" 00007FFFC0584F50
2016/11/03 00:07:20 [debug] 28#28: *17413 write new buf t:0 f:0 0000000000000000, pos 0000000000000000, size: 0 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31233 free: 00007F11EBF4BEA0
2016/11/03 00:07:20 [debug] 28#28: *17413 http write filter: l:1 f:0 s:0
2016/11/03 00:07:20 [debug] 26#26: *31233 hc free: 0000000000000000 0
2016/11/03 00:07:20 [debug] 28#28: *17413 http copy filter: 0 "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31233 hc busy: 0000000000000000 0
2016/11/03 00:07:20 [debug] 28#28: *17413 http finalize request: 0, "/foo?" a:1, c:1
2016/11/03 00:07:20 [debug] 26#26: *31233 reusable connection: 1
2016/11/03 00:07:20 [debug] 28#28: *17413 set http keepalive handler
2016/11/03 00:07:20 [debug] 26#26: *31233 event timer add: 94: 75000:1478131715707
2016/11/03 00:07:20 [debug] 28#28: *17413 http close request
2016/11/03 00:07:20 [debug] 28#28: *17413 http log handler
2016/11/03 00:07:20 [debug] 26#26: *31097 http upstream request: "/foo?"
2016/11/03 00:07:20 [debug] 28#28: *17413 http vts handler
2016/11/03 00:07:20 [debug] 26#26: *31097 http upstream process header
2016/11/03 00:07:20 [debug] 28#28: *17413 free: 00007F11EBED7720
2016/11/03 00:07:20 [debug] 28#28: *17413 free: 00007F11EBEED670, unused: 2
2016/11/03 00:07:20 [debug] 26#26: *31097 malloc: 00007F11EBEED670:4096
2016/11/03 00:07:20 [debug] 28#28: *17413 free: 00007F11EBEEE680, unused: 2
2016/11/03 00:07:20 [debug] 26#26: *31097 recv: eof:1, avail:1
2016/11/03 00:07:20 [debug] 28#28: *17413 free: 00007F11EBED8730, unused: 3218
2016/11/03 00:07:20 [debug] 28#28: *17413 free: 00007F11EBEE8230
2016/11/03 00:07:20 [debug] 28#28: *17413 hc free: 0000000000000000 0
2016/11/03 00:07:20 [debug] 26#26: *31097 recv: fd:54 379 of 4096
2016/11/03 00:07:20 [debug] 28#28: *17413 hc busy: 0000000000000000 0
2016/11/03 00:07:20 [debug] 26#26: *31097 http proxy status 200 "200 OK"
2016/11/03 00:07:20 [debug] 28#28: *17413 reusable connection: 1
2016/11/03 00:07:20 [debug] 28#28: *17413 event timer add: 81: 75000:1478131715708
2016/11/03 00:07:20 [debug] 26#26: *31097 http proxy header: "Access-Control-Allow-Headers: Accept, Authorization, Content-Type, Origin"
2016/11/03 00:07:20 [debug] 26#26: *31097 http proxy header: "Access-Control-Allow-Methods: GET, OPTIONS"
2016/11/03 00:07:20 [debug] 26#26: *31097 http proxy header: "Access-Control-Allow-Origin: *"
2016/11/03 00:07:20 [debug] 26#26: *31097 http proxy header: "Access-Control-Expose-Headers: Date"
2016/11/03 00:07:20 [debug] 26#26: *31097 http proxy header: "Date: Thu, 03 Nov 2016 00:07:20 GMT"
2016/11/03 00:07:20 [debug] 26#26: *31097 http proxy header: "Content-Length: 55"
2016/11/03 00:07:20 [debug] 26#26: *31097 http proxy header: "Content-Type: text/plain; charset=utf-8"
2016/11/03 00:07:20 [debug] 26#26: *31097 http proxy header: "Connection: close"
2016/11/03 00:07:20 [debug] 26#26: *31097 http proxy header done
2016/11/03 00:07:20 [debug] 26#26: *31097 posix_memalign: 00007F11EBED7720:4096 @16
2016/11/03 00:07:20 [debug] 26#26: *31097 HTTP/1.1 200 OK
Server: nginx/1.11.1
Date: Thu, 03 Nov 2016 00:07:20 GMT
Content-Type: text/plain; charset=utf-8
Content-Length: 55
Connection: keep-alive
Access-Control-Allow-Headers: Accept, Authorization, Content-Type, Origin
Access-Control-Allow-Methods: GET, OPTIONS
Access-Control-Allow-Origin: *
Access-Control-Expose-Headers: Date

2016/11/03 00:07:20 [debug] 26#26: *31097 write new buf t:1 f:0 00007F11EBED7740, pos 00007F11EBED7740, size: 351 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31097 http write filter: l:0 f:0 s:351
2016/11/03 00:07:20 [debug] 26#26: *31097 http proxy filter init s:200 h:0 c:0 l:55
2016/11/03 00:07:20 [debug] 26#26: *31097 http upstream process non buffered downstream
2016/11/03 00:07:20 [debug] 26#26: *31097 http output filter "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31097 http copy filter: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31097 http postpone filter "/foo?" 00007F11EBF6FC18
2016/11/03 00:07:20 [debug] 26#26: *31097 write old buf t:1 f:0 00007F11EBED7740, pos 00007F11EBED7740, size: 351 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31097 write new buf t:0 f:0 0000000000000000, pos 00007F11EBEED7B4, size: 55 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31097 http write filter: l:0 f:1 s:406
2016/11/03 00:07:20 [debug] 26#26: *31097 http write filter limit 0
2016/11/03 00:07:20 [debug] 26#26: *31097 writev: 406 of 406
2016/11/03 00:07:20 [debug] 26#26: *31097 http write filter 0000000000000000
2016/11/03 00:07:20 [debug] 26#26: *31097 http copy filter: 0 "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31097 finalize http upstream request: 0
2016/11/03 00:07:20 [debug] 26#26: *31097 finalize http proxy request
2016/11/03 00:07:20 [debug] 26#26: *31097 free rr peer 2 0
2016/11/03 00:07:20 [debug] 26#26: *31097 close http upstream connection: 54
2016/11/03 00:07:20 [debug] 26#26: *31097 free: 00007F11EBF4A540, unused: 48
2016/11/03 00:07:20 [debug] 26#26: *31097 event timer del: 54: 1478131700707
2016/11/03 00:07:20 [debug] 26#26: *31097 reusable connection: 0
2016/11/03 00:07:20 [debug] 26#26: *31097 http output filter "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31097 http copy filter: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31097 http postpone filter "/foo?" 00007FFFC0584F50
2016/11/03 00:07:20 [debug] 26#26: *31097 write new buf t:0 f:0 0000000000000000, pos 0000000000000000, size: 0 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31097 http write filter: l:1 f:0 s:0
2016/11/03 00:07:20 [debug] 26#26: *31097 http copy filter: 0 "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31097 http finalize request: 0, "/foo?" a:1, c:1
2016/11/03 00:07:20 [debug] 26#26: *31097 set http keepalive handler
2016/11/03 00:07:20 [debug] 26#26: *31097 http close request
2016/11/03 00:07:20 [debug] 26#26: *31097 http log handler
2016/11/03 00:07:20 [debug] 26#26: *31097 http vts handler
2016/11/03 00:07:20 [debug] 26#26: *31097 free: 00007F11EBEED670
2016/11/03 00:07:20 [debug] 26#26: *31097 free: 00007F11EBED8730, unused: 2
2016/11/03 00:07:20 [debug] 26#26: *31097 free: 00007F11EBF6ECB0, unused: 1
2016/11/03 00:07:20 [debug] 26#26: *31097 free: 00007F11EBED7720, unused: 3217
2016/11/03 00:07:20 [debug] 26#26: *31097 free: 00007F11EBF3E830
2016/11/03 00:07:20 [debug] 26#26: *31097 hc free: 0000000000000000 0
2016/11/03 00:07:20 [debug] 26#26: *31097 hc busy: 0000000000000000 0
2016/11/03 00:07:20 [debug] 26#26: *31097 reusable connection: 1
2016/11/03 00:07:20 [debug] 26#26: *31097 event timer add: 89: 75000:1478131715709
2016/11/03 00:07:20 [debug] 26#26: *31238 http upstream request: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31238 http upstream process header
2016/11/03 00:07:20 [debug] 26#26: *31238 malloc: 00007F11EBEED670:4096
2016/11/03 00:07:20 [debug] 26#26: *31238 recv: eof:1, avail:1
2016/11/03 00:07:20 [debug] 26#26: *31238 recv: fd:45 379 of 4096
2016/11/03 00:07:20 [debug] 26#26: *31238 http proxy status 200 "200 OK"
2016/11/03 00:07:20 [debug] 26#26: *31238 http proxy header: "Access-Control-Allow-Headers: Accept, Authorization, Content-Type, Origin"
2016/11/03 00:07:20 [debug] 26#26: *31238 http proxy header: "Access-Control-Allow-Methods: GET, OPTIONS"
2016/11/03 00:07:20 [debug] 26#26: *31238 http proxy header: "Access-Control-Allow-Origin: *"
2016/11/03 00:07:20 [debug] 26#26: *31238 http proxy header: "Access-Control-Expose-Headers: Date"
2016/11/03 00:07:20 [debug] 26#26: *31238 http proxy header: "Date: Thu, 03 Nov 2016 00:07:20 GMT"
2016/11/03 00:07:20 [debug] 26#26: *31238 http proxy header: "Content-Length: 55"
2016/11/03 00:07:20 [debug] 26#26: *31238 http proxy header: "Content-Type: text/plain; charset=utf-8"
2016/11/03 00:07:20 [debug] 26#26: *31238 http proxy header: "Connection: close"
2016/11/03 00:07:20 [debug] 26#26: *31238 http proxy header done
2016/11/03 00:07:20 [debug] 26#26: *31238 posix_memalign: 00007F11EBEDD780:4096 @16
2016/11/03 00:07:20 [debug] 26#26: *31238 HTTP/1.1 200 OK
Server: nginx/1.11.1
Date: Thu, 03 Nov 2016 00:07:20 GMT
Content-Type: text/plain; charset=utf-8
Content-Length: 55
Connection: keep-alive
Access-Control-Allow-Headers: Accept, Authorization, Content-Type, Origin
Access-Control-Allow-Methods: GET, OPTIONS
Access-Control-Allow-Origin: *
Access-Control-Expose-Headers: Date

2016/11/03 00:07:20 [debug] 26#26: *31238 write new buf t:1 f:0 00007F11EBEDD7A0, pos 00007F11EBEDD7A0, size: 351 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31238 http write filter: l:0 f:0 s:351
2016/11/03 00:07:20 [debug] 26#26: *31238 http proxy filter init s:200 h:0 c:0 l:55
2016/11/03 00:07:20 [debug] 26#26: *31238 http upstream process non buffered downstream
2016/11/03 00:07:20 [debug] 26#26: *31238 http output filter "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31238 http copy filter: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31238 http postpone filter "/foo?" 00007F11EBF6CBE8
2016/11/03 00:07:20 [debug] 26#26: *31238 write old buf t:1 f:0 00007F11EBEDD7A0, pos 00007F11EBEDD7A0, size: 351 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31238 write new buf t:0 f:0 0000000000000000, pos 00007F11EBEED7B4, size: 55 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31238 http write filter: l:0 f:1 s:406
2016/11/03 00:07:20 [debug] 26#26: *31238 http write filter limit 0
2016/11/03 00:07:20 [debug] 26#26: *31238 writev: 406 of 406
2016/11/03 00:07:20 [debug] 26#26: *31238 http write filter 0000000000000000
2016/11/03 00:07:20 [debug] 26#26: *31238 http copy filter: 0 "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31238 finalize http upstream request: 0
2016/11/03 00:07:20 [debug] 26#26: *31238 finalize http proxy request
2016/11/03 00:07:20 [debug] 26#26: *31238 free rr peer 2 0
2016/11/03 00:07:20 [debug] 26#26: *31238 close http upstream connection: 45
2016/11/03 00:07:20 [debug] 26#26: *31238 free: 00007F11EBF66160, unused: 48
2016/11/03 00:07:20 [debug] 26#26: *31238 event timer del: 45: 1478131700702
2016/11/03 00:07:20 [debug] 26#26: *31238 reusable connection: 0
2016/11/03 00:07:20 [debug] 26#26: *31238 http output filter "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31238 http copy filter: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31238 http postpone filter "/foo?" 00007FFFC0584F50
2016/11/03 00:07:20 [debug] 26#26: *31238 write new buf t:0 f:0 0000000000000000, pos 0000000000000000, size: 0 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31238 http write filter: l:1 f:0 s:0
2016/11/03 00:07:20 [debug] 26#26: *31238 http copy filter: 0 "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31238 http finalize request: 0, "/foo?" a:1, c:1
2016/11/03 00:07:20 [debug] 26#26: *31238 set http keepalive handler
2016/11/03 00:07:20 [debug] 26#26: *31238 http close request
2016/11/03 00:07:20 [debug] 26#26: *31238 http log handler
2016/11/03 00:07:20 [debug] 26#26: *31238 http vts handler
2016/11/03 00:07:20 [debug] 26#26: *31238 free: 00007F11EBEED670
2016/11/03 00:07:20 [debug] 26#26: *31238 free: 00007F11EBF3C9C0, unused: 2
2016/11/03 00:07:20 [debug] 26#26: *31238 free: 00007F11EBF6BC80, unused: 2
2016/11/03 00:07:20 [debug] 26#26: *31238 free: 00007F11EBEDD780, unused: 3218
2016/11/03 00:07:20 [debug] 26#26: *31238 free: 00007F11EBF48C00
2016/11/03 00:07:20 [debug] 26#26: *31238 hc free: 0000000000000000 0
2016/11/03 00:07:20 [debug] 26#26: *31238 hc busy: 0000000000000000 0
2016/11/03 00:07:20 [debug] 26#26: *31238 reusable connection: 1
2016/11/03 00:07:20 [debug] 26#26: *31238 event timer add: 99: 75000:1478131715709
2016/11/03 00:07:20 [debug] 26#26: *31239 http upstream request: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31239 http upstream process header
2016/11/03 00:07:20 [debug] 26#26: *31239 malloc: 00007F11EBEED670:4096
2016/11/03 00:07:20 [debug] 26#26: *31239 recv: eof:1, avail:1
2016/11/03 00:07:20 [debug] 26#26: *31239 recv: fd:52 379 of 4096
2016/11/03 00:07:20 [debug] 26#26: *31239 http proxy status 200 "200 OK"
2016/11/03 00:07:20 [debug] 26#26: *31239 http proxy header: "Access-Control-Allow-Headers: Accept, Authorization, Content-Type, Origin"
2016/11/03 00:07:20 [debug] 26#26: *31239 http proxy header: "Access-Control-Allow-Methods: GET, OPTIONS"
2016/11/03 00:07:20 [debug] 26#26: *31239 http proxy header: "Access-Control-Allow-Origin: *"
2016/11/03 00:07:20 [debug] 26#26: *31239 http proxy header: "Access-Control-Expose-Headers: Date"
2016/11/03 00:07:20 [debug] 26#26: *31239 http proxy header: "Date: Thu, 03 Nov 2016 00:07:20 GMT"
2016/11/03 00:07:20 [debug] 26#26: *31239 http proxy header: "Content-Length: 55"
2016/11/03 00:07:20 [debug] 26#26: *31239 http proxy header: "Content-Type: text/plain; charset=utf-8"
2016/11/03 00:07:20 [debug] 26#26: *31239 http proxy header: "Connection: close"
2016/11/03 00:07:20 [debug] 26#26: *31239 http proxy header done
2016/11/03 00:07:20 [debug] 26#26: *31239 posix_memalign: 00007F11EBF3C9C0:4096 @16
2016/11/03 00:07:20 [debug] 26#26: *31239 HTTP/1.1 200 OK
Server: nginx/1.11.1
Date: Thu, 03 Nov 2016 00:07:20 GMT
Content-Type: text/plain; charset=utf-8
Content-Length: 55
Connection: keep-alive
Access-Control-Allow-Headers: Accept, Authorization, Content-Type, Origin
Access-Control-Allow-Methods: GET, OPTIONS
Access-Control-Allow-Origin: *
Access-Control-Expose-Headers: Date

2016/11/03 00:07:20 [debug] 26#26: *31239 write new buf t:1 f:0 00007F11EBF3C9E0, pos 00007F11EBF3C9E0, size: 351 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31239 http write filter: l:0 f:0 s:351
2016/11/03 00:07:20 [debug] 26#26: *31239 http proxy filter init s:200 h:0 c:0 l:55
2016/11/03 00:07:20 [debug] 26#26: *31239 http upstream process non buffered downstream
2016/11/03 00:07:20 [debug] 26#26: *31239 http output filter "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31239 http copy filter: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31239 http postpone filter "/foo?" 00007F11EBF6EC08
2016/11/03 00:07:20 [debug] 26#26: *31239 write old buf t:1 f:0 00007F11EBF3C9E0, pos 00007F11EBF3C9E0, size: 351 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31239 write new buf t:0 f:0 0000000000000000, pos 00007F11EBEED7B4, size: 55 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31239 http write filter: l:0 f:1 s:406
2016/11/03 00:07:20 [debug] 26#26: *31239 http write filter limit 0
2016/11/03 00:07:20 [debug] 26#26: *31239 writev: 406 of 406
2016/11/03 00:07:20 [debug] 26#26: *31239 http write filter 0000000000000000
2016/11/03 00:07:20 [debug] 26#26: *31239 http copy filter: 0 "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31239 finalize http upstream request: 0
2016/11/03 00:07:20 [debug] 26#26: *31239 finalize http proxy request
2016/11/03 00:07:20 [debug] 26#26: *31239 free rr peer 2 0
2016/11/03 00:07:20 [debug] 26#26: *31239 close http upstream connection: 52
2016/11/03 00:07:20 [debug] 26#26: *31239 free: 00007F11EBEF1580, unused: 48
2016/11/03 00:07:20 [debug] 26#26: *31239 event timer del: 52: 1478131700702
2016/11/03 00:07:20 [debug] 26#26: *31239 reusable connection: 0
2016/11/03 00:07:20 [debug] 26#26: *31239 http output filter "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31239 http copy filter: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31239 http postpone filter "/foo?" 00007FFFC0584F50
2016/11/03 00:07:20 [debug] 26#26: *31239 write new buf t:0 f:0 0000000000000000, pos 0000000000000000, size: 0 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31239 http write filter: l:1 f:0 s:0
2016/11/03 00:07:20 [debug] 26#26: *31239 http copy filter: 0 "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31239 http finalize request: 0, "/foo?" a:1, c:1
2016/11/03 00:07:20 [debug] 26#26: *31239 set http keepalive handler
2016/11/03 00:07:20 [debug] 26#26: *31239 http close request
2016/11/03 00:07:20 [debug] 26#26: *31239 http log handler
2016/11/03 00:07:20 [debug] 26#26: *31239 http vts handler
2016/11/03 00:07:20 [debug] 26#26: *31239 free: 00007F11EBEED670
2016/11/03 00:07:20 [debug] 26#26: *31239 free: 00007F11EBF6CC90, unused: 2
2016/11/03 00:07:20 [debug] 26#26: *31239 free: 00007F11EBF6DCA0, unused: 2
2016/11/03 00:07:20 [debug] 26#26: *31239 free: 00007F11EBF3C9C0, unused: 3218
2016/11/03 00:07:20 [debug] 26#26: *31239 free: 00007F11EBF3D9D0
2016/11/03 00:07:20 [debug] 26#26: *31239 hc free: 0000000000000000 0
2016/11/03 00:07:20 [debug] 26#26: *31239 hc busy: 0000000000000000 0
2016/11/03 00:07:20 [debug] 26#26: *31239 reusable connection: 1
2016/11/03 00:07:20 [debug] 26#26: *31239 event timer add: 100: 75000:1478131715709
2016/11/03 00:07:20 [debug] 26#26: *32725 http upstream request: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *32725 http upstream process header
2016/11/03 00:07:20 [debug] 26#26: *32725 malloc: 00007F11EBEED670:4096
2016/11/03 00:07:20 [debug] 26#26: *32725 recv: eof:1, avail:1
2016/11/03 00:07:20 [debug] 26#26: *32725 recv: fd:58 379 of 4096
2016/11/03 00:07:20 [debug] 26#26: *32725 http proxy status 200 "200 OK"
2016/11/03 00:07:20 [debug] 26#26: *32725 http proxy header: "Access-Control-Allow-Headers: Accept, Authorization, Content-Type, Origin"
2016/11/03 00:07:20 [debug] 26#26: *32725 http proxy header: "Access-Control-Allow-Methods: GET, OPTIONS"
2016/11/03 00:07:20 [debug] 26#26: *32725 http proxy header: "Access-Control-Allow-Origin: *"
2016/11/03 00:07:20 [debug] 26#26: *32725 http proxy header: "Access-Control-Expose-Headers: Date"
2016/11/03 00:07:20 [debug] 26#26: *32725 http proxy header: "Date: Thu, 03 Nov 2016 00:07:20 GMT"
2016/11/03 00:07:20 [debug] 26#26: *32725 http proxy header: "Content-Length: 55"
2016/11/03 00:07:20 [debug] 26#26: *32725 http proxy header: "Content-Type: text/plain; charset=utf-8"
2016/11/03 00:07:20 [debug] 26#26: *32725 http proxy header: "Connection: close"
2016/11/03 00:07:20 [debug] 26#26: *32725 http proxy header done
2016/11/03 00:07:20 [debug] 26#26: *32725 posix_memalign: 00007F11EBEDD780:4096 @16
2016/11/03 00:07:20 [debug] 26#26: *32725 HTTP/1.1 200 OK
Server: nginx/1.11.1
Date: Thu, 03 Nov 2016 00:07:20 GMT
Content-Type: text/plain; charset=utf-8
Content-Length: 55
Connection: keep-alive
Access-Control-Allow-Headers: Accept, Authorization, Content-Type, Origin
Access-Control-Allow-Methods: GET, OPTIONS
Access-Control-Allow-Origin: *
Access-Control-Expose-Headers: Date

2016/11/03 00:07:20 [debug] 26#26: *32725 write new buf t:1 f:0 00007F11EBEDD7A0, pos 00007F11EBEDD7A0, size: 351 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *32725 http write filter: l:0 f:0 s:351
2016/11/03 00:07:20 [debug] 26#26: *32725 http proxy filter init s:200 h:0 c:0 l:55
2016/11/03 00:07:20 [debug] 26#26: *32725 http upstream process non buffered downstream
2016/11/03 00:07:20 [debug] 26#26: *32725 http output filter "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *32725 http copy filter: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *32725 http postpone filter "/foo?" 00007F11EBEDB6B8
2016/11/03 00:07:20 [debug] 26#26: *32725 write old buf t:1 f:0 00007F11EBEDD7A0, pos 00007F11EBEDD7A0, size: 351 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *32725 write new buf t:0 f:0 0000000000000000, pos 00007F11EBEED7B4, size: 55 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *32725 http write filter: l:0 f:1 s:406
2016/11/03 00:07:20 [debug] 26#26: *32725 http write filter limit 0
2016/11/03 00:07:20 [debug] 26#26: *32725 writev: 406 of 406
2016/11/03 00:07:20 [debug] 26#26: *32725 http write filter 0000000000000000
2016/11/03 00:07:20 [debug] 26#26: *32725 http copy filter: 0 "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *32725 finalize http upstream request: 0
2016/11/03 00:07:20 [debug] 26#26: *32725 finalize http proxy request
2016/11/03 00:07:20 [debug] 26#26: *32725 free rr peer 2 0
2016/11/03 00:07:20 [debug] 26#26: *32725 close http upstream connection: 58
2016/11/03 00:07:20 [debug] 26#26: *32725 free: 00007F11EBF4C340, unused: 48
2016/11/03 00:07:20 [debug] 26#26: *32725 event timer del: 58: 1478131700702
2016/11/03 00:07:20 [debug] 26#26: *32725 reusable connection: 0
2016/11/03 00:07:20 [debug] 26#26: *32725 http output filter "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *32725 http copy filter: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *32725 http postpone filter "/foo?" 00007FFFC0584F50
2016/11/03 00:07:20 [debug] 26#26: *32725 write new buf t:0 f:0 0000000000000000, pos 0000000000000000, size: 0 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *32725 http write filter: l:1 f:0 s:0
2016/11/03 00:07:20 [debug] 26#26: *32725 http copy filter: 0 "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *32725 http finalize request: 0, "/foo?" a:1, c:1
2016/11/03 00:07:20 [debug] 26#26: *32725 set http keepalive handler
2016/11/03 00:07:20 [debug] 26#26: *32725 http close request
2016/11/03 00:07:20 [debug] 26#26: *32725 http log handler
2016/11/03 00:07:20 [debug] 26#26: *32725 http vts handler
2016/11/03 00:07:20 [debug] 26#26: *32725 free: 00007F11EBEED670
2016/11/03 00:07:20 [debug] 26#26: *32725 free: 00007F11EBED9740, unused: 2
2016/11/03 00:07:20 [debug] 26#26: *32725 free: 00007F11EBEDA750, unused: 2
2016/11/03 00:07:20 [debug] 26#26: *32725 free: 00007F11EBEDD780, unused: 3218
2016/11/03 00:07:20 [debug] 26#26: *32725 free: 00007F11EBF4B6C0
2016/11/03 00:07:20 [debug] 26#26: *32725 hc free: 0000000000000000 0
2016/11/03 00:07:20 [debug] 26#26: *32725 hc busy: 0000000000000000 0
2016/11/03 00:07:20 [debug] 26#26: *32725 reusable connection: 1
2016/11/03 00:07:20 [debug] 26#26: *32725 event timer add: 39: 75000:1478131715709
2016/11/03 00:07:20 [debug] 26#26: *31092 http upstream request: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31092 http upstream process header
2016/11/03 00:07:20 [debug] 26#26: *31092 malloc: 00007F11EBEED670:4096
2016/11/03 00:07:20 [debug] 26#26: *31092 recv: eof:1, avail:1
2016/11/03 00:07:20 [debug] 26#26: *31092 recv: fd:62 379 of 4096
2016/11/03 00:07:20 [debug] 26#26: *31092 http proxy status 200 "200 OK"
2016/11/03 00:07:20 [debug] 26#26: *31092 http proxy header: "Access-Control-Allow-Headers: Accept, Authorization, Content-Type, Origin"
2016/11/03 00:07:20 [debug] 26#26: *31092 http proxy header: "Access-Control-Allow-Methods: GET, OPTIONS"
2016/11/03 00:07:20 [debug] 26#26: *31092 http proxy header: "Access-Control-Allow-Origin: *"
2016/11/03 00:07:20 [debug] 26#26: *31092 http proxy header: "Access-Control-Expose-Headers: Date"
2016/11/03 00:07:20 [debug] 26#26: *31092 http proxy header: "Date: Thu, 03 Nov 2016 00:07:20 GMT"
2016/11/03 00:07:20 [debug] 26#26: *31092 http proxy header: "Content-Length: 55"
2016/11/03 00:07:20 [debug] 26#26: *31092 http proxy header: "Content-Type: text/plain; charset=utf-8"
2016/11/03 00:07:20 [debug] 26#26: *31092 http proxy header: "Connection: close"
2016/11/03 00:07:20 [debug] 26#26: *31092 http proxy header done
2016/11/03 00:07:20 [debug] 26#26: *31092 posix_memalign: 00007F11EBEDD780:4096 @16
2016/11/03 00:07:20 [debug] 26#26: *31092 HTTP/1.1 200 OK
Server: nginx/1.11.1
Date: Thu, 03 Nov 2016 00:07:20 GMT
Content-Type: text/plain; charset=utf-8
Content-Length: 55
Connection: keep-alive
Access-Control-Allow-Headers: Accept, Authorization, Content-Type, Origin
Access-Control-Allow-Methods: GET, OPTIONS
Access-Control-Allow-Origin: *
Access-Control-Expose-Headers: Date

2016/11/03 00:07:20 [debug] 26#26: *31092 write new buf t:1 f:0 00007F11EBEDD7A0, pos 00007F11EBEDD7A0, size: 351 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31092 http write filter: l:0 f:0 s:351
2016/11/03 00:07:20 [debug] 26#26: *31092 http proxy filter init s:200 h:0 c:0 l:55
2016/11/03 00:07:20 [debug] 26#26: *31092 http upstream process non buffered downstream
2016/11/03 00:07:20 [debug] 26#26: *31092 http output filter "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31092 http copy filter: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31092 http postpone filter "/foo?" 00007F11EBEDD6D8
2016/11/03 00:07:20 [debug] 26#26: *31092 write old buf t:1 f:0 00007F11EBEDD7A0, pos 00007F11EBEDD7A0, size: 351 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31092 write new buf t:0 f:0 0000000000000000, pos 00007F11EBEED7B4, size: 55 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31092 http write filter: l:0 f:1 s:406
2016/11/03 00:07:20 [debug] 26#26: *31092 http write filter limit 0
2016/11/03 00:07:20 [debug] 26#26: *31092 writev: 406 of 406
2016/11/03 00:07:20 [debug] 26#26: *31092 http write filter 0000000000000000
2016/11/03 00:07:20 [debug] 26#26: *31092 http copy filter: 0 "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31092 finalize http upstream request: 0
2016/11/03 00:07:20 [debug] 26#26: *31092 finalize http proxy request
2016/11/03 00:07:20 [debug] 26#26: *31092 free rr peer 2 0
2016/11/03 00:07:20 [debug] 26#26: *31092 close http upstream connection: 62
2016/11/03 00:07:20 [debug] 26#26: *31092 free: 00007F11EBF4A4B0, unused: 48
2016/11/03 00:07:20 [debug] 26#26: *31092 event timer del: 62: 1478131700704
2016/11/03 00:07:20 [debug] 26#26: *31092 reusable connection: 0
2016/11/03 00:07:20 [debug] 26#26: *31092 http output filter "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31092 http copy filter: "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31092 http postpone filter "/foo?" 00007FFFC0584F50
2016/11/03 00:07:20 [debug] 26#26: *31092 write new buf t:0 f:0 0000000000000000, pos 0000000000000000, size: 0 file: 0, size: 0
2016/11/03 00:07:20 [debug] 26#26: *31092 http write filter: l:1 f:0 s:0
2016/11/03 00:07:20 [debug] 26#26: *31092 http copy filter: 0 "/foo?"
2016/11/03 00:07:20 [debug] 26#26: *31092 http finalize request: 0, "/foo?" a:1, c:1
2016/11/03 00:07:20 [debug] 26#26: *31092 set http keepalive handler
2016/11/03 00:07:20 [debug] 26#26: *31092 http close request
2016/11/03 00:07:20 [debug] 26#26: *31092 http log handler
2016/11/03 00:07:20 [debug] 26#26: *31092 http vts handler
2016/11/03 00:07:20 [debug] 26#26: *31092 free: 00007F11EBEED670
2016/11/03 00:07:20 [debug] 26#26: *31092 free: 00007F11EBEDB760, unused: 2
2016/11/03 00:07:20 [debug] 26#26: *31092 free: 00007F11EBEDC770, unused: 2
2016/11/03 00:07:20 [debug] 26#26: *31092 free: 00007F11EBEDD780, unused: 3218
2016/11/03 00:07:20 [debug] 26#26: *31092 free: 00007F11EBF3DFF0
2016/11/03 00:07:20 [debug] 26#26: *31092 hc free: 0000000000000000 0
2016/11/03 00:07:20 [debug] 26#26: *31092 hc busy: 0000000000000000 0
2016/11/03 00:07:20 [debug] 26#26: *31092 reusable connection: 1
2016/11/03 00:07:20 [debug] 26#26: *31092 event timer add: 78: 75000:1478131715709
aledbf commented 7 years ago

@dhawal55 please do not run tests like this with a log level bigger than 2. Can you post a test with --v=2? How are you running the test? (from a node in the cluster, outside, etc) (check that the node is different from where the ingress controller is running) What distribution, kernel and docker version are you using?

dhawal55 commented 7 years ago

@aledbf I'm running the tests in a pod in the cluster. I have 4 worker-nodes in the cluster and nginx pod is running on all 4. The test is running on only 1 pod.

OS-Version:

NAME=CoreOS
ID=coreos
VERSION=1192.2.0
VERSION_ID=1192.2.0
BUILD_ID=2016-10-21-0026
PRETTY_NAME="CoreOS 1192.2.0 (MoreOS)"

Kernel-version: 4.7.3-coreos-r1

I bumped up the logging level to debug just to see if I can get some hint on why nginx is slow. Here's log with --v=2:

25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.009 25.1.71.13:8080 55 0.009 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 54 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.008 25.1.71.13:8080 55 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 54 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.5.10:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.009 25.1.71.13:8080 55 0.009 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.008 25.1.5.10:8080 55 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.008 25.1.71.13:8080 55 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.008 25.1.71.13:8080 55 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.5.10:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.009 25.1.71.13:8080 55 0.009 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.009 25.1.71.13:8080 55 0.009 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.009 25.1.71.13:8080 55 0.009 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.011 25.1.71.13:8080 55 0.011 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.011 25.1.71.13:8080 55 0.011 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.011 25.1.71.13:8080 55 0.011 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.012 25.1.71.13:8080 55 0.012 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.011 25.1.71.13:8080 55 0.011 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.012 25.1.71.13:8080 55 0.012 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.009 25.1.71.13:8080 55 0.009 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.007 25.1.71.13:8080 55 0.007 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.008 25.1.71.13:8080 54 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.71.13:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:26 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.71.13:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 53 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 53 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 53 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 53 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.007 25.1.71.13:8080 55 0.007 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 54 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 54 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.013 25.1.71.13:8080 55 0.013 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.013 25.1.71.13:8080 55 0.013 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.013 25.1.71.13:8080 55 0.013 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.013 25.1.71.13:8080 55 0.013 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.012 25.1.71.13:8080 55 0.012 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.012 25.1.71.13:8080 55 0.012 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.5.10:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.5.10:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.007 25.1.5.10:8080 55 0.007 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.007 25.1.5.10:8080 55 0.007 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.014 25.1.71.13:8080 55 0.014 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.5.10:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.013 25.1.71.13:8080 55 0.013 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.007 25.1.5.10:8080 55 0.007 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.013 25.1.71.13:8080 55 0.013 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.5.10:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.010 25.1.71.13:8080 55 0.010 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.012 25.1.71.13:8080 54 0.012 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.009 25.1.71.13:8080 55 0.009 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.013 25.1.71.13:8080 55 0.013 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.5.10:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.012 25.1.71.13:8080 55 0.012 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.009 25.1.71.13:8080 55 0.009 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.014 25.1.71.13:8080 55 0.014 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.5.10:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.008 25.1.71.13:8080 55 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.011 25.1.71.13:8080 55 0.011 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 54 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.010 25.1.71.13:8080 55 0.010 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.011 25.1.71.13:8080 55 0.011 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.008 25.1.5.10:8080 55 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.008 25.1.5.10:8080 55 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.007 25.1.5.10:8080 55 0.007 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.008 25.1.5.10:8080 55 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.008 25.1.5.10:8080 55 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.5.10:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.007 25.1.5.10:8080 55 0.007 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.008 25.1.5.10:8080 55 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.007 25.1.5.10:8080 55 0.007 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.5.10:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.007 25.1.5.10:8080 54 0.007 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.5.10:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.5.10:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.5.10:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:27 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.000 25.1.71.13:8080 55 0.000 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.000 25.1.71.13:8080 55 0.000 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 54 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.71.13:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 52 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 52 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 54 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 54 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 54 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.010 25.1.5.10:8080 55 0.010 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.010 25.1.5.10:8080 55 0.010 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.013 25.1.5.10:8080 55 0.013 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.013 25.1.5.10:8080 55 0.013 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.014 25.1.5.10:8080 55 0.014 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.014 25.1.5.10:8080 55 0.014 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.012 25.1.5.10:8080 55 0.012 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.013 25.1.5.10:8080 55 0.013 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.012 25.1.5.10:8080 55 0.012 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.012 25.1.5.10:8080 55 0.012 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.012 25.1.5.10:8080 55 0.012 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.013 25.1.5.10:8080 55 0.013 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.011 25.1.5.10:8080 55 0.011 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.011 25.1.5.10:8080 55 0.011 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.012 25.1.5.10:8080 55 0.012 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.011 25.1.5.10:8080 55 0.011 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.012 25.1.5.10:8080 55 0.012 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.012 25.1.5.10:8080 54 0.012 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.008 25.1.5.10:8080 55 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.013 25.1.5.10:8080 55 0.013 200
25.1.62.1 - [10.12.182.75, 25.1.62.1] - - [03/Nov/2016:16:33:28 +0000] "GET /api/datasources/proxy/1/api/v1/query_range?query=rate(container_network_transmit_bytes_total%7Bnode_ip%3D%22172.24.241.222%22%2Ccontainer_name%3D%22POD%22%7D%5B1m%5D)&start=1478169209&end=1478190809&step=30 HTTP/1.1" 200 87 "http://grafana.xxx.example.com/dashboard/db/node" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36" 924 0.005 25.1.5.9:3000 87 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 54 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 53 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 53 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.007 25.1.5.10:8080 55 0.007 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.008 25.1.5.10:8080 54 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 54 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.009 25.1.5.10:8080 55 0.009 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.011 25.1.5.10:8080 55 0.011 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.009 25.1.5.10:8080 54 0.009 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.009 25.1.5.10:8080 55 0.009 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.008 25.1.5.10:8080 55 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.009 25.1.5.10:8080 54 0.009 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.008 25.1.5.10:8080 55 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.009 25.1.5.10:8080 55 0.009 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.009 25.1.5.10:8080 55 0.009 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.008 25.1.5.10:8080 55 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 53 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 53 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.007 25.1.5.10:8080 54 0.007 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.007 25.1.5.10:8080 55 0.007 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.009 25.1.5.10:8080 55 0.009 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.5.10:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.5.10:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.000 25.1.5.10:8080 55 0.000 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:29 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.000 25.1.71.13:8080 55 0.000 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.000 25.1.71.13:8080 55 0.000 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.000 25.1.5.10:8080 55 0.000 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.000 25.1.5.10:8080 55 0.000 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 53 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 53 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.009 25.1.5.10:8080 55 0.009 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 53 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 53 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 53 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 53 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 54 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 53 "-" "Go-http-client/1.1" 273 0.000 25.1.71.13:8080 53 0.000 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.000 25.1.71.13:8080 54 0.000 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /healthz HTTP/1.1" 200 2 "-" "ELB-HealthChecker/1.0" 123 0.000 25.1.62.2:8080 2 0.000 200
25.1.62.1 - [25.1.62.1] - - [03/Nov/2016:16:33:30 +0000] "GET /healthz HTTP/1.1" 200 2 "-" "ELB-HealthChecker/1.0" 123 0.000 25.1.62.2:8080 2 0.000 200
25.1.62.1 - [25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /healthz HTTP/1.1" 200 2 "-" "ELB-HealthChecker/1.0" 123 0.000 25.1.62.2:8080 2 0.000 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.000 25.1.71.13:8080 54 0.000 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 53 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 53 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.71.13:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 54 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 54 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.007 25.1.71.13:8080 55 0.007 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.008 25.1.71.13:8080 55 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.008 25.1.71.13:8080 55 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.008 25.1.71.13:8080 55 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.007 25.1.5.10:8080 55 0.007 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.007 25.1.5.10:8080 55 0.007 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.010 25.1.71.13:8080 55 0.010 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.009 25.1.71.13:8080 54 0.009 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.010 25.1.71.13:8080 55 0.010 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.008 25.1.71.13:8080 55 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.007 25.1.71.13:8080 55 0.007 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.007 25.1.5.10:8080 55 0.007 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.71.13:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.008 25.1.71.13:8080 55 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.71.13:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.009 25.1.71.13:8080 55 0.009 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.008 25.1.71.13:8080 55 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.007 25.1.5.10:8080 55 0.007 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.5.10:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.008 25.1.5.10:8080 55 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.007 25.1.71.13:8080 55 0.007 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.71.13:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.008 25.1.5.10:8080 55 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.007 25.1.5.10:8080 54 0.007 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.007 25.1.5.10:8080 55 0.007 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.5.10:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.006 25.1.71.13:8080 54 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.71.13:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.5.10:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.013 25.1.71.13:8080 55 0.013 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.5.10:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.008 25.1.5.10:8080 55 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.008 25.1.5.10:8080 55 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 54 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:31 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 53 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 53 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.000 25.1.5.10:8080 55 0.000 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.000 25.1.71.13:8080 55 0.000 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.000 25.1.71.13:8080 54 0.000 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.000 25.1.5.10:8080 55 0.000 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.000 25.1.5.10:8080 55 0.000 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 53 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 53 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 53 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 53 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.000 25.1.5.10:8080 55 0.000 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.000 25.1.5.10:8080 55 0.000 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.007 25.1.5.10:8080 55 0.007 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.007 25.1.5.10:8080 55 0.007 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.5.10:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.009 25.1.5.10:8080 55 0.009 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.009 25.1.5.10:8080 55 0.009 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.009 25.1.5.10:8080 55 0.009 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.009 25.1.5.10:8080 55 0.009 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.009 25.1.5.10:8080 55 0.009 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.009 25.1.5.10:8080 55 0.009 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.011 25.1.5.10:8080 55 0.011 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.5.10:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.008 25.1.5.10:8080 54 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:32 +0000] "GET /foo HTTP/1.1" 200 53 "-" "Go-http-client/1.1" 273 0.006 25.1.5.10:8080 53 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.71.13:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.007 25.1.71.13:8080 54 0.007 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.71.13:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.000 25.1.71.13:8080 55 0.000 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.000 25.1.71.13:8080 55 0.000 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.000 25.1.71.13:8080 55 0.000 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.000 25.1.71.13:8080 55 0.000 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.000 25.1.5.10:8080 54 0.000 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 54 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:33 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.008 25.1.71.13:8080 55 0.008 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 54 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 54 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 54 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.009 25.1.5.10:8080 55 0.009 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.5.10:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 54 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.5.10:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.004 25.1.71.13:8080 55 0.004 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.005 25.1.71.13:8080 55 0.005 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.006 25.1.71.13:8080 55 0.006 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.71.13:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 53 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 53 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.5.10:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 54 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.001 25.1.71.13:8080 55 0.001 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.003 25.1.5.10:8080 55 0.003 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.71.13:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 54 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 54 0.002 200
25.1.62.1 - [172.24.242.25, 25.1.62.1] - - [03/Nov/2016:16:33:34 +0000] "GET /foo HTTP/1.1" 200 55 "-" "Go-http-client/1.1" 273 0.002 25.1.5.10:8080 55 0.002 200

Interesting, I don't see any same delay/latency in request_time and upstream_response_time in nginx logs. I think i saw similar delays in request_time/upstream_response_time at some point.

aledbf commented 7 years ago

@dhawal55 thanks for the information.

If you check the template the nginx access log is:

log_format upstreaminfo '{{ if $cfg.useProxyProtocol }}$proxy_protocol_addr{{ else }}$remote_addr{{ end }} - '
        '[$proxy_add_x_forwarded_for] - $remote_user [$time_local] "$request" $status $body_bytes_sent "$http_referer" "$http_user_agent" '
        '$request_length $request_time [$proxy_upstream_name] $upstream_addr $upstream_response_length $upstream_response_time $upstream_status';

Where $request_time $upstream_response_time (check here for the explanation)

From the output you sent you can see at the end of each line 0.002 25.1.5.10:8080 55 0.002 200 so the time in nginx is 2ms and not the time you see in the tool. Please check the delay you have

dhawal55 commented 7 years ago

@aledbf Ya, I was surprised to see that too. At one point (maybe before I ran sysctl-buddy), i was seeing higher values for $request_time & $upstream_response_time. Maybe there's a bug in the perf test tool. I will try to load test using a different tool. Thanks a lot for all your help and quick responses.

dhawal55 commented 7 years ago

If hey is buggy, I should have seen slower times when hitting the service endpoint as well, but the service endpoint and nodePort perform well. It's only when hitting via Nginx that I see the added delay.

aledbf commented 7 years ago

@dhawal55 please check https://github.com/tsenart/vegeta

fejta-bot commented 6 years ago

Issues go stale after 30d of inactivity. Mark the issue as fresh with /remove-lifecycle stale. Stale issues rot after an additional 30d of inactivity and eventually close.

Prevent issues from auto-closing with an /lifecycle frozen comment.

If this issue is safe to close now please do so with /close.

Send feedback to sig-testing, kubernetes/test-infra and/or @fejta. /lifecycle stale

fejta-bot commented 6 years ago

Stale issues rot after 30d of inactivity. Mark the issue as fresh with /remove-lifecycle rotten. Rotten issues close after an additional 30d of inactivity.

If this issue is safe to close now please do so with /close.

Send feedback to sig-testing, kubernetes/test-infra and/or @fejta. /lifecycle rotten /remove-lifecycle stale

fejta-bot commented 6 years ago

Rotten issues close after 30d of inactivity. Reopen the issue with /reopen. Mark the issue as fresh with /remove-lifecycle rotten.

Send feedback to sig-testing, kubernetes/test-infra and/or fejta. /close