Class: Google::Cloud::Dataflow::V1beta3::ProgressTimeseries

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/dataflow/v1beta3/metrics.rb

Overview

Information about the progress of some component of job execution.

Defined Under Namespace

Classes: Point

Instance Attribute Summary collapse

Instance Attribute Details

#current_progress::Float

Returns The current progress of the component, in the range [0,1].

Returns:

  • (::Float)

    The current progress of the component, in the range [0,1].



192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
# File 'proto_docs/google/dataflow/v1beta3/metrics.rb', line 192

class ProgressTimeseries
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # A point in the timeseries.
  # @!attribute [rw] time
  #   @return [::Google::Protobuf::Timestamp]
  #     The timestamp of the point.
  # @!attribute [rw] value
  #   @return [::Float]
  #     The value of the point.
  class Point
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end

#data_points::Array<::Google::Cloud::Dataflow::V1beta3::ProgressTimeseries::Point>

Returns History of progress for the component.

Points are sorted by time.

Returns:



192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
# File 'proto_docs/google/dataflow/v1beta3/metrics.rb', line 192

class ProgressTimeseries
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # A point in the timeseries.
  # @!attribute [rw] time
  #   @return [::Google::Protobuf::Timestamp]
  #     The timestamp of the point.
  # @!attribute [rw] value
  #   @return [::Float]
  #     The value of the point.
  class Point
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end