Skip to content

Instantly share code, notes, and snippets.

@mbunzel
Last active April 29, 2016 01:53
Show Gist options
  • Save mbunzel/48826c81ed81dd4588e950a19ee097f1 to your computer and use it in GitHub Desktop.
Save mbunzel/48826c81ed81dd4588e950a19ee097f1 to your computer and use it in GitHub Desktop.
<!--
#Flush after 11151us
#Parse duration 10754us
#Render duration 61640us
#Idle duration 397us
-->
<!--
#Flush after 83973us
#Parse duration 5138us
#Render duration 35227us
#Idle duration 6044us
-->
<!--
#Flush after 124075us
#Parse duration 1104us
#Render duration 3086us
#Idle duration 3771us
--><!--
mod_pagespeed on
Filters:
ah Add Head
ai Add Instrumentation
cw Collapse Whitespace
cc Combine Css
jc Combine Javascript
gp Convert Gif to Png
jp Convert Jpeg to Progressive
db Debug
ec Cache Extend Css
ei Cache Extend Images
es Cache Extend Scripts
fc Fallback Rewrite Css
hw Flushes html
id Insert Image Dimensions
js Jpeg Subsampling
ll Lazyload Images
cj Move Css Above Scripts
cm Move Css To Head
rj Recompress Jpeg
rp Recompress Png
rw Recompress Webp
rc Remove Comments
ir Resize to Rendered Image Dimensions
rx Responsive Images
rz Responsive Images Zoom
cf Rewrite Css
jm Rewrite External Javascript
jj Rewrite Inline Javascript
cp Strip Image Color Profiles
md Strip Image Meta Data
Options:
AvoidRenamingIntrospectiveJavascript (aris) True
EnableCachePurge (euci) True
EnableRewriting (e) 1
FileCacheInodeLimit (afcl) 500000
ImageMaxRewritesAtOnce (im) 20
InPlaceResourceOptimization (ipro) False
LRUCacheByteLimit (alcb) 16384
LRUCacheKbPerProcess (alcp) 8192
OptionCookiesDurationMs (ocd) 300
RewriteLevel (l) Pass Through
Statistics (ase) True
StatisticsLogging (asle) True
XHeaderValue (xhv) redacted
#NumFlushes 2
#EndDocument after 124075us
#Total Parse duration 16996us
#Total Render duration 99953us
#Total Idle duration 10212us
No critical images detected.
No filters were disabled for this request.
-->
OS: Centos 7
uname -a: Linux [redacted] 3.10.0-327.13.1.el7.x86_64 #1 SMP Thu Mar 31 16:04:38 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
nginx: nginx/1.9.15, compiled from source (patched official rpm)
pagespeed: 1.11.33.0, compiled as nginx loadable module
Hardware: dedicated, 32gb ram, Xeon E5-2630 v3 @ 2.40GHz, 32 threads, zero load (not in production)
The HTML is ~260kb uncompressed, served from a local php-fpm process. It's an old table-based layout with ~4800 DOM elements.
All times below reflect a warm cache. The cache is warmed by clicking the same link until response times have stabilized.
All requests are to the same URL, using http/2 over SSL. The numbers are from Chrome's developer tools.
The timing log lines are configured as follows:
req: $request_time header: $upstream_header_time resp: $upstream_response_time
1. Request with ?PageSpeed=off
TTFB: 66ms (+0, baseline)
Download: 12ms (+0, baseline)
Log: req: 0.058 header: 0.058 resp: 0.058
2. Request using the config above
TTFB: 200ms (+134ms)
Download: 1.2ms (-10.8ms?)
According to server-side tcpdump, the first packet is sent after ~186ms.
Log: req: 0.187 header: 0.059 resp: 0.060
3. Same as above, but with inline_images enabled (forces earlier flush?)
TTFB: 152ms (+86ms)
Downloading: 54ms (+42ms)
Log: req: 0.195 header: 0.060 resp: 0.061
4. Only extend_cache filter enabled:
TTFB: 149ms (+83ms)
Download: 1.1ms (-10.9ms?)
Log: req: 0.136 header: 0.060 resp: 0.061
pagespeed off;
pagespeed FileCachePath /redacted/path_on_local_filesystem/ngx_pagespeed_cache;
pagespeed LRUCacheKbPerProcess 8192;
pagespeed LRUCacheByteLimit 16384;
pagespeed DefaultSharedMemoryCacheKB 50000;
pagespeed EnableCachePurge on;
pagespeed Statistics on;
pagespeed StatisticsLogging on;
pagespeed LogDir /redacted/path_on_local_filesystem/pagespeed;
pagespeed AdminPath /redacted;
pagespeed UsePerVhostStatistics on;
pagespeed MessageBufferSize 100000;
pagespeed ImageMaxRewritesAtOnce 20;
pagespeed XHeaderValue "redacted";
pagespeed UrlSigningKey "redacted";
gzip on;
gzip_comp_level 5;
pagespeed on;
pagespeed RewriteLevel PassThrough;
pagespeed EnableFilters add_head;
pagespeed EnableFilters add_instrumentation;
pagespeed EnableFilters collapse_whitespace;
pagespeed EnableFilters combine_css,rewrite_css,fallback_rewrite_css_urls,move_css_to_head,move_css_above_scripts;
pagespeed EnableFilters combine_javascript,rewrite_javascript;
pagespeed EnableFilters extend_cache;
pagespeed EnableFilters recompress_images,insert_image_dimensions,resize_rendered_image_dimensions;
pagespeed EnableFilters lazyload_images;
pagespeed EnableFilters responsive_images,responsive_images_zoom;
pagespeed EnableFilters remove_comments;
pagespeed DisableFilters inline_images,convert_jpeg_to_webp;
pagespeed InPlaceResourceOptimization off;
pagespeed StickyQueryParameters redacted;
pagespeed OptionCookiesDurationMs 300;
[ various pagespeed location directives omitted ]
pagespeed Domain https://www.example.com;
pagespeed LoadFromFile "https://www.example.com" "/redacted/path_on_local_filesystem/example.com/";
pagespeed LoadFromFileRuleMatch disallow .*;
pagespeed LoadFromFileRuleMatch allow \.css$;
pagespeed LoadFromFileRuleMatch allow \.js$;
pagespeed LoadFromFileRuleMatch allow \.jpg$;
pagespeed LoadFromFileRuleMatch allow \.gif$;
pagespeed LoadFromFileRuleMatch allow \.png$;
pagespeed LoadFromFileRuleMatch allow \.ico$;
2016/04/29 03:34:57 [debug] 81765#81765: *1 post event 00000000024B44D0
2016/04/29 03:34:57 [debug] 81765#81765: *1 delete posted event 00000000024B44D0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 idle handler
2016/04/29 03:34:57 [debug] 81765#81765: *1 reusable connection: 0
2016/04/29 03:34:57 [debug] 81765#81765: *1 posix_memalign: 000000000266AFD0:4096 @16
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 read handler
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL_read: 57
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL_read: 17
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL_read: -1
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL_get_error: 2
2016/04/29 03:34:57 [debug] 81765#81765: *1 process http2 frame type:1 f:25 l:48 sid:31
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 HEADERS frame sid:31 on 0 excl:0 weight:256
2016/04/29 03:34:57 [debug] 81765#81765: *1 posix_memalign: 0000000002682C80:1024 @16
2016/04/29 03:34:57 [debug] 81765#81765: *1 posix_memalign: 00000000026D0F20:4096 @16
2016/04/29 03:34:57 [debug] 81765#81765: *1 posix_memalign: 000000000267F570:4096 @16
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 get indexed header name: 80
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 get indexed header name: 2
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 hpack encoded string length: 4
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 hpack encoded string length: 20
2016/04/29 03:34:57 [debug] 81765#81765: *1 http uri: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http args: "[redacted]"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http exten: "php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 get indexed header name: 7
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 get indexed header name: 79
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 http header: "accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 get indexed header name: 78
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 http header: "accept-encoding: gzip, deflate, sdch"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 get indexed header name: 77
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 http header: "accept-language: en-US,en;q=0.8"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 get indexed header name: 76
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 get indexed header name: 75
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 get indexed header name: 74
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 get indexed header name: 73
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 get indexed header name: 72
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 get indexed header name: 66
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 get indexed header name: 71
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 get indexed header name: 70
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 http header: "referer: https://example.com/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 get indexed header name: 69
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 http header: "upgrade-insecure-requests: 1"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 get indexed header name: 68
2016/04/29 03:34:57 [debug] 81765#81765: *1 posix_memalign: 00000000026D3B70:1024 @16
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 http header: "user-agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 http request line: "GET /redacted/example.php HTTP/2.0"
2016/04/29 03:34:57 [debug] 81765#81765: *1 generic phase: 0
2016/04/29 03:34:57 [debug] 81765#81765: *1 rewrite phase: 1
2016/04/29 03:34:57 [debug] 81765#81765: *1 test location: ~ "\.php$"
2016/04/29 03:34:57 [debug] 81765#81765: *1 using configuration "\.php$"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http cl:-1 max:52428800
2016/04/29 03:34:57 [debug] 81765#81765: *1 rewrite phase: 3
2016/04/29 03:34:57 [debug] 81765#81765: *1 post rewrite phase: 4
2016/04/29 03:34:57 [debug] 81765#81765: *1 generic phase: 5
2016/04/29 03:34:57 [debug] 81765#81765: *1 generic phase: 6
2016/04/29 03:34:57 [debug] 81765#81765: *1 generic phase: 7
2016/04/29 03:34:57 [debug] 81765#81765: *1 access phase: 8
2016/04/29 03:34:57 [debug] 81765#81765: *1 access phase: 9
2016/04/29 03:34:57 [debug] 81765#81765: *1 access phase: 10
2016/04/29 03:34:57 [debug] 81765#81765: *1 post access phase: 11
2016/04/29 03:34:57 [debug] 81765#81765: *1 pagespeed phase: 12
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed handler "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http cleanup add: 000000000267FF70
2016/04/29 03:34:57 [debug] 81765#81765: *1 Passing on content handling for non-pagespeed resource 'https://example.com/redacted/example.php'
2016/04/29 03:34:57 [debug] 81765#81765: *1 try files phase: 13
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script var: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 trying to use file: "/redacted/example.php" "/path/to/example.com/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 try file uri: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 posix_memalign: 0000000002680580:4096 @16
2016/04/29 03:34:57 [debug] 81765#81765: *1 http body new buf t:0 f:0 0000000000000000, pos 0000000000000000, size: 0 file: 0, size: 0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http init upstream, client timer: 0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http map started
2016/04/29 03:34:57 [debug] 81765#81765: *1 http map: "" "off"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script copy: "HTTPS"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script var: "off"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "HTTPS: off"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script copy: "QUERY_STRING"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script var: "[redacted]"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "QUERY_STRING: [redacted]"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script copy: "REQUEST_METHOD"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script var: "GET"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "REQUEST_METHOD: GET"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script copy: "CONTENT_TYPE"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "CONTENT_TYPE: "
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script copy: "CONTENT_LENGTH"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script var: "0"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "CONTENT_LENGTH: 0"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script copy: "SCRIPT_NAME"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script var: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "SCRIPT_NAME: /redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script copy: "REQUEST_URI"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script var: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "REQUEST_URI: /redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script copy: "DOCUMENT_URI"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script var: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "DOCUMENT_URI: /redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script copy: "DOCUMENT_ROOT"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script var: "/path/to/example.com"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "DOCUMENT_ROOT: /path/to/example.com"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script copy: "SERVER_PROTOCOL"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script var: "HTTP/2.0"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "SERVER_PROTOCOL: HTTP/2.0"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script copy: "REQUEST_SCHEME"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script var: "https"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "REQUEST_SCHEME: https"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script copy: "HTTPS"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script var: "on"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "HTTPS: on"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script copy: "GATEWAY_INTERFACE"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script copy: "CGI/1.1"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script copy: "SERVER_SOFTWARE"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script copy: "nginx/"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script var: "1.9.15"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "SERVER_SOFTWARE: nginx/1.9.15"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script copy: "REMOTE_ADDR"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script var: "1.2.3.4"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "REMOTE_ADDR: 1.2.3.4"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script copy: "REMOTE_PORT"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script var: "38659"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "REMOTE_PORT: 38659"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script copy: "REMOTE_USER"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "REMOTE_USER: "
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script copy: "SERVER_ADDR"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script var: "4.3.2.1"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "SERVER_ADDR: 4.3.2.1"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script copy: "SERVER_PORT"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script var: "443"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "SERVER_PORT: 443"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script copy: "SERVER_NAME"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script var: "example.com"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "SERVER_NAME: example.com"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script copy: "REDIRECT_STATUS"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script copy: "200"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "REDIRECT_STATUS: 200"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script copy: "SCRIPT_FILENAME"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script var: "/path/to/example.com"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http script var: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "SCRIPT_FILENAME: /path/to/example.com/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "HTTP_HOST: example.com"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "HTTP_ACCEPT: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "HTTP_ACCEPT_ENCODING: gzip, deflate, sdch"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "HTTP_ACCEPT_LANGUAGE: en-US,en;q=0.8"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "HTTP_REFERER: https://example.com/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "HTTP_UPGRADE_INSECURE_REQUESTS: 1"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "HTTP_USER_AGENT: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36"
2016/04/29 03:34:57 [debug] 81765#81765: *1 fastcgi param: "HTTP_COOKIE: [redacted]"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http cleanup add: 0000000002680DB8
2016/04/29 03:34:57 [debug] 81765#81765: *1 get rr peer, try: 1
2016/04/29 03:34:57 [debug] 81765#81765: *1 stream socket 54
2016/04/29 03:34:57 [debug] 81765#81765: *1 epoll add connection: fd:54 ev:80002005
2016/04/29 03:34:57 [debug] 81765#81765: *1 connect to unix:/run/php-fpm/redacted.sock, fd:54 #10
2016/04/29 03:34:57 [debug] 81765#81765: *1 connected
2016/04/29 03:34:57 [debug] 81765#81765: *1 http upstream connect: 0
2016/04/29 03:34:57 [debug] 81765#81765: *1 posix_memalign: 000000000266C0E0:128 @16
2016/04/29 03:34:57 [debug] 81765#81765: *1 http upstream send request
2016/04/29 03:34:57 [debug] 81765#81765: *1 http upstream send request body
2016/04/29 03:34:57 [debug] 81765#81765: *1 chain writer buf fl:0 s:1560
2016/04/29 03:34:57 [debug] 81765#81765: *1 chain writer in: 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 writev: 1560 of 1560
2016/04/29 03:34:57 [debug] 81765#81765: *1 chain writer out: 0000000000000000
2016/04/29 03:34:57 [debug] 81765#81765: *1 event timer add: 54: 60000:1461893757079
2016/04/29 03:34:57 [debug] 81765#81765: *1 http finalize request: -4, "/redacted/example.php" a:1, c:2
2016/04/29 03:34:57 [debug] 81765#81765: *1 http request count:2 blk:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 frame complete pos:000000000268D579 end:000000000268D58A
2016/04/29 03:34:57 [debug] 81765#81765: *1 process http2 frame type:6 f:0 l:8 sid:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 PING frame, flags: 0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 frame complete pos:000000000268D58A end:000000000268D58A
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 frame out: 000000000266B230 sid:0 bl:0 len:8
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026D4120:16384
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL buf copy: 17
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL to write: 17
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL_write: 17
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 frame sent: 000000000266B230 sid:0 bl:0 len:8
2016/04/29 03:34:57 [debug] 81765#81765: *1 event timer del: 53: 1461893773369
2016/04/29 03:34:57 [debug] 81765#81765: *1 post event 00000000025145A0
2016/04/29 03:34:57 [debug] 81765#81765: *1 delete posted event 00000000025145A0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http upstream request: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http upstream dummy handler
2016/04/29 03:34:57 [debug] 81765#81765: *1 post event 00000000024B4590
2016/04/29 03:34:57 [debug] 81765#81765: *1 post event 00000000025145A0
2016/04/29 03:34:57 [debug] 81765#81765: *1 delete posted event 00000000024B4590
2016/04/29 03:34:57 [debug] 81765#81765: *1 http upstream request: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http upstream process header
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 000000000266DE40:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 01
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 06
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 00
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 01
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 00
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 9D
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 03
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 00
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record length: 157
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi parser: 0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi header: "Expires: Thu, 19 Nov 1981 08:52:00 GMT"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi parser: 0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi header: "Cache-Control: no-store, no-cache, must-revalidate"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi parser: 0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi header: "Pragma: no-cache"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi parser: 0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi header: "Content-type: text/html; charset=ISO-8859-1"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi parser: 1
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi header done
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite header filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 01
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 06
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 00
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 01
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: FF
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: F8
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 00
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 00
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record length: 65528
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DEF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http upstream process non buffered downstream
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 01
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 06
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 00
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 01
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: FF
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: F8
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 00
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 00
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record length: 65528
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DEF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 00000000026811A0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 01
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 06
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 00
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 01
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: FF
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: F8
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 00
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 00
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record length: 65528
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DEF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 00000000026811B0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002680DF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 01
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 06
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 00
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 01
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: FF
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: F8
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 00
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 00
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record length: 65528
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DEF0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 00000000026811A0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 3952 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 4096 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 0000000002681140
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 2848 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 01
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 06
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 00
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 01
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 09
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: D0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 00
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 00
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record length: 2512
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266DF80
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 01
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 06
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 00
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 01
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 00
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 03
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 05
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 00
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record length: 3
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi output buf 000000000266E958
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 00000000026811A0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 -1 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv() not ready (11: Resource temporarily unavailable)
2016/04/29 03:34:57 [debug] 81765#81765: *1 event timer: 54, old: 1461893757079, new: 1461893757139
2016/04/29 03:34:57 [debug] 81765#81765: *1 delete posted event 00000000025145A0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http upstream request: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http upstream dummy handler
2016/04/29 03:34:57 [debug] 81765#81765: *1 post event 00000000024B4590
2016/04/29 03:34:57 [debug] 81765#81765: *1 post event 00000000025145A0
2016/04/29 03:34:57 [debug] 81765#81765: *1 delete posted event 00000000024B4590
2016/04/29 03:34:57 [debug] 81765#81765: *1 http upstream request: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http upstream process non buffered upstream
2016/04/29 03:34:57 [debug] 81765#81765: *1 recv: fd:54 16 of 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 01
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 03
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 00
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 01
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 00
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 08
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 00
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record byte: 00
2016/04/29 03:34:57 [debug] 81765#81765: *1 http fastcgi record length: 8
2016/04/29 03:34:57 [debug] 81765#81765: *1 finalize http upstream request: 0
2016/04/29 03:34:57 [debug] 81765#81765: *1 finalize http fastcgi request
2016/04/29 03:34:57 [debug] 81765#81765: *1 free rr peer 1 0
2016/04/29 03:34:57 [debug] 81765#81765: *1 close http upstream connection: 54
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 000000000266C0E0, unused: 48
2016/04/29 03:34:57 [debug] 81765#81765: *1 event timer del: 54: 1461893757079
2016/04/29 03:34:57 [debug] 81765#81765: *1 delete posted event 00000000025145A0
2016/04/29 03:34:57 [debug] 81765#81765: *1 reusable connection: 0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http output filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http postpone filter "/redacted/example.php" 00007FFFAD099020
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed html rewrite body filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http copy filter: -2 "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http finalize request: -2, "/redacted/example.php" a:1, c:1
2016/04/29 03:34:57 [debug] 81765#81765: *1 event timer add: 53: 60000:1461893757143
2016/04/29 03:34:57 [info] 81765#81819: [ngx_pagespeed 1.11.33.0-0] https://example.com/redacted/example.php:136:Unclosed element `form'
2016/04/29 03:34:57 [info] 81765#81819: [ngx_pagespeed 1.11.33.0-0] https://example.com/redacted/example.php:137:Unexpected close-tag `form', no tags are open
2016/04/29 03:34:57 [info] 81765#81819: [ngx_pagespeed 1.11.33.0-0] https://example.com/redacted/example.php:232:Unexpected close-tag `div', no tags are open
2016/04/29 03:34:57 [info] 81765#81819: [ngx_pagespeed 1.11.33.0-0] https://example.com/redacted/example.php:272:Unexpected close-tag `td', no tags are open
2016/04/29 03:34:57 [debug] 81765#81765: *1 ps fetch handler: /redacted/example.php
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 header filter
2016/04/29 03:34:57 [debug] 81765#81765: *1 posix_memalign: 00000000026DA040:4096 @16
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 output header: ":status: 200"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 output header: "server: nginx"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 output header: "content-type: text/html; charset=ISO-8859-1"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 output header: "pragma: no-cache"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 output header: "date: Fri, 29 Apr 2016 01:34:57 GMT"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 output header: "x-page-speed: on"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 output header: "cache-control: max-age=0, no-cache, no-store"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 output header: "content-encoding: gzip"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2:31 create HEADERS frame 00000000026814E0: len:137
2016/04/29 03:34:57 [debug] 81765#81765: *1 http cleanup add: 00000000026DA188
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 frame out: 00000000026814E0 sid:31 bl:1 len:137
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL buf copy: 9
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL buf copy: 137
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2:31 HEADERS frame 00000000026814E0 was sent
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 frame sent: 00000000026814E0 sid:31 bl:1 len:137
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026DB050:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026DC060:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 CollectAccumulatedWrites, -2
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http gzip filter
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 0000000002754030:270336
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip alloc: n:1 s:5936 a:8192 p:0000000002754030
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip alloc: n:32768 s:2 a:65536 p:0000000002756030
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip alloc: n:32768 s:2 a:65536 p:0000000002766030
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip alloc: n:32768 s:2 a:65536 p:0000000002776030
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip alloc: n:16384 s:4 a:65536 p:0000000002786030
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026DAB70
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DA1A0 ni:00000000026DB050 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026DD070:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026DB050 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026DC050 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DA1A0 pos:00000000026DB050
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026DAB80
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DA200 ni:00000000026DC060 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026DC060 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026DD060 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DA200 pos:00000000026DC060
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026DAB90
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DA270 ni:00000000026DA2C0 ai:2190
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026DA2C0 no:00000000026DD070 ai:2190 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026DAB4E no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DA270 pos:00000000026DA2C0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 0000000000000000
2016/04/29 03:34:57 [debug] 81765#81765: *1 http finalize request: -2, "/redacted/example.php" a:1, c:1
2016/04/29 03:34:57 [debug] 81765#81765: *1 event timer: 53, old: 1461893757143, new: 1461893757312
2016/04/29 03:34:57 [debug] 81765#81765: *1 ps fetch handler: /redacted/example.php
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026DE080:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026DF090:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026E00A0:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026E10B0:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026E20C0:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026E30D0:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026E40E0:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026E50F0:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026E6100:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026E7110:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 posix_memalign: 00000000026E8120:4096 @16
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026E9130:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026EA140:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026EB150:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026EC160:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026ED170:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026EE180:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026EF190:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026F01A0:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026F11B0:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026F21C0:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026F31D0:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026F41E0:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026F51F0:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026F6200:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026F7210:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 posix_memalign: 00000000026F8220:4096 @16
2016/04/29 03:34:57 [debug] 81765#81765: *1 CollectAccumulatedWrites, -2
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http gzip filter
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E8850
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DAC00 ni:00000000026DE080 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026DE080 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026DF080 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DAC00 pos:00000000026DE080
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E8860
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DAC70 ni:00000000026DF090 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026DF090 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026E0090 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DAC70 pos:00000000026DF090
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E8870
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DACE0 ni:00000000026E00A0 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026E00A0 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026E10A0 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DACE0 pos:00000000026E00A0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E8880
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DAD50 ni:00000000026E10B0 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026E10B0 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026E20B0 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DAD50 pos:00000000026E10B0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E8890
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DADC0 ni:00000000026E20C0 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026E20C0 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026E30C0 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DADC0 pos:00000000026E20C0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E88A0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DAE30 ni:00000000026E30D0 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026E30D0 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026E40D0 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DAE30 pos:00000000026E30D0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E88B0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DAEA0 ni:00000000026E40E0 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026E40E0 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026E50E0 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DAEA0 pos:00000000026E40E0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E88C0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DAF10 ni:00000000026E50F0 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026E50F0 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026E60F0 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DAF10 pos:00000000026E50F0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E88D0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DAF80 ni:00000000026E6100 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026E6100 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026E7100 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DAF80 pos:00000000026E6100
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E88E0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DAFF0 ni:00000000026E7110 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026E7110 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026E8110 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026DAFF0 pos:00000000026E7110
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E88F0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8160 ni:00000000026E9130 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026E9130 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026EA130 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8160 pos:00000000026E9130
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E8900
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E81D0 ni:00000000026EA140 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026EA140 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026EB140 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E81D0 pos:00000000026EA140
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E8910
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8240 ni:00000000026EB150 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026EB150 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026EC150 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8240 pos:00000000026EB150
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E8920
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E82B0 ni:00000000026EC160 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026EC160 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026ED160 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E82B0 pos:00000000026EC160
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E8930
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8320 ni:00000000026ED170 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026ED170 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026EE170 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8320 pos:00000000026ED170
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E8940
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8390 ni:00000000026EE180 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026EE180 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026EF180 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8390 pos:00000000026EE180
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E8950
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8400 ni:00000000026EF190 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026EF190 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026F0190 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8400 pos:00000000026EF190
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E8960
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8470 ni:00000000026F01A0 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026F01A0 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026F11A0 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8470 pos:00000000026F01A0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E8970
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E84E0 ni:00000000026F11B0 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026F11B0 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026F21B0 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E84E0 pos:00000000026F11B0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E8980
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8550 ni:00000000026F21C0 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026F21C0 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026F31C0 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8550 pos:00000000026F21C0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E8990
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E85C0 ni:00000000026F31D0 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026F31D0 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026F41D0 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E85C0 pos:00000000026F31D0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E89A0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8630 ni:00000000026F41E0 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026F41E0 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026F51E0 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8630 pos:00000000026F41E0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E89B0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E86A0 ni:00000000026F51F0 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026F51F0 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026F61F0 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E86A0 pos:00000000026F51F0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E89C0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8710 ni:00000000026F6200 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026F6200 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026F7200 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8710 pos:00000000026F6200
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E89D0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8780 ni:00000000026F7210 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026F7210 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026F8210 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8780 pos:00000000026F7210
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026E89E0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E87F0 ni:00000000026F8240 ai:2419
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026F8240 no:00000000026DD070 ai:2419 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026F8BB3 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E87F0 pos:00000000026F8240
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 0000000000000000
2016/04/29 03:34:57 [debug] 81765#81765: *1 http finalize request: -2, "/redacted/example.php" a:1, c:1
2016/04/29 03:34:57 [debug] 81765#81765: *1 event timer: 53, old: 1461893757143, new: 1461893757318
2016/04/29 03:34:57 [info] 81765#81819: [ngx_pagespeed 1.11.33.0-0] https://example.com/redacted/example.php:2606:Invalid tag syntax: expected `>' after `</STR' got `.'
2016/04/29 03:34:57 [info] 81765#81819: [ngx_pagespeed 1.11.33.0-0] https://example.com/redacted/example.php:2639:Invalid tag syntax: expected `>' after `</STR' got `.'
2016/04/29 03:34:57 [debug] 81765#81765: *1 ps fetch handler: /redacted/example.php
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026F9230:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026FA240:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026FB250:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026FC260:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026FD270:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026FE280:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026FF290:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000027002A0:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000027012B0:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000027022C0:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000027032D0:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000027042E0:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000027052F0:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 0000000002706300:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 0000000002707310:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 0000000002708320:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 0000000002709330:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 000000000270A340:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 000000000270B350:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 000000000270C360:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 000000000270D370:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 000000000270E380:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 000000000270F390:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000027103A0:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000027113B0:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000027123C0:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 CollectAccumulatedWrites, -2
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http gzip filter
2016/04/29 03:34:57 [debug] 81765#81765: *1 posix_memalign: 00000000027133D0:4096 @16
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026F90B8
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E89F0 ni:00000000026F9230 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026F9230 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026FA230 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E89F0 pos:00000000026F9230
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026F90C8
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8A60 ni:00000000026FA240 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026FA240 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026FB240 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8A60 pos:00000000026FA240
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026F90D8
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8AD0 ni:00000000026FB250 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026FB250 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026FC250 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8AD0 pos:00000000026FB250
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026F90E8
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8B40 ni:00000000026FC260 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026FC260 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026FD260 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8B40 pos:00000000026FC260
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026F90F8
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8BB0 ni:00000000026FD270 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026FD270 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026FE270 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8BB0 pos:00000000026FD270
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026F9108
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8C20 ni:00000000026FE280 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026FE280 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026FF280 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8C20 pos:00000000026FE280
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026F9118
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8C90 ni:00000000026FF290 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026FF290 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:0000000002700290 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8C90 pos:00000000026FF290
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026F9128
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8D00 ni:00000000027002A0 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000027002A0 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000027012A0 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8D00 pos:00000000027002A0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026F9138
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8D70 ni:00000000027012B0 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000027012B0 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000027022B0 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8D70 pos:00000000027012B0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026F9148
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8DE0 ni:00000000027022C0 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000027022C0 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000027032C0 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8DE0 pos:00000000027022C0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026F9158
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8E50 ni:00000000027032D0 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000027032D0 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000027042D0 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8E50 pos:00000000027032D0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026F9168
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8EC0 ni:00000000027042E0 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000027042E0 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000027052E0 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8EC0 pos:00000000027042E0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026F9178
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8F30 ni:00000000027052F0 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000027052F0 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000027062F0 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8F30 pos:00000000027052F0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026F9188
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8FA0 ni:0000000002706300 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:0000000002706300 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:0000000002707300 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E8FA0 pos:0000000002706300
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026F9198
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E9010 ni:0000000002707310 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:0000000002707310 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:0000000002708310 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E9010 pos:0000000002707310
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026F91A8
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E9080 ni:0000000002708320 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:0000000002708320 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:0000000002709320 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026E9080 pos:0000000002708320
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026F91B8
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026F8BB8 ni:0000000002709330 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:0000000002709330 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:000000000270A330 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026F8BB8 pos:0000000002709330
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026F91C8
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026F8C08 ni:000000000270A340 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:000000000270A340 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:000000000270B340 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026F8C08 pos:000000000270A340
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026F91D8
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026F8C68 ni:000000000270B350 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:000000000270B350 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:000000000270C350 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026F8C68 pos:000000000270B350
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026F91E8
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026F8CD8 ni:000000000270C360 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:000000000270C360 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:000000000270D360 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026F8CD8 pos:000000000270C360
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026F91F8
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026F8D48 ni:000000000270D370 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:000000000270D370 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:000000000270E370 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026F8D48 pos:000000000270D370
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000026F9208
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026F8DB8 ni:000000000270E380 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:000000000270E380 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:000000000270F380 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026F8DB8 pos:000000000270E380
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000027133F0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026F8E28 ni:000000000270F390 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:000000000270F390 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:0000000002710390 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026F8E28 pos:000000000270F390
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 0000000002713400
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026F8E98 ni:00000000027103A0 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000027103A0 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000027113A0 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026F8E98 pos:00000000027103A0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 0000000002713410
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026F8F08 ni:00000000027113B0 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000027113B0 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000027123B0 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026F8F08 pos:00000000027113B0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 0000000002713420
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026F8F78 ni:00000000027123C0 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000027123C0 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000027133C0 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026F8F78 pos:00000000027123C0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 0000000002713430
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026F8FE8 ni:00000000026F9038 ai:111
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000026F9038 no:00000000026DD070 ai:111 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000026F90A7 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000026F8FE8 pos:00000000026F9038
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 0000000000000000
2016/04/29 03:34:57 [debug] 81765#81765: *1 http finalize request: -2, "/redacted/example.php" a:1, c:1
2016/04/29 03:34:57 [debug] 81765#81765: *1 event timer del: 53: 1461893757143
2016/04/29 03:34:57 [debug] 81765#81765: *1 event timer add: 53: 60000:1461893757457
2016/04/29 03:34:57 [info] 81765#81819: [ngx_pagespeed 1.11.33.0-0] https://example.com/redacted/example.php:3710:Unexpected close-tag `tr', no tags are open
2016/04/29 03:34:57 [info] 81765#81819: [ngx_pagespeed 1.11.33.0-0] https://example.com/redacted/example.php:3711:Unexpected close-tag `table', no tags are open
2016/04/29 03:34:57 [info] 81765#81819: [ngx_pagespeed 1.11.33.0-0] https://example.com/redacted/example.php:3711:Unexpected close-tag `td', no tags are open
2016/04/29 03:34:57 [info] 81765#81819: [ngx_pagespeed 1.11.33.0-0] https://example.com/redacted/example.php:3712:Unexpected close-tag `tr', no tags are open
2016/04/29 03:34:57 [info] 81765#81819: [ngx_pagespeed 1.11.33.0-0] https://example.com/redacted/example.php:3717:Unexpected close-tag `table', no tags are open
2016/04/29 03:34:57 [info] 81765#81819: [ngx_pagespeed 1.11.33.0-0] https://example.com/redacted/example.php:3776:Unexpected close-tag `div', no tags are open
2016/04/29 03:34:57 [info] 81765#81819: [ngx_pagespeed 1.11.33.0-0] https://example.com/redacted/example.php:3936:Unexpected close-tag `td', no tags are open
2016/04/29 03:34:57 [info] 81765#81819: [ngx_pagespeed 1.11.33.0-0] https://example.com/redacted/example.php:3937:Unexpected close-tag `tr', no tags are open
2016/04/29 03:34:57 [info] 81765#81819: [ngx_pagespeed 1.11.33.0-0] https://example.com/redacted/example.php:3938:Unexpected close-tag `table', no tags are open
2016/04/29 03:34:57 [debug] 81765#81765: *1 ps fetch handler: /redacted/example.php
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000027143E0:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000027153F0:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 0000000002716400:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 0000000002717410:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 0000000002718420:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 0000000002719430:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 000000000271A440:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 000000000271B450:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 000000000271C460:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 000000000271D470:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 000000000271E480:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 000000000271F490:4086
2016/04/29 03:34:57 [debug] 81765#81765: *1 CollectAccumulatedWrites, -2
2016/04/29 03:34:57 [debug] 81765#81765: *1 http pagespeed write filter "/redacted/example.php"
2016/04/29 03:34:57 [debug] 81765#81765: *1 http gzip filter
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 0000000002713980
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:0000000002713440 ni:00000000027143E0 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000027143E0 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000027153E0 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:0000000002713440 pos:00000000027143E0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 0000000002713990
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000027134B0 ni:00000000027153F0 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:00000000027153F0 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:00000000027163F0 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000027134B0 pos:00000000027153F0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000027139A0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:0000000002713520 ni:0000000002716400 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:0000000002716400 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:0000000002717400 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:0000000002713520 pos:0000000002716400
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000027139B0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:0000000002713590 ni:0000000002717410 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:0000000002717410 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:0000000002718410 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:0000000002713590 pos:0000000002717410
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000027139C0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:0000000002713600 ni:0000000002718420 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:0000000002718420 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:0000000002719420 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:0000000002713600 pos:0000000002718420
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000027139D0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:0000000002713670 ni:0000000002719430 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:0000000002719430 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:000000000271A430 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:0000000002713670 pos:0000000002719430
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000027139E0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000027136E0 ni:000000000271A440 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:000000000271A440 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:000000000271B440 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000027136E0 pos:000000000271A440
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 00000000027139F0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:0000000002713750 ni:000000000271B450 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:000000000271B450 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:000000000271C450 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:0000000002713750 pos:000000000271B450
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 0000000002713A00
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000027137C0 ni:000000000271C460 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:000000000271C460 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:000000000271D460 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000027137C0 pos:000000000271C460
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 0000000002713A10
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:0000000002713830 ni:000000000271D470 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:000000000271D470 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:000000000271E470 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:0000000002713830 pos:000000000271D470
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 0000000002713A20
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000027138A0 ni:000000000271E480 ai:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:000000000271E480 no:00000000026DD070 ai:4096 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:000000000271F480 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:00000000027138A0 pos:000000000271E480
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 0000000002713A30
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:0000000002713910 ni:000000000271F490 ai:4086
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:000000000271F490 no:00000000026DD070 ai:4086 ao:4096 fl:0 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:0000000002720486 no:00000000026DD070 ai:0 ao:4096 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:0000000002713910 pos:000000000271F490
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 0000000000000000
2016/04/29 03:34:57 [debug] 81765#81765: *1 http finalize request: -2, "/redacted/example.php" a:1, c:1
2016/04/29 03:34:57 [debug] 81765#81765: *1 event timer: 53, old: 1461893757457, new: 1461893757525
2016/04/29 03:34:57 [debug] 81765#81765: *1 ps fetch handler: /redacted/example.php
2016/04/29 03:34:57 [debug] 81765#81765: *1 CollectAccumulatedWrites, 0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http gzip filter
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in: 0000000002713AA0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:0000000002713A40 ni:0000000000000000 ai:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:0000000000000000 no:00000000026DD070 ai:0 ao:4096 fl:4 redo:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:0000000000000000 no:00000000026DE070 ai:0 ao:0 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:0000000002713A40 pos:0000000000000000
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 000000000266EE50:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:0000000000000000 no:000000000266EE50 ai:0 ao:4096 fl:4 redo:1
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:0000000000000000 no:000000000266FE50 ai:0 ao:0 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:0000000002713A40 pos:0000000000000000
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000026D8130:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:0000000000000000 no:00000000026D8130 ai:0 ao:4096 fl:4 redo:1
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:0000000000000000 no:00000000026D9130 ai:0 ao:0 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:0000000002713A40 pos:0000000000000000
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 0000000002720490:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:0000000000000000 no:0000000002720490 ai:0 ao:4096 fl:4 redo:1
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:0000000000000000 no:0000000002721490 ai:0 ao:0 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:0000000002713A40 pos:0000000000000000
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000027214A0:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:0000000000000000 no:00000000027214A0 ai:0 ao:4096 fl:4 redo:1
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:0000000000000000 no:00000000027224A0 ai:0 ao:0 rc:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:0000000002713A40 pos:0000000000000000
2016/04/29 03:34:57 [debug] 81765#81765: *1 malloc: 00000000027224B0:4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate in: ni:0000000000000000 no:00000000027224B0 ai:0 ao:4096 fl:4 redo:1
2016/04/29 03:34:57 [debug] 81765#81765: *1 deflate out: ni:0000000000000000 no:0000000002722A3D ai:0 ao:2675 rc:1
2016/04/29 03:34:57 [debug] 81765#81765: *1 gzip in_buf:0000000002713A40 pos:0000000000000000
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 0000000002754030
2016/04/29 03:34:57 [debug] 81765#81765: *1 write new buf t:0 f:0 0000000000000000, pos 00000000009B7800, size: 10 file: 0, size: 0
2016/04/29 03:34:57 [debug] 81765#81765: *1 write new buf t:1 f:0 00000000026DD070, pos 00000000026DD070, size: 4096 file: 0, size: 0
2016/04/29 03:34:57 [debug] 81765#81765: *1 write new buf t:1 f:0 000000000266EE50, pos 000000000266EE50, size: 4096 file: 0, size: 0
2016/04/29 03:34:57 [debug] 81765#81765: *1 write new buf t:1 f:0 00000000026D8130, pos 00000000026D8130, size: 4096 file: 0, size: 0
2016/04/29 03:34:57 [debug] 81765#81765: *1 write new buf t:1 f:0 0000000002720490, pos 0000000002720490, size: 4096 file: 0, size: 0
2016/04/29 03:34:57 [debug] 81765#81765: *1 write new buf t:1 f:0 00000000027214A0, pos 00000000027214A0, size: 4096 file: 0, size: 0
2016/04/29 03:34:57 [debug] 81765#81765: *1 write new buf t:1 f:0 00000000027224B0, pos 00000000027224B0, size: 1429 file: 0, size: 0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http write filter: l:1 f:1 s:21919
2016/04/29 03:34:57 [debug] 81765#81765: *1 http write filter limit 0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2:31 create DATA frame 00000000026814E0: len:8192 flags:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2:31 create DATA frame 0000000002713EB0: len:8192 flags:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2:31 create DATA frame 0000000002713FD8: len:5535 flags:1
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 frame out: 0000000002713FD8 sid:31 bl:0 len:5535
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 frame out: 0000000002713EB0 sid:31 bl:0 len:8192
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 frame out: 00000000026814E0 sid:31 bl:0 len:8192
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL buf copy: 9
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL buf copy: 10
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL buf copy: 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL buf copy: 4086
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL buf copy: 9
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL buf copy: 10
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL buf copy: 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL buf copy: 3922
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL to write: 16384
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL_write: 16384
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL buf copy: 164
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL buf copy: 9
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL buf copy: 10
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL buf copy: 4096
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL buf copy: 1429
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL to write: 5708
2016/04/29 03:34:57 [debug] 81765#81765: *1 SSL_write: 5708
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2:31 DATA frame 00000000026814E0 was sent
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 frame sent: 00000000026814E0 sid:31 bl:0 len:8192
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2:31 DATA frame 0000000002713EB0 was sent
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 frame sent: 0000000002713EB0 sid:31 bl:0 len:8192
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2:31 DATA frame 0000000002713FD8 was sent
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 frame sent: 0000000002713FD8 sid:31 bl:0 len:5535
2016/04/29 03:34:57 [debug] 81765#81765: *1 http write filter 0000000000000000
2016/04/29 03:34:57 [debug] 81765#81765: *1 http finalize request: 0, "/redacted/example.php" a:1, c:1
2016/04/29 03:34:57 [debug] 81765#81765: *1 event timer del: 53: 1461893757457
2016/04/29 03:34:57 [debug] 81765#81765: *1 http request count:1 blk:0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 close stream 31, queued 0, processing 1
2016/04/29 03:34:57 [debug] 81765#81765: *1 http close request
2016/04/29 03:34:57 [debug] 81765#81765: *1 http log handler
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000027224B0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000027214A0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 0000000002720490
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026D8130
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 000000000266EE50
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 000000000271F490
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 000000000271E480
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 000000000271D470
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 000000000271C460
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 000000000271B450
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 000000000271A440
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 0000000002719430
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 0000000002718420
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 0000000002717410
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 0000000002716400
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000027153F0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000027143E0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000027123C0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000027113B0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000027103A0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 000000000270F390
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 000000000270E380
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 000000000270D370
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 000000000270C360
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 000000000270B350
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 000000000270A340
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 0000000002709330
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 0000000002708320
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 0000000002707310
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 0000000002706300
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000027052F0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000027042E0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000027032D0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000027022C0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000027012B0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000027002A0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026FF290
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026FE280
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026FD270
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026FC260
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026FB250
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026FA240
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026F9230
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026F7210
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026F6200
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026F51F0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026F41E0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026F31D0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026F21C0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026F11B0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026F01A0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026EF190
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026EE180
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026ED170
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026EC160
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026EB150
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026EA140
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026E9130
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026E7110
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026E6100
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026E50F0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026E40E0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026E30D0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026E20C0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026E10B0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026E00A0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026DF090
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026DE080
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026DD070
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 0000000000000000
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026DC060
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026DB050
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 000000000266DE40
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026D0F20, unused: 0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 000000000267F570, unused: 2
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 0000000002680580, unused: 15
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026DA040, unused: 0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026E8120, unused: 0
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026F8220, unused: 8
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000027133D0, unused: 558
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 0000000002682C80, unused: 42
2016/04/29 03:34:57 [debug] 81765#81765: *1 free: 00000000026D3B70, unused: 886
2016/04/29 03:34:57 [debug] 81765#81765: *1 post event 00000000024B44D0
2016/04/29 03:34:57 [debug] 81765#81765: *1 delete posted event 00000000024B44D0
2016/04/29 03:34:57 [debug] 81765#81765: *1 http2 handle connection handler
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment