Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Unified Diff: pkg/analysis_server/lib/src/analysis_server.dart

Issue 955743002: Add the 'executionDomain' performance tag. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pkg/analysis_server/lib/src/domain_execution.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/src/analysis_server.dart
diff --git a/pkg/analysis_server/lib/src/analysis_server.dart b/pkg/analysis_server/lib/src/analysis_server.dart
index 40297678f22555d376fb68795a83013879084ea1..e536fb7af9100c9f85394021a926db4b3a80f29c 100644
--- a/pkg/analysis_server/lib/src/analysis_server.dart
+++ b/pkg/analysis_server/lib/src/analysis_server.dart
@@ -1326,16 +1326,15 @@ class ServerPerformance {
*/
class ServerPerformanceStatistics {
/**
- * The [PerformanceTag] for time spent in
- * PerformAnalysisOperation._updateIndex.
+ * The [PerformanceTag] for time spent in [ExecutionDomainHandler].
*/
- static PerformanceTag index = new PerformanceTag('index');
+ static PerformanceTag executionDomain = new PerformanceTag('executionDomain');
Paul Berry 2015/02/24 17:28:10 It looks like you're only tracking time spent comp
/**
* The [PerformanceTag] for time spent in
- * PerformAnalysisOperation._sendNotices.
+ * PerformAnalysisOperation._updateIndex.
*/
- static PerformanceTag notices = new PerformanceTag('notices');
+ static PerformanceTag index = new PerformanceTag('index');
/**
* The [PerformanceTag] for time spent performing a _DartIndexOperation.
@@ -1353,4 +1352,10 @@ class ServerPerformanceStatistics {
* AnalysisServer.performOperation when the server is idle.
*/
static PerformanceTag idle = new PerformanceTag('idle');
+
+ /**
+ * The [PerformanceTag] for time spent in
+ * PerformAnalysisOperation._sendNotices.
+ */
+ static PerformanceTag notices = new PerformanceTag('notices');
}
« no previous file with comments | « no previous file | pkg/analysis_server/lib/src/domain_execution.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698