Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1MemoryStatusReport
- Inherits:
-
Object
- Object
- Google::Apis::ChromemanagementV1::GoogleChromeManagementV1MemoryStatusReport
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/chromemanagement_v1/classes.rb,
lib/google/apis/chromemanagement_v1/representations.rb,
lib/google/apis/chromemanagement_v1/representations.rb
Overview
Contains samples of memory status reports. * This field is telemetry information and this will change over time as the device is utilized. * Data for this field is controlled via policy: ReportDeviceMemoryInfo * Data Collection Frequency: Only at upload, SystemRamFreeByes is collected every 10 minutes * Default Data Reporting Frequency: Every 3 hours - Policy Controlled: Yes * Cache: If the device is offline, the collected data is stored locally, and will be reported when the device is next online: No * Reported for affiliated users only: N/A * Granular permission needed: TELEMETRY_API_MEMORY_REPORT
Instance Attribute Summary collapse
-
#page_faults ⇒ Fixnum
Output only.
-
#report_time ⇒ String
Output only.
-
#sample_frequency ⇒ String
Output only.
-
#system_ram_free_bytes ⇒ Fixnum
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleChromeManagementV1MemoryStatusReport
constructor
A new instance of GoogleChromeManagementV1MemoryStatusReport.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleChromeManagementV1MemoryStatusReport
Returns a new instance of GoogleChromeManagementV1MemoryStatusReport.
2279 2280 2281 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2279 def initialize(**args) update!(**args) end |
Instance Attribute Details
#page_faults ⇒ Fixnum
Output only. Number of page faults during this collection
Corresponds to the JSON property pageFaults
2260 2261 2262 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2260 def page_faults @page_faults end |
#report_time ⇒ String
Output only. The timestamp in milliseconds representing time at which this
report was sampled.
Corresponds to the JSON property reportTime
2266 2267 2268 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2266 def report_time @report_time end |
#sample_frequency ⇒ String
Output only. Frequency the report is sampled.
Corresponds to the JSON property sampleFrequency
2271 2272 2273 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2271 def sample_frequency @sample_frequency end |
#system_ram_free_bytes ⇒ Fixnum
Output only. Amount of free RAM in bytes (unreliable due to Garbage Collection)
.
Corresponds to the JSON property systemRamFreeBytes
2277 2278 2279 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2277 def system_ram_free_bytes @system_ram_free_bytes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2284 2285 2286 2287 2288 2289 |
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2284 def update!(**args) @page_faults = args[:page_faults] if args.key?(:page_faults) @report_time = args[:report_time] if args.key?(:report_time) @sample_frequency = args[:sample_frequency] if args.key?(:sample_frequency) @system_ram_free_bytes = args[:system_ram_free_bytes] if args.key?(:system_ram_free_bytes) end |