class Google::Apis::DataflowV1b3::WorkerLifecycleEvent

A report of an event in a worker's lifecycle. The proto contains one event, because the worker is expected to asynchronously send each message immediately after the event. Due to this asynchrony, messages may arrive out of order (or missing), and it is up to the consumer to interpret. The timestamp of the event is in the enclosing WorkerMessage proto.

Attributes

container_start_time[RW]

The start time of this container. All events will report this so that events can be grouped together across container/VM restarts. Corresponds to the JSON property `containerStartTime` @return [String]

event[RW]

The event being reported. Corresponds to the JSON property `event` @return [String]

metadata[RW]

Other stats that can accompany an event. E.g. ` “downloaded_bytes” : “123456” ` Corresponds to the JSON property `metadata` @return [Hash<String,String>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 6296
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 6301
def update!(**args)
  @container_start_time = args[:container_start_time] if args.key?(:container_start_time)
  @event = args[:event] if args.key?(:event)
  @metadata = args[:metadata] if args.key?(:metadata)
end