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

Unified Diff: runtime/observatory/lib/src/models/objects/vm.dart

Issue 2996803002: Add current rss and embedder name to Observatory (Closed)
Patch Set: Managing null currentRSS in graph tooltip Created 3 years, 4 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
Index: runtime/observatory/lib/src/models/objects/vm.dart
diff --git a/runtime/observatory/lib/src/models/objects/vm.dart b/runtime/observatory/lib/src/models/objects/vm.dart
index f1f50885943e406fe82fa71a6b5fb5465e36e42b..21b8abd22b09b474b9b3b8266cb5b85ff85ee246 100644
--- a/runtime/observatory/lib/src/models/objects/vm.dart
+++ b/runtime/observatory/lib/src/models/objects/vm.dart
@@ -30,6 +30,8 @@ abstract class VM implements VMRef, ServiceObjectOwner {
/// The Dart VM version string.
String get version;
+ String get embedder;
+
/// The amount of memory currently allocated by native code in zones.
int get nativeZoneMemoryUsage;
@@ -43,6 +45,7 @@ abstract class VM implements VMRef, ServiceObjectOwner {
int get heapAllocationCount;
int get maxRSS;
+ int get currentRSS;
/// The time that the VM started in milliseconds since the epoch.
///

Powered by Google App Engine
This is Rietveld 408576698