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

Unified Diff: components/policy/proto/device_management_backend.proto

Issue 884063003: Updated device reporting code to report multiple samples of free RAM (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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: components/policy/proto/device_management_backend.proto
diff --git a/components/policy/proto/device_management_backend.proto b/components/policy/proto/device_management_backend.proto
index e68be0ebd6cf197d9dfce9937369b59a6a5a0c78..3c8e6cc613452e36efd0b00dd414f44a603b0397 100644
--- a/components/policy/proto/device_management_backend.proto
+++ b/components/policy/proto/device_management_backend.proto
@@ -615,14 +615,17 @@ message DeviceStatusReportRequest {
// List of visible/configured networks
repeated NetworkState network_state = 11;
- // Samples of CPU utilization (0-100), sampled once every 60 seconds.
+ // Samples of CPU utilization (0-100), sampled once every 120 seconds.
repeated int32 cpu_utilization_pct = 12;
// Free RAM (unreliable due to GC).
- optional int64 system_ram_free = 13;
+ optional int64 deprecated_system_ram_free = 13 [deprecated = true];
// Total RAM on the device.
optional int64 system_ram_total = 14;
+
+ // Samples of free RAM [in bytes] (unreliable due to GC).
+ repeated int64 system_ram_free = 15;
}
// Provides status information for an installed app/extension.

Powered by Google App Engine
This is Rietveld 408576698