Has anybody ever got Tomcat's Access Log as JSON with Logstas Logback Encoder?
Even though it should be possible (according to docs) I am not able to get it workin and I am constantly struggling with Tomcat's classpath hell. Tomcat is throwing NoClassDefFoundErrors even though I am 100% sure the classes must exist on the classpath. It just does not make any sense anymore ...
I put all required JARs into Tomcats lib/
directory, added them to the classpath and set up every config file needed (followed multiple official and unofficial tutorials).
Tomcat's Log (catalina.out -> catalina.json) is working fine with Logstash Logback Encoder, but Tomcat's Access Log is a completly different problem ...
No matter what I tried, every time it resulted in one of those:
NoClassDefFoundError: javax/servlet/ServletContainerInitializer
NoClassDefFoundError: org/apache/catalina/Lifecycle
ClassNotFoundException: ch.qos.logback.access.spi.IAccessEvent
Adding logback-access.jar (in addition to all other logback/slf4j/logstash JARs) to the Classpath via bin/setenv.sh breaks the whole classpath (crash-loop with NoClassDefFoundError: org/apache/catalina/Lifecycle
). Adding all other logback/slf4j/logstash JARs without logback-access.jar is working fine (but later results in ClassNotFoundException: ch.qos.logback.access.spi.IAccessEvent
but Tomcat is running fine without Access Logs being written) ...
I can't even provide my current state because I don't know what is the most "right" state which is closest to the solution ...
If somebody got Tomcat's Access Log as JSON please tell me how (even if you use a different Encoder).
Already cost me several days of googling, trial and erroring and all my nerves ...
UPDATE
Here is the proof that Tomcat's Classpath or ClassLoading is pretty ****ed up and makes no sense (started JVM with -verbose:class
), catalina.out
output:
[Loaded ch.qos.logback.access.spi.IAccessEvent from file:/home/tomcat/tomcat_8.5.34/lib/logback-access-1.2.0.jar]
...
java.lang.ClassNotFoundException: ch.qos.logback.access.spi.IAccessEvent
...
The Class must be loaded in another context/Classpath/ClassLoader ... I have no idea how this works ...
I was able to get tomcat access logs in JSON format using the following process:
1) Download and extract tomcat
2) Install required dependencies into tomcat's lib directory
3) Configure
conf/logback-access.xml
4) Configure
conf/server.xml
.Add
<Valve className="ch.qos.logback.access.tomcat.LogbackValve"/>
to the<Host name="localhost"
element. For example:5) Start tomcat
6) After tomcat starts, hit the root url, check the logs, and see the access log entry in json format