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:
Robert Davies 2007-02-20 15:40:08 +00:00
parent c74558bfde
commit f5b1b831b6
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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;