similar to: Stress Tests from AsteriskGur with Asterisk@Home

Displaying 20 results from an estimated 10000 matches similar to: "Stress Tests from AsteriskGur with Asterisk@Home"

2007 Apr 19
1
Help Astertest - Asterisk stressing tool
Hi, Did someone ever managed to make Astertest (http://www.asteriskguru.com/tutorials/astertest.html) work ? I followed all the instructions of this tutorial and corrected the mistakes pointed by the users but it still doesn't work. I can compile it and load app_securax_cpuinfo.so. When trying to load app_securax_serverload.so I have this error : WARNING[31477] : loader.c: 325
2006 Nov 07
0
astertest
Hi all!! I've made some changes to the applications that Astertest was using to monitor the performance of the server. Now is also possible to track the bandwidth usage of the server, this has nothing to do with the executable (astertest.exe) itself but with the events that the Asterisk Manager generates. The method described in: http://www.asteriskguru.com/tutorials/astertest.html to
2007 Jan 23
2
stress-test realtime voicemail with sipp
We are in the process of implementing realtime voicemail. I was wanting to "stress-test" the system to see if or when it would fall over. Is it possible to use sipp to create say 250 calls, each of which leaves a message in the voicemail ? My dialplan is currently [default] exten => stress,1,Answer() exten => stress,2(vm),Voicemail(7777|su) exten => stress,3,Hangup()
2006 Jun 19
1
software to do sip stress tests
Hi, I want to make some stress tests on two machines were I configured different implementations of open source sip servers. I'm thinking about making some graphics like CPU and memory usage extracted by SNMP while flooding my servers of sip calls. Does anybody know some good software to do that? Regards, Ricardo.
2010 Sep 17
1
How to find STRESS criteria in MDS when there are negative eigenvalues....
Hi, I want to know whether there is any function in R to find STRESS after using cmdscale and estimating the coordinates, I have written these functions to find stress (for p =1,2,3,4,5) stress<-rep(0,5) for(p in 1:5) { datahat<-cmdscale(d,p) deltahat<-as.matrix(dist(datahat)) a<-0 b<-0 for(i in 1:n) { for(j in 1:n) { a<-d[i,j]^2+a b<-(d[i,j]-deltahat[i,j])^2+b } }
2003 Apr 14
1
isoMDS and stress
Hi all, I try to calculate the stress of a configuration using the formula in the isoMDS help, but I don't have the same result than the stress returned by isoMDS : > library(mva) > library(MASS) > data(swiss) > swiss.x <- as.matrix(swiss[,-1]) > swiss.dist <- dist(swiss.x) > swiss.mds <- isoMDS(swiss.dist) initial value 2.979731 iter 5 value 2.431486 iter 10
2005 Nov 04
1
Stress in multidimensional scaling
Hello, We are trying to find a function to compute "stress" in our multidimensional scaling analysis of a dissimilarity matrix. We've used "dist()" to create the matrix and "cmdscale()" for the scaling. In order to determine the number of dimensions we would like to plot stress vs. dimensions. However, we cannot find a pre-made command. It seems that other
2010 Jul 22
1
interpretation of stress in NMDS
Among those users of Primer, stress values greater than 0.3 are interpreted as "questionable". Using both isoMDS and metaMDS (vegan package), the stress values returned are much higher using my own data and using examples provided in R Help. For example Rstress = 8.3, and the stressplot r2 = 0.99 indicating (to me) that the ordination is OK. I am guessing that the "stress"
2008 Feb 20
1
Stress with MDS
Hi, I am looking for the best multidimensional configuration for my data (47*47 distance matrix). I ve tried classical metric (cmdscale) and non metric MDS (isoMDS, nmds) but it is now difficult to choose the best solution because of the uncertainties in the definitions of the "stress" function. So, same problem, several questions : 1. Statistical consideration : With
2011 Mar 10
0
Stress in metaMDS from vegam package
Hi, I have a newbie doubt. I try to use metaMDS in R, it is OK, but the stress that I get is 16.32, in other programs stress is showed like 0.173. I don't find a good explanation about this calculations on books, I think that R show stress em a percentage data (0-100) and other software in a proportional data (0-1), it is correct? Thanks Ronaldo -- 11ª lei - Você deve conhecer mais de
2002 Nov 14
1
Fw: How is the Samba people stress testing Samba.
> > I'm in the "testing and proof" stage of converting from Windows NT 4 to > Linux/SAMBA and I'm very interested in any "stress testing" that you (or > anyone else) could point me to. If you get your DOS Program working, > would you mind sharing it? > > The other thing that interests me in your post is the corruption of a > Paradox database.
2009 Feb 17
2
Stress Testing IVR
Hi, How can I stress test an asterisk IVR? I am looking for some kind of sip phone which can be "programmed" to send out digits after specified time to simulate users pressing menu items. If it can originate large number of calls simultaneously then it's great! Does any one have any recommendations ? Any other method to stress test an IVR call flow? with regards, raj
2005 Oct 12
1
Stress Test by Oddsock
Hello all, I've got a few questions about the recent stress test, I appoligse if any of these have been asked in the past. Just a little background info, I am currently in charge of the server side operation for KUBE Radio (http://www.kuberadio.com), we currently run using icecast over our University's Intranet and this year the stream should be being allowed to broadcast over the net.
2006 Apr 12
1
Macro-hangupcall - has a Wait(5) - Ast@Home --- why?
[macro-hangupcall] exten => s,1,ResetCDR(w) exten => s,2,NoCDR() exten => s,3,Wait(5) exten => s,4,Hangup Hi all, currently i've been getting troubles with SIpphone Sjphone and Xlite seems also to get delay but no crash on hanging. I found that Ast@home is executing this Wait(5) and it seems to me that Sjphone is giving timeout error because of it... Why is this 5 seconnds? any
2012 Feb 27
0
[LLVMdev] llvm-stress for fuzzing llvm
I'm finding it useful to replace the main loop with: for (unsigned i = 0, n = SizeCL/Modifiers.size(); i < n; ++i) { Modifiers[i%Modifiers.size()]->Act(); } That way, changing the size by 1 adds exactly one instruction, which makes delta debugging MUCH easier. Maybe it would be worth changing? --Sean Silva On Sun, Feb 26, 2012 at 9:23 PM, Sean Silva <silvas at
2012 Feb 27
0
[LLVMdev] llvm-stress for fuzzing llvm
Here is that patch. Btw, I've just been using bugpoint, and it's really nifty! --Sean Silva 2012/2/27 Rotem, Nadav <nadav.rotem at intel.com> > Sean, > > Thanks for looking at this. Knowing that the last instruction triggered > the bug is often not enough. I use bugpoint to reduce the failing test. > The reason is that some of the bugs may be caused by the
2008 Jul 16
1
[Fwd: [Fwd: The results of iozone stress on NFS/ZFS and SF X4500 shows the very bad performance in read but good in write]]
Dear ALL, IHAC who would like to use Sun Fire X4500 to be the NFS server for the backend services, and would like to see the potential performance gain comparing to their existing systems. However the outputs of the I/O stress test with iozone show the mixed results as follows: * The read performance sharply degrades (almost down to 1/20, i.e from 2,000,000 down to 100,000) when the
2007 Nov 13
3
Stress-Testing Asterisk
Hi All, I was wondering, what tools are readily available out there in Asteriskland for me to use in stress/load testing asterisk box I have in the lab. I want to observe how my box holds out under heavy/light/medium load. Thanks, Jeng ___________________________________________________________ Want ideas for reducing your carbon footprint? Visit Yahoo! For Good
2010 Jul 22
3
Stress Test
I have an HP Server w/ a Smart Array controller I need to test. I always used to use Inquisitor for this, but the hd tests are flaking out on the cciss syntax and I don't have time to dig into it, the machine is essential and I need to know whats needing to be replaced asap. Anyone know a live cd based stress test that works on SA controllers? Thanks! jlc
2007 Oct 20
2
Xen stress testing for production
Hi -- I''m just a little nervous about deploying my Xen VMs. Will they perform when in actual production? How stable is Xen, really? So, I thought I would do some stress testing before deploying it. I''d like to test VMs running various services, alone and all together... DNS, HTTP/S, Tomcat, IMAP/SMTPD. Does anyone here have suggestions for load generating software? Or, has