protected void populateColumnSchema(ArrayList<ColumnInfo> columns) {
super.populateColumnSchema(columns);
columns.add(new VoltTable.ColumnInfo("PARTITION", VoltType.INTEGER));
// Make a dummy profiler just so that we can get the fields from it
AntiCacheManagerProfiler profiler = new AntiCacheManagerProfiler();
assert(profiler != null);
columns.add(new VoltTable.ColumnInfo("RESTARTED_TXNS", VoltType.INTEGER));
for (ProfileMeasurement pm : profiler.getProfileMeasurements()) {
String name = pm.getName().toUpperCase();
columns.add(new VoltTable.ColumnInfo(name, VoltType.BIGINT));
columns.add(new VoltTable.ColumnInfo(name+"_CNT", VoltType.BIGINT));
} // FOR
}