// TXN PROFILERS
this.txnProfilerStats = new TransactionProfilerStats(this.catalogContext);
this.statsAgent.registerStatsSource(SysProcSelector.TXNPROFILER, 0, this.txnProfilerStats);
// MEMORY
this.memoryStats = new MemoryStats();
this.statsAgent.registerStatsSource(SysProcSelector.MEMORY, 0, this.memoryStats);
// TXN COUNTERS
statsSource = new TransactionCounterStats(this.catalogContext);
this.statsAgent.registerStatsSource(SysProcSelector.TXNCOUNTER, 0, statsSource);