Replaced the aggregated Performance Measurement reports for
individual reports for each tag.
diff --git a/src/main/java/net/onrc/onos/ofcontroller/flowmanager/FlowEventHandler.java b/src/main/java/net/onrc/onos/ofcontroller/flowmanager/FlowEventHandler.java
index 3a68d47..b44a3de 100644
--- a/src/main/java/net/onrc/onos/ofcontroller/flowmanager/FlowEventHandler.java
+++ b/src/main/java/net/onrc/onos/ofcontroller/flowmanager/FlowEventHandler.java
@@ -389,7 +389,13 @@
 	    modifiedFlowPaths.clear();
 
 	    PerformanceMonitor.stop("EventHandler.ProcessAllEvents");
-	    PerformanceMonitor.report();
+
+
+	    PerformanceMonitor.report("EventHandler.ReadTopology");
+	    PerformanceMonitor.report("EventHandler.RecomputeFlows");
+	    PerformanceMonitor.report("EventHandler.WriteFlowsToDb");
+	    PerformanceMonitor.report("EventHandler.NotificationSend.FlowEntryRemoved");
+	    PerformanceMonitor.report("EventHandler.ProcessAllEvents");
 
 	    return;
 	}
@@ -1404,7 +1410,7 @@
 	    entries.add(flowEntry);
 	    flowManager.pushModifiedFlowEntriesToSwitches(entries);
 	    PerformanceMonitor.stop("EventHandler.AddFlowEntryToSwitch");
-	    PerformanceMonitor.report();
+	    PerformanceMonitor.report("EventHandler.AddFlowEntryToSwitch");
 	    return;
 	}
 
@@ -1432,7 +1438,7 @@
 	    entries.add(flowEntry);
 	    flowManager.pushModifiedFlowEntriesToSwitches(entries);
 	    PerformanceMonitor.stop("EventHandler.RemoveFlowEntryFromSwitch");
-	    PerformanceMonitor.report();
+	    PerformanceMonitor.report("EventHandler.RemoveFlowEntryFromSwitch");
 	    return;
 	}