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 60ed5fd8b1324215588d01d377f13e80a404bc93..05e1bba8531ba410fac08903511156672273b0b0 100644 |
--- a/runtime/observatory/lib/src/models/objects/vm.dart |
+++ b/runtime/observatory/lib/src/models/objects/vm.dart |
@@ -32,6 +32,12 @@ abstract class VM implements VMRef { |
/// The process id for the VM. |
int get pid; |
+ /// The current amount of native heap allocated memory within the VM. |
+ int get heapAllocatedMemoryUsage; |
+ |
+ /// The current number of allocations on the native heap within the VM. |
+ int get heapAllocationCount; |
+ |
int get maxRSS; |
/// The time that the VM started in milliseconds since the epoch. |