NSMutableDictionary newStats = new NSMutableDictionary(5);
newStats.takeValueForKey(statistics.valueForKey("StartedAt"), "startedAt");
NSDictionary tempDict = (NSDictionary) statistics.valueForKey("Transactions");
newStats.takeValueForKey(tempDict.valueForKey("Transactions"), "transactions");
newStats.takeValueForKey(tempDict.valueForKey("Avg. Transaction Time"), "avgTransactionTime");
newStats.takeValueForKey(tempDict.valueForKey("Avg. Idle Time"), "averageIdlePeriod");
tempDict = (NSDictionary) statistics.valueForKey("Sessions");
newStats.takeValueForKey(tempDict.valueForKey("Current Active Sessions"), "activeSessions");