Logging requests on high traffic websites - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T02:46:59Zhttp://stackoverflow.com/feeds/question/481565http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/481565/logging-requests-on-high-traffic-websites0Logging requests on high traffic websitesWaleed Eissa2009-01-26T22:02:06Z2009-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#4815741Answer by cbrulak for Logging requests on high traffic websitescbrulak2009-01-26T22:05:56Z2009-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#4818960Answer by hsbsitez for Logging requests on high traffic websiteshsbsitez2009-01-27T00:09:44Z2009-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#4831754Answer by Brent Ozar for Logging requests on high traffic websitesBrent Ozar2009-01-27T12:13:00Z2009-01-27T12:13:00Z<p>If you view source on a MySpace page, you get the answer:</p>
<pre><code><script type="text/javascript">
var pageTracker = _gat._getTracker("UA-6293770-1");
pageTracker._setDomainName(".myspace.com");
pageTracker._setSampleRate("1"); //sets sampling rate to 1 percent
pageTracker._trackPageview();
</script>
</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#4831910Answer by annakata for Logging requests on high traffic websitesannakata2009-01-27T12:16:50Z2009-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#4831961Answer by Sir Psycho for Logging requests on high traffic websitesSir Psycho2009-01-27T12:19:26Z2009-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#4846420Answer by Christian Nunciato for Logging requests on high traffic websitesChristian Nunciato2009-01-27T18:36:45Z2009-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#18755410Answer by cherouvim for Logging requests on high traffic websitescherouvim2009-12-09T17:33:52Z2009-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>