Logging requests on high traffic websites - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T02:46:59Z http://stackoverflow.com/feeds/question/481565 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/481565/logging-requests-on-high-traffic-websites 0 Logging requests on high traffic websites Waleed Eissa 2009-01-26T22:02:06Z 2009-12-09T17:33:52Z <p>I wonder how high traffic websites handle traffic logging, for example a website like myspace.com receives a lot of hits, I can imagine it would take a lot of space to log all those requests, so, do they log every single request or how do they handle this?</p> http://stackoverflow.com/questions/481565/logging-requests-on-high-traffic-websites/481574#481574 1 Answer by cbrulak for Logging requests on high traffic websites cbrulak 2009-01-26T22:05:56Z 2009-01-26T22:05:56Z <p>probably like google analytics. </p> <p>Use Javascript to load a page on a difference server, etc. </p> http://stackoverflow.com/questions/481565/logging-requests-on-high-traffic-websites/481896#481896 0 Answer by hsbsitez for Logging requests on high traffic websites hsbsitez 2009-01-27T00:09:44Z 2009-01-27T00:09:44Z <p>Don't how they track it since I don't work there. I am pretty sure that they have enough storage to record every little thing about their user if they wanted. </p> <p>If I were them, I would use AwStats if I just wanted to know basic stuff about my users. It is more likely that they have developed their own scripts for tracking their users. Stuff they would log -ip_address<br /> -referrer<br /> -time<br /> -browser<br /> -OS </p> <p>and so on. Then a script to see different data about the user varying by day, weeks, or months. As brulak said, something along the line of Analytics, but since they have access to actual database, they can learn much more about their users.</p> http://stackoverflow.com/questions/481565/logging-requests-on-high-traffic-websites/483175#483175 4 Answer by Brent Ozar for Logging requests on high traffic websites Brent Ozar 2009-01-27T12:13:00Z 2009-01-27T12:13:00Z <p>If you view source on a MySpace page, you get the answer:</p> <pre><code>&lt;script type="text/javascript"&gt; var pageTracker = _gat._getTracker("UA-6293770-1"); pageTracker._setDomainName(".myspace.com"); pageTracker._setSampleRate("1"); //sets sampling rate to 1 percent pageTracker._trackPageview(); &lt;/script&gt; </code></pre> <p>That script means they're using Google Analytics.</p> <p>They can't just gauge traffic using IIS logs because they may sell ads to third parties, and third parties won't take your word for how much traffic you get. They want independent numbers from a separate company, and that's where Google Analytics comes in.</p> <p>Just for future reference - whenever you've got a question about how a web site is doing something, try viewing the source. You'd be amazed at what you can find there in plain view.</p> http://stackoverflow.com/questions/481565/logging-requests-on-high-traffic-websites/483191#483191 0 Answer by annakata for Logging requests on high traffic websites annakata 2009-01-27T12:16:50Z 2009-01-27T12:16:50Z <p><a href="http://www.zeus.com/products/zxtm/" rel="nofollow">ZXTM</a> traffic shaping and logging, speaking from experience here</p> http://stackoverflow.com/questions/481565/logging-requests-on-high-traffic-websites/483196#483196 1 Answer by Sir Psycho for Logging requests on high traffic websites Sir Psycho 2009-01-27T12:19:26Z 2009-01-27T12:19:26Z <p>We had a similar issue with out Intranet which is used by hundreds of people. The disk activity was huge and performance was being hurt.</p> <p>The short answer is Asynchronous non-blocking logging.</p> http://stackoverflow.com/questions/481565/logging-requests-on-high-traffic-websites/484642#484642 0 Answer by Christian Nunciato for Logging requests on high traffic websites Christian Nunciato 2009-01-27T18:36:45Z 2009-01-27T18:36:45Z <p>I'd be extremely surprised if they didn't log every single request, yes, and operations with particularly high traffic volumes usually roll their own log-management solutions against the raw server logs, in some form or other -- sometimes as simple batch-type processes, sometimes as complete subsystems.</p> <p>One company I worked for, back in the dot-com heyday, got upwards of twenty million pageviews a day; for that site (actually a set of them, running across a few dozen machines in all, as I recall), our ops team wrote a quite sophisticated, clustered solution in C that parsed, translated (into relational storage), compressed and distributed the logs daily. Log files, especially verbose ones, pile up fast, and the commercial solutions available at the time just couldn't cut it.</p> http://stackoverflow.com/questions/481565/logging-requests-on-high-traffic-websites/1875541#1875541 0 Answer by cherouvim for Logging requests on high traffic websites cherouvim 2009-12-09T17:33:52Z 2009-12-09T17:33:52Z <p>If by logging you mean for collecting server related information (request and response times, db and cpu usage per request etc) I think they sample only the 10% or 1% of the traffic. That gives the same results (provide developers with auditing information) without filling in the disks or slowing the site down.</p>