Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
5.4.2
-
None
-
sargis@sargis:~> uname -a
Linux sargis.webbfontaine.am 2.6.37.1-1.2-desktop #1 SMP PREEMPT 2011-02-21 10:34:10 +0100 i686 i686 i386 GNU/Linuxsargis@sargis:~> java -version
java version "1.6.0_24"
Java(TM) SE Runtime Environment (build 1.6.0_24-b07)
Java HotSpot(TM) Server VM (build 19.1-b02, mixed mode)ActiveMQ 5.4.2-fuse-02-00
sargis@sargis:~> uname -a Linux sargis.webbfontaine.am 2.6.37.1-1.2-desktop #1 SMP PREEMPT 2011-02-21 10:34:10 +0100 i686 i686 i386 GNU/Linux sargis@sargis:~> java -version java version "1.6.0_24" Java(TM) SE Runtime Environment (build 1.6.0_24-b07) Java HotSpot(TM) Server VM (build 19.1-b02, mixed mode) ActiveMQ 5.4.2-fuse-02-00
-
Patch Available
Description
Hi all, I am using Apache ActiveMQ v5.4.2-fuse-02-00 and I want to log events related connections and added following line into my config
<loggingBrokerPlugin logAll="false" logConnectionEvents="true"/>
but now in my log I have a lot of noise because it enabled also events related to sessions:
2011-03-23 12:58:55,861 | INFO | Adding Connection : ConnectionInfo
{commandId = 1, responseRequired = true, connectionId = ID:comunalserver-3451-634364032937500000-1:1141, clientId = ID:comunalserver-3451-634364032937500000-1142:0, userName = epaybroker, password = *****, brokerPath = null, brokerMasterConnector = false, manageable = false, clientMaster = false, faultTolerant = false} | org.apache.activemq.broker.util.LoggingBrokerPlugin | ActiveMQ Transport: ssl:///81.89.210.236:2972
2011-03-23 12:58:55,903 | INFO | Adding Session : SessionInfo
| org.apache.activemq.broker.util.LoggingBrokerPlugin | ActiveMQ Transport: ssl:///81.89.210.236:2972
2011-03-23 12:58:56,517 | INFO | Removing Session : SessionInfo
| org.apache.activemq.broker.util.LoggingBrokerPlugin | ActiveMQ Transport: ssl:///192.168.0.30:21258
2011-03-23 12:58:56,517 | INFO | Removing Session : SessionInfo
| org.apache.activemq.broker.util.LoggingBrokerPlugin | ActiveMQ Transport: ssl:///192.168.0.30:21259
2011-03-23 12:58:56,518 | INFO | Adding Session : SessionInfo
| org.apache.activemq.broker.util.LoggingBrokerPlugin | ActiveMQ Transport: ssl:///192.168.0.30:21258
2011-03-23 12:58:56,518 | INFO | Removing Session : SessionInfo
| org.apache.activemq.broker.util.LoggingBrokerPlugin | ActiveMQ Transport: ssl:///192.168.0.30:21258
2011-03-23 12:58:56,518 | INFO | Adding Session : SessionInfo
| org.apache.activemq.broker.util.LoggingBrokerPlugin | ActiveMQ Transport: ssl:///192.168.0.30:21258
........................
........................
I've prepared patch to add additional flag 'logSessionEvents' to have more control what to log. Thanks.