Index: pkg/analysis_server/lib/src/status/get_handler.dart |
diff --git a/pkg/analysis_server/lib/src/status/get_handler.dart b/pkg/analysis_server/lib/src/status/get_handler.dart |
index 0e9a2ed666283a26546a43a6e6804959fb3b929d..67263f68de9415bdc68d2c2b9a43f80cc591d54f 100644 |
--- a/pkg/analysis_server/lib/src/status/get_handler.dart |
+++ b/pkg/analysis_server/lib/src/status/get_handler.dart |
@@ -812,6 +812,30 @@ class GetHandler { |
classes: [null, "right"]); |
} |
buffer.write('</table>'); |
+ |
+ { |
+ buffer.write('<p><b>Cache consistency statistics</b></p>'); |
+ buffer.write( |
+ '<table style="border-collapse: separate; border-spacing: 10px 5px;">'); |
+ _writeRow(buffer, ['Name', 'Count'], header: true); |
+ _writeRow(buffer, [ |
+ 'Modified', |
+ PerformanceStatistics |
+ .cacheConsistencyValidationStatistics.numOfModified |
+ ], classes: [ |
+ null, |
+ "right" |
+ ]); |
+ _writeRow(buffer, [ |
+ 'Deleted', |
+ PerformanceStatistics |
+ .cacheConsistencyValidationStatistics.numOfDeleted |
+ ], classes: [ |
+ null, |
+ "right" |
+ ]); |
+ buffer.write('</table>'); |
+ } |
}, (StringBuffer buffer) { |
// |
// Write task model timing information. |