I saw this problem before... it's wrong settings of the "RELATED" block. In your case, i.e. in case a site is getting good traffic, this block's logs should expire faster than normally (by default the TTL is 1 day), so the line
// Remove obsolete records
$delta = time() - $cRelatedDays*24*3600;
can be replaced by
// Remove obsolete records
$delta = time() - 3600; // seconds, you can change this value to more appropriate for your site. Just make sure this block shows relevant results
And constant $cRelatedDays can be removed from the beginning of the block as obsolete.