Class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1MemoryStatusReport

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_faultsFixnum

Output only. Number of page faults during this collection Corresponds to the JSON property pageFaults

Returns:

  • (Fixnum)


2260
2261
2262
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2260

def page_faults
  @page_faults
end

#report_timeString

Output only. The timestamp in milliseconds representing time at which this report was sampled. Corresponds to the JSON property reportTime

Returns:

  • (String)


2266
2267
2268
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2266

def report_time
  @report_time
end

#sample_frequencyString

Output only. Frequency the report is sampled. Corresponds to the JSON property sampleFrequency

Returns:

  • (String)


2271
2272
2273
# File 'lib/google/apis/chromemanagement_v1/classes.rb', line 2271

def sample_frequency
  @sample_frequency
end

#system_ram_free_bytesFixnum

Output only. Amount of free RAM in bytes (unreliable due to Garbage Collection) . Corresponds to the JSON property systemRamFreeBytes

Returns:

  • (Fixnum)


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