Example of Real-time Log file ----------------------------- JSON: {"timestamp":"2024-02-07T07:54:10.554Z","startTimeMs":1707292450554,"tcpRTTus":30376,"requestTimeMs":65,"timeToFirstByteMs": 11,"cacheAge": 3,"cacheStatus": "MISS","locationID": "parisFR","clientIP": "1.2.3.4","clientPort":6857,"serverIP":"127.127.127.127","serverPort":443,"clientRequestBytes":485,"clientRequestProtocol":"HTTP/1.1","clientRequestScheme":"HTTPS","clientRequestMethod":"GET","clientRequestHost":"example.com","clientRequestPath":"/file.mp4?secure=k9HM7Yn+ta8","clientRequestUserAgent":"curl 7.1","clientRequestRange":"bytes=1000-4000","clientRequestReferer":"https://www.social.network.com","clientRequestCompleted":true,"clientRequestConnTimeout":false,"clientRequestServerPush":false,"clientRequestAccept":"*/*","clientRequestContentType":"text/html","clientRequestVia":"1.0 fred, 1.1 example.com (Apache/1.1)","clientRequestXForwardedFor":"203.0.113.195, 70.41.3.18, 150.172.238.178","clientSSLProtocol":"TLSv1.2","clientSSLCipher":"ECDHE-RSA-AES256-GCM-SHA384","clientSSLFlags":0,"clientCountry":"US","clientASN":3215,"responseStatus":206,"responseBytes":3349,"responseContentEncoding":"gzip","responseContentType":"video/mp4","responseContentRange":"bytes 1000-4000/3349","resourceID":1234567890} TSV: 2024-02-07T07:54:10.554Z 1707292450554 30376 65 11 3 MISS parisFR 1.2.3.4 6857 127.127.127.127 443 485 HTTP/1.1 HTTPS GET example.com /file.mp4?secure=k9HM7Yn+ta8 curl 7.1 bytes=1000-4000 https://www.social.network.com true false false */* text/html 1.0 fred, 1.1 example.com (Apache/1.1) 203.0.113.195, 70.41.3.18, 150.172.238.178 TLSv1.2 ECDHE-RSA-AES256-GCM-SHA384 0 US 3215 206 3349 gzip video/mp4 bytes 1000-4000/3349 1234567890 CSV: 2024-02-07T07:54:10.554Z,1707292450554,30376,65,11,3,MISS,parisFR,1.2.3.4,6857,127.127.127.127,443,485,HTTP/1.1,HTTPS,GET,example.com,/file.mp4?secure=k9HM7Yn+ta8,curl 7.1,bytes=1000-4000,https://www.social.network.com,true,false,false,*/*,text/html,"1.0 fred, 1.1 example.com (Apache/1.1)","203.0.113.195, 70.41.3.18, 150.172.238.178",TLSv1.2,ECDHE-RSA-AES256-GCM-SHA384,0,US,3215,206,3349,gzip,video/mp4,bytes 1000-4000/3349,1234567890 Description of the columns: -------------------------- 2024-02-07T07:54:10.554Z - timestamp - string - Human readable conversion of the `startTimeMs` field in the ISO 8601 format. May contain decimal fraction of seconds. 1707292450554 - startTimeMs - integer - Unix timestamp at which the edge received request from the client. 30376 - tcpRTTus - integer - TCP round-trip time for the initial request on a connection in μs. 65 - requestTimeMs - integer - Duration from the start until the server finished sending response to the client. 11 - timeToFirstByteMs - integer - Duration from the start of the request until the server responded with the first byte. 3 - cacheAge - integer - Time in seconds that the requested content has been stored in the cache. MISS - cacheStatus - string - Cache status (HIT, MISS, ...). parisFR - locationID - sting - Server location. 1.2.3.4 - clientIP - string - IP address of the client. 6857 - clientPort - integer - Client source port. 127.127.127.127 - serverIP - string - IP address of the edge server. 443 - serverPort - integer - Server port. 485 - clientRequestBytes - integer - Number of bytes in the client request. HTTP/1.1 - clientRequestProtocol - string - HTTP protocol of client request. HTTPS - clientRequestScheme - string - The URL scheme requested by the client. GET - clientRequestMethod - string - HTTP method of client request. example.com - clientRequestHost - string - Host requested by the client. /file.mp4?secure=k9HM7Yn+ta8 - clientRequestPath - string - URI path requested by the client including query parameters. curl 7.1 - clientRequestUserAgent - string - User agent reported by the client. bytes=1000-4000 - clientRequestRange - string - Represents the 'Range' HTTP header in the client's request. https://www.social.network.com - clientRequestReferer - string - Represents the 'Referer' HTTP header in the client's request. true - clientRequestCompleted - boolean - Indicates if the client's HTTP request was fully processed successfully. false - clientRequestConnTimeout - boolean - Shows if the connection from the server to the client timed out during the request. false - clientRequestServerPush - boolean - Reports whether HTTP/2 Server Push was utilized. */* - clientRequestAccept - string - Represents the 'Accept' HTTP header in the client's request. text/html - clientRequestContentType - string - Represents the 'Content-Type' HTTP header in the client's request. 1.0 fred, 1.1 example.com (Apache/1.1) - clientRequestVia - string - Represents the 'Via' HTTP header in the client's request. 203.0.113.195, 70.41.3.18, 150.172.238.178 - clientRequestXForwardedFor - string - Represents the 'X-Forwarded-For' HTTP header in the client's request. TLSv1.2 - clientSSLProtocol - string - Client SSL (TLS) protocol. The value "NONE" means that SSL was not used. CDHE-RSA-AES256-GCM-SHA384 - clientSSLCipher - string - Client SSL cipher. 0 - clientSSLFlags - integer - Indicates if SSL session was reused: 0 for no, 1 for yes. US - clientCountry - string - 2-letter ISO-3166 country code of the client IP address. 3215 - clientASN - integer - Client AS number. 206 - responseStatus - integer - HTTP status code returned to the client. 3349 - responseBytes - integer - Number of bytes returned by the server to the client. gzip - responseContentEncoding - string - Encoding type for HTTP response; "NONE" means no compression. video/mp4 - responseContentType - string - Represents the 'Content-Type' HTTP header in the server's response. bytes 1000-4000/3349 - responseContentRange - string - Represents the 'Content-Range' HTTP header in the server's response. 1234567890 - resourceID - integer - ID of the CDN77 resource.