Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2012-10-11 05:15:57 +0000
committerGreg Wilkins2012-10-11 05:15:57 +0000
commit8c3fa91b261d0a7caf151959d0bbcee2b17e6f40 (patch)
tree6f20e151f6ffa95a59ea686762643a2321159aea /jetty-server/src/main/config/etc/jetty-stats.xml
parent20317fffeb9fd78e5543d55ca382165e7867cd88 (diff)
downloadorg.eclipse.jetty.project-8c3fa91b261d0a7caf151959d0bbcee2b17e6f40.tar.gz
org.eclipse.jetty.project-8c3fa91b261d0a7caf151959d0bbcee2b17e6f40.tar.xz
org.eclipse.jetty.project-8c3fa91b261d0a7caf151959d0bbcee2b17e6f40.zip
jetty-9 reverted to more start.ini rather than start.d usage as we will not be using plugins. More configuration documentation added
Diffstat (limited to 'jetty-server/src/main/config/etc/jetty-stats.xml')
-rw-r--r--jetty-server/src/main/config/etc/jetty-stats.xml16
1 files changed, 6 insertions, 10 deletions
diff --git a/jetty-server/src/main/config/etc/jetty-stats.xml b/jetty-server/src/main/config/etc/jetty-stats.xml
index e0a0c7fec3..03b3d1f0ce 100644
--- a/jetty-server/src/main/config/etc/jetty-stats.xml
+++ b/jetty-server/src/main/config/etc/jetty-stats.xml
@@ -5,15 +5,11 @@
<!-- Mixin the Statistics Handler -->
<!-- =============================================================== -->
-
<Configure id="Server" class="org.eclipse.jetty.server.Server">
-
- <Get id="oldhandler" name="handler"/>
-
- <Set name="handler">
- <New id="StatsHandler" class="org.eclipse.jetty.server.handler.StatisticsHandler">
- <Set name="handler"><Ref id="oldhandler"/></Set>
- </New>
- </Set>
-
+ <Get id="oldhandler" name="handler" />
+ <Set name="handler">
+ <New id="StatsHandler" class="org.eclipse.jetty.server.handler.StatisticsHandler">
+ <Set name="handler"><Ref id="oldhandler" /></Set>
+ </New>
+ </Set>
</Configure>

Back to the top