Sha256: 7cd482c24867d2411db69bcf93ede5d05d735a3432eccc6b9744fabfe977f6c9
Contents?: true
Size: 1.15 KB
Versions: 10
Compression:
Stored size: 1.15 KB
Contents
<?xml version="1.0"?> <!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure_9_3.dtd"> <Configure id="Server" class="org.eclipse.jetty.server.Server"> <!-- Create Thread Monitor, and add to the Server as a lifecycle --> <Call name="addBean"> <Arg> <New class="org.eclipse.jetty.monitor.ThreadMonitor"> <Set name="scanInterval">2000</Set> <Set name="busyThreshold">90</Set> <Set name="stackDepth">3</Set> <Set name="trailLength">2</Set> <!-- To enable logging CPU utilization for threads above specified threshold, --> <!-- uncomment the following lines, changing log interval (in milliseconds) --> <!-- and log threshold (in percent) as desired. --> <!-- <Set name="logInterval">10000</Set> <Set name="logThreshold">1</Set> --> <!-- To enable detail dump of the server whenever a thread is detected as spinning, --> <!-- uncomment the following lines. --> <!-- <Set name="dumpable"><Ref refid="Server"/></Set> --> </New> </Arg> </Call> </Configure>
Version data entries
10 entries across 10 versions & 1 rubygems