mirror of https://github.com/apache/activemq.git
set stats collection to false by default - a real performance hog - ironically
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@509612 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c74558bfde
commit
f5b1b831b6
|
@ -103,7 +103,7 @@ public class BrokerService implements Service, Serializable {
|
|||
public static final String LOCAL_HOST_NAME;
|
||||
|
||||
private boolean useJmx = true;
|
||||
private boolean enableStatistics = true;
|
||||
private boolean enableStatistics = false;
|
||||
private boolean persistent = true;
|
||||
private boolean populateJMSXUserID = false;
|
||||
private boolean useShutdownHook = true;
|
||||
|
|
|
@ -29,7 +29,7 @@ public class StatisticImpl implements Statistic, Resettable {
|
|||
private String description;
|
||||
private long startTime;
|
||||
private long lastSampleTime;
|
||||
protected boolean enabled= true;
|
||||
protected boolean enabled= false;
|
||||
|
||||
public StatisticImpl(String name, String unit, String description) {
|
||||
this.name = name;
|
||||
|
|
Loading…
Reference in New Issue