this.addInstrument(dataSourcesCount);
}
@Override
public void updateInstrument(Instrument inst) {
TransactionMgrStats stats = TransactionMgr.getStatistics();
beginCount.clearValue();
beginCount.increment(stats.getBeginCount());
commitCount.clearValue();
commitCount.increment(stats.getCommitCount());
rollbackCount.clearValue();
rollbackCount.increment(stats.getRollbackCount());
activeCount.clearValue();
activeCount.increment(stats.getActiveCount());
dataSourcesCount.clearValue();
dataSourcesCount.increment(stats.getDataSourcesManaged());
super.updateInstrument(inst);
}