class Google::Apis::DataflowV1b3::MemInfo

Information about the memory usage of a worker or a container within a worker.

Attributes

current_limit_bytes[RW]

Instantenous memory limit in bytes. Corresponds to the JSON property `currentLimitBytes` @return [Fixnum]

current_rss_bytes[RW]

Instantenous memory (RSS) size in bytes. Corresponds to the JSON property `currentRssBytes` @return [Fixnum]

timestamp[RW]

Timestamp of the measurement. Corresponds to the JSON property `timestamp` @return [String]

total_gb_ms[RW]

Total memory (RSS) usage since start up in GB * ms. Corresponds to the JSON property `totalGbMs` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 2883
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dataflow_v1b3/classes.rb, line 2888
def update!(**args)
  @current_limit_bytes = args[:current_limit_bytes] if args.key?(:current_limit_bytes)
  @current_rss_bytes = args[:current_rss_bytes] if args.key?(:current_rss_bytes)
  @timestamp = args[:timestamp] if args.key?(:timestamp)
  @total_gb_ms = args[:total_gb_ms] if args.key?(:total_gb_ms)
end