Home | History | Annotate | Download | only in etc
      1 <?xml version="1.0"?>
      2 <!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd">
      3 
      4 <!-- =============================================================== -->
      5 <!-- Mixin the Statistics Handler                                    -->
      6 <!-- =============================================================== -->
      7 
      8 
      9 <Configure id="Server" class="org.eclipse.jetty.server.Server">
     10 
     11     <Get id="oldhandler" name="handler"/>
     12 
     13     <Set name="handler">
     14      <New id="StatsHandler" class="org.eclipse.jetty.server.handler.StatisticsHandler">
     15       <Set name="handler"><Ref id="oldhandler"/></Set>
     16      </New>
     17     </Set>
     18     
     19 </Configure>
     20