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

Unified Diff: pkg/analysis_server/test/integration/protocol_matchers.dart

Issue 1463923003: Rolling average work queue diagnostic (#24933). (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: nits Created 5 years, 1 month 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
Index: pkg/analysis_server/test/integration/protocol_matchers.dart
diff --git a/pkg/analysis_server/test/integration/protocol_matchers.dart b/pkg/analysis_server/test/integration/protocol_matchers.dart
index 6663f98f474931c7a65985d1d3f0e464c3365602..fed0c036d9ff6af410dd26b0e288d3d41289d4dc 100644
--- a/pkg/analysis_server/test/integration/protocol_matchers.dart
+++ b/pkg/analysis_server/test/integration/protocol_matchers.dart
@@ -1283,6 +1283,7 @@ final Matcher isCompletionSuggestionKind = new MatchesEnum("CompletionSuggestion
* "explicitFileCount": int
* "implicitFileCount": int
* "workItemQueueLength": int
+ * "workItemQueueLengthAverage": String
* "cacheEntryExceptions": List<String>
* }
*/
@@ -1292,6 +1293,7 @@ final Matcher isContextData = new LazyMatcher(() => new MatchesJsonObject(
"explicitFileCount": isInt,
"implicitFileCount": isInt,
"workItemQueueLength": isInt,
+ "workItemQueueLengthAverage": isString,
"cacheEntryExceptions": isListOf(isString)
}));

Powered by Google App Engine
This is Rietveld 408576698