class Google::Apis::DataflowV1b3::ResourceUtilizationReport
Worker metrics exported from workers. This contains resource utilization metrics accumulated from a variety of sources. For more information, see go/df- resource-signals.
Attributes
containers[RW]
Per container information. Key: container name. Corresponds to the JSON property `containers` @return [Hash<String,Google::Apis::DataflowV1b3::ResourceUtilizationReport>]
cpu_time[RW]
CPU utilization samples. Corresponds to the JSON property `cpuTime` @return [Array<Google::Apis::DataflowV1b3::CpuTime>]
memory_info[RW]
Memory utilization samples. Corresponds to the JSON property `memoryInfo` @return [Array<Google::Apis::DataflowV1b3::MemInfo>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 3819 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 3824 def update!(**args) @containers = args[:containers] if args.key?(:containers) @cpu_time = args[:cpu_time] if args.key?(:cpu_time) @memory_info = args[:memory_info] if args.key?(:memory_info) end