search for: loadaverage

Displaying 8 results from an estimated 8 matches for "loadaverage".

2010 Aug 20
5
tools one could to use to troubleshoot for Apache
...n , Suppose i had a client tell me that he can access the web page but it takes long time to view the pages the website is a static website ( suppose this website does not server dynamic data or does not connect to a database )... what would one check other than : the server load ( cat /proc/loadaverage ) , the Apache logs , the number of client connection ( netstat -tupln |grep :80 |wc -l ) -- how would i know if it a client side issue or a server side issue ........ -- Regards Agnello D'souza -------------- next part -------------- An HTML attachment was scrubbed... URL: <http:...
2015 Jun 10
2
[LLVMdev] Contributing a buildbot for the BPF backend
...n that slave in context of the account the build slave will be running in. If you succeed, then the slave is likely ready. You patch doesn't look right. getLLVMBuildFactory does not support cmake, so it wouldn't do what you think it will. For the same reason your slave properties (jobs and loadaverage) wouldn't work. See zorg/buildbot/builders/LLVMBuilder.py for more details. You either build LLVM with configure (this is what the existing LLVM factory does), add a new CMakeBuildFactory to support cmake, or build LLVM+clang with cmake by using a clang build factory. If you use any of the ex...
2015 Jun 17
2
[LLVMdev] Contributing a buildbot for the BPF backend
...uild slave will be running in. >> If you succeed, then the slave is likely ready. >> >> You patch doesn't look right. >> getLLVMBuildFactory does not support cmake, so it wouldn't do what you think >> it will. For the same reason your slave properties (jobs and loadaverage) >> wouldn't work. >> See zorg/buildbot/builders/LLVMBuilder.py for more details. >> >> You either build LLVM with configure (this is what the existing LLVM factory >> does), add a new CMakeBuildFactory to support cmake, or build LLVM+clang >> with cmake by u...
2015 Jun 18
2
[LLVMdev] Contributing a buildbot for the BPF backend
...s likely ready. >> >> >> >> You patch doesn't look right. >> >> getLLVMBuildFactory does not support cmake, so it wouldn't do what you >> >> think >> >> it will. For the same reason your slave properties (jobs and >> >> loadaverage) >> >> wouldn't work. >> >> See zorg/buildbot/builders/LLVMBuilder.py for more details. >> >> >> >> You either build LLVM with configure (this is what the existing LLVM >> >> factory >> >> does), add a new CMakeBuildFactory...
2006 Jun 13
8
IAX2 Vs SIP cpu load
Hello Is it correct that IAX2 uses more CPU, than SIP? Also, can it be true that IAX2 is much more sensitive against high CPU loads? Also, does Asterisk support and use multiprocessor architectures, such as Xeon? ? Regards Jon -- No virus found in this outgoing message. Checked by AVG Free Edition. Version: 7.1.394 / Virus Database: 268.8.3/362 - Release Date: 12-06-2006
2008 Jun 16
3
Apache rewrites with mongrel
I?m knew to rewrites on apache in combination with mongrelcluster. It?s urgend for me, because the server has an loadaverage about 10 :-((((( Ok so I?m using 3 mongrel-server on an mongrelcluster. The Loadbalancer ist apache I think, that my rewrites are not correct. Please can anybody check my rewrites ? That?s in my /etc/apache2/conf.d/rails.proxy_cluster.conf <Proxy balancer://mongrel_cluster> BalancerMembe...
2006 Nov 18
5
Asterisk Manager: equivalent of 'show channels'?
I'm interested in knowing if anyone else has worked around this issue: I have an application that needs to check the status of the calls going through Asterisk about every 5 seconds or so. I don't want to do "asterisk -rx 'show channels verbose'" at the Linux command line 12 times per minute so I am looking at the AMI. I see that there isn't a manager command
2015 May 08
2
[LLVMdev] Contributing a buildbot for the BPF backend
Hi everyone, I am working with Alexei Starovoitov to contribute an LLVM buildbot for the experimental BPF backend. I am following the steps at [1] to setup a buildbot and I was mostly successful: I was able to setup a slave and a temporary master to check its base config. Now I'm not sure about the next step: patching the "slaves.py" and "builders.py" files in zorg. * Is