Wiki source code of Monitoring
Version 35.1 by Thomas Mortagne on 2024/04/10
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | {{box cssClass="floatinginfobox" title="**Contents**"}} | ||
2 | {{toc/}} | ||
3 | {{/box}} | ||
4 | |||
5 | There are various solutions you can use to monitor a running XWiki instance: | ||
6 | |||
7 | * Install and configure [[Glowroot>>https://glowroot.org]] | ||
8 | * Install and configure [[JavaMelody>>https://github.com/javamelody/javamelody/wiki]] | ||
9 | * [[Use a Profiler>>dev:Community.Profiling]]. This has the advantage of providing advanced information, but has the drawback of being resource intensive and thus slowing the XWiki instance. It also requires a special startup script. | ||
10 | * XWiki is using the [[JMX Technology>>http://en.wikipedia.org/wiki/Java_Management_Extensions]] to provide runtime monitoring of XWiki instances. The following features are available: | ||
11 | ** Monitor the InfiniSpan caches XWiki is using to cache Document data, Users & Groups data and more | ||
12 | ** Monitor the JGroups channel and protocols (when the XWiki Cluster feature is turned on) | ||
13 | ** Monitor the Logback Logging configuration and change it | ||
14 | ** Monitor Solr | ||
15 | ** Monitor Apache DBCP connection pool | ||
16 | ** Monitor Hibernate | ||
17 | |||
18 | {{info}} | ||
19 | XWiki also has a [[Monitor Plugin>>Documentation.AdminGuide.Logging||anchor="HActivatingtheXWikiMonitoringfeature"]] that you can use to monitor execution times. However this plugin is going to be deprecated in the future and replaced by the JMX technology. | ||
20 | {{/info}} | ||
21 | |||
22 | = Glowroot = | ||
23 | |||
24 | {{image reference="glowroot.png" width="650px"/}} | ||
25 | |||
26 | There is nothing specific about XWiki when you install Glowroot, just follow [[the standard documentation>>https://github.com/glowroot/glowroot/wiki/Agent-Installation-%28with-Embedded-Collector%29]]. | ||
27 | |||
28 | = JavaMelody = | ||
29 | |||
30 | [[~[~[image:https://raw.githubusercontent.com/wiki/javamelody/javamelody/resources/screenshots/graphs.png~|~|width="50%"~]~]>>https://github.com/javamelody/javamelody/wiki/Screenshots#charts||style="width:50%"]] | ||
31 | |||
32 | To install JavaMelody for XWiki follow these steps (see the [[JavaMelody user guide>>https://github.com/javamelody/javamelody/wiki/UserGuide]] for more details): | ||
33 | |||
34 | * Download the latest 1.x version of [[javamelody.jar>>https://github.com/javamelody/javamelody/releases]] and [[jrobin-x.jar>>https://repo1.maven.org/maven2/org/jrobin/jrobin/1.5.9/jrobin-1.5.9.jar]] and put them in the ##WEB-INF/lib## folder | ||
35 | ** {{warning}}JavaMelody v2.x moved to Jakarta EE and is not compatible with XWiki{{/warning}} | ||
36 | * Edit ##web.xml## and add the following information:((( | ||
37 | {{code}} | ||
38 | ... | ||
39 | <filter> | ||
40 | <filter-name>monitoring</filter-name> | ||
41 | <filter-class>net.bull.javamelody.MonitoringFilter</filter-class> | ||
42 | </filter> | ||
43 | <!-- to enable BASIC authentication with username and password, but do no want to use a realm and "security-constraint" | ||
44 | The storage files of statistics and of graphs are stored in the temporary directory of the server, unless if you have defined the "storage-directory" path | ||
45 | <filter> | ||
46 | <filter-name>javamelody</filter-name> | ||
47 | <filter-class>net.bull.javamelody.MonitoringFilter</filter-class> | ||
48 | <init-param> | ||
49 | <param-name>authorized-users</param-name> | ||
50 | <param-value>user1:pwd1, user2:pwd2</param-value> | ||
51 | </init-param> | ||
52 | <init-param> | ||
53 | <param-name>storage-directory</param-name> | ||
54 | <param-value>/path/of/javamelody/stats</param-value> | ||
55 | </init-param> | ||
56 | </filter> --> | ||
57 | ... other <filter>s from the default web.xml here ... | ||
58 | |||
59 | <filter-mapping> | ||
60 | <filter-name>monitoring</filter-name> | ||
61 | <url-pattern>/*</url-pattern> | ||
62 | </filter-mapping> | ||
63 | ... other <filter-mapping>s from the default web.xml here ... | ||
64 | |||
65 | <listener> | ||
66 | <listener-class>net.bull.javamelody.SessionListener</listener-class> | ||
67 | </listener> | ||
68 | ... other <listener>s from the default web.xml here ... | ||
69 | ... | ||
70 | {{/code}} | ||
71 | ))) | ||
72 | * Edit ##hibernate.cfg.xml## and add:((( | ||
73 | {{code}} | ||
74 | <property name="jdbc.factory_class">net.bull.javamelody.HibernateBatcherFactory</property> | ||
75 | {{/code}} | ||
76 | ))) | ||
77 | |||
78 | Then restart XWiki and access JavaMelody at ##http:~/~/localhost:8080/xwiki/monitoring##. | ||
79 | |||
80 | {{warning}} | ||
81 | Recent versions of JavaMelody (at least 1.70+ ?) require the configuration in this guide to be adapted like this: | ||
82 | |||
83 | {{code}} | ||
84 | in web.xml: | ||
85 | ----------- | ||
86 | |||
87 | <filter> | ||
88 | <filter-name>javamelody</filter-name> | ||
89 | <filter-class>net.bull.javamelody.MonitoringFilter</filter-class> | ||
90 | <async-supported>true</async-supported> | ||
91 | </filter> | ||
92 | <filter-mapping> | ||
93 | <filter-name>javamelody</filter-name> | ||
94 | <url-pattern>/*</url-pattern> | ||
95 | <dispatcher>REQUEST</dispatcher> | ||
96 | <dispatcher>ASYNC</dispatcher> | ||
97 | </filter-mapping> | ||
98 | <listener> | ||
99 | <listener-class>net.bull.javamelody.SessionListener</listener-class> | ||
100 | </listener> | ||
101 | |||
102 | |||
103 | |||
104 | in hibernate.cfg.xml: | ||
105 | --------------------- | ||
106 | |||
107 | <property name="connection.driver_class">net.bull.javamelody.JdbcDriver</property> | ||
108 | <property name="connection.driver">com.mysql.jdbc.Driver</property> | ||
109 | {{/code}} | ||
110 | {{/warning}} | ||
111 | |||
112 | = JMX Console = | ||
113 | |||
114 | Since JMX is a standard you can use [[any JMX-compatible monitoring console>>http://stackoverflow.com/questions/1744900/what-is-the-best-or-most-commonly-used-jmx-console-client]] (most application servers provide a web-based JMX console). There's also a console called [[JConsole>>http://docs.oracle.com/javase/7/docs/technotes/guides/management/jconsole.html]] which is bundled by default in the Java Runtime you're using. To start it, simply execute the ##jconsole## executable. | ||
115 | |||
116 | {{info}} | ||
117 | Note that starting with XWiki 6.3, if you're using the Standalone Distribution (which bundles Jetty) you can now use ##start_xwiki.sh -j## (or ##start_xwiki.sh ~-~-jmx##) to monitor/manage the Jetty instance itself (it adds Jetty-specific MBeans): | ||
118 | |||
119 | {{image reference="jettymbeans.png"/}} | ||
120 | {{/info}} | ||
121 | |||
122 | == XWiki Caches Monitoring == | ||
123 | |||
124 | XWiki can use different cache implementations. The JBoss Cache and JBoss Infinispan implementations have nice JMX features available as shown below. | ||
125 | |||
126 | Starting with XWiki 3.3 the default implementation is JBoss Infinispan. | ||
127 | |||
128 | === With JBoss Infinispan === | ||
129 | |||
130 | Since JBoss Infinispan natively supports JMX we benefit from this feature directly (JBoss documentation available [[here>>https://docs.jboss.org/author/display/ISPN/Management+Tooling]]). | ||
131 | |||
132 | {{info}} | ||
133 | Prior to XWiki 3.5 the JMX support was not enabled by default. To enable it, edit ##WEB-INF/cache/infinispan/config.xml## and uncomment the two places where the "jmx" string is mentioned | ||
134 | {{/info}} | ||
135 | |||
136 | Example showing the cache list and some statistic for a given cache: | ||
137 | |||
138 | {{image reference="infinispancache.png"/}} | ||
139 | |||
140 | Example showing how to clear a given cache from all its entries: | ||
141 | |||
142 | {{image reference="infinispancacheclearing.png"/}} | ||
143 | |||
144 | === With JBoss Cache === | ||
145 | |||
146 | Since JBoss Cache natively supports JMX we benefit from this feature directly (JBoss documentation available [[here>>https://access.redhat.com/knowledge/docs/en-US/JBoss_Enterprise_Web_Platform/5/html/JBoss_Cache_User_Guide/jmx_reference.html]]). | ||
147 | |||
148 | Example showing all JBoss Caches in memory in a running instance, showing all the elements in the cache (example on the document cache): | ||
149 | |||
150 | {{image reference="jbosscache.png"/}} | ||
151 | |||
152 | Example showing Cache stats (for the document cache): | ||
153 | |||
154 | {{image reference="jbosscache-stats.png"/}} | ||
155 | |||
156 | == Velocity Cache Monitoring == | ||
157 | |||
158 | Velocity caches Velocity macros. XWiki offers a JMX view of the content of the Velocity caches. | ||
159 | |||
160 | JConsole examples showing the Velocity Cache monitoring: | ||
161 | |||
162 | {{image reference="jconsole1.png"/}} | ||
163 | |||
164 | {{image reference="jconsole2.png"/}} | ||
165 | |||
166 | == JGroups Monitoring == | ||
167 | |||
168 | JConsole example showing the JGroups monitoring: | ||
169 | |||
170 | {{image reference="jgroups.png"/}} | ||
171 | |||
172 | Interesting things to do on JGroups in the JMX console: | ||
173 | |||
174 | * Change the log level on the protocols to enable logging | ||
175 | * Disconnect a node from the cluster and reconnect it | ||
176 | |||
177 | == Logback Monitoring == | ||
178 | |||
179 | Since XWiki 14.8 Logback no longer support JMX so you won't be able to use JMX to update your logging configuration. | ||
180 | |||
181 | JConsole example showing how to modify the logging level for a category: | ||
182 | |||
183 | {{image reference="jmx-logging.png"/}} | ||
184 | |||
185 | = Tomcat JMX Proxy Servlet = | ||
186 | |||
187 | Tomcat has a JMX Proxy Servlet bundled in their ##manager## webapp (see [[here>>http://tomcat.apache.org/tomcat-6.0-doc/manager-howto.html]] and [[here>>http://tomcat.apache.org/tomcat-6.0-doc/monitoring.html]] for more details on Tomcat and JMX]]. | ||
188 | |||
189 | Here's some useful URLs to use the JMX Servlet Proxy to list and set JGroups Protocol Levels: | ||
190 | |||
191 | * To display the current log level for the TCPPING protocol: {{{http://localhost:8080/manager/jmxproxy?qry=jgroups:type=protocol,cluster=event,protocol=TCPPING}}} | ||
192 | * To set the log level to ##info## for the TCPPING protocol: {{{http://localhost:8080/manager/jmxproxy?set=jgroups:type=protocol,cluster=event,protocol=TCPPING&att=Level&val=info}}} | ||
193 | |||
194 | = Others = | ||
195 | |||
196 | * It's possible to [[write a Groovy script in a wiki page to access the JMX MBeans>>snippets:Extension.JMX Access]]. | ||
197 | * [[JMX Monitoring Application>>extensions:Extension.JMX Monitoring Application]] | ||
198 | * [[Clearing Document Caches with JMX>>snippets:Extension.Clear Document Caches.WebHome]] | ||
199 | * [[XInit>>extensions:Extension.Xinit]] |