Tjoene Posted April 18, 2011 Posted April 18, 2011 Is there a way to determent how much server load your site causes? And what particular script of page is it that causes it? Thanks, Tjoene Quote
jje Posted April 18, 2011 Posted April 18, 2011 Try putting this code at the very start of your PHP script: <?php $loadavg_array = explode(" ", file_get_contents("/proc/loadavg")); $loadavg = $loadavg_array[2]; ?> and put this at the very end: <?php $loadavg_array = explode(" ", file_get_contents("/proc/loadavg")); $loadavg2 = $loadavg_array[2]; $load = $loadavg2 - $loadavg; echo "Approx script server load: [ $load ]"; ?> Quote
Guest Geoff Posted April 18, 2011 Posted April 18, 2011 Is there a way to determent how much server load your site causes? No, only the collective server load. However, we will be able to determine if your site is causing +20 load. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.