Class: Google::Cloud::Dataflow::V1beta3::ProgressTimeseries
- Inherits:
-
Object
- Object
- Google::Cloud::Dataflow::V1beta3::ProgressTimeseries
- 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
-
#current_progress ⇒ ::Float
The current progress of the component, in the range [0,1].
-
#data_points ⇒ ::Array<::Google::Cloud::Dataflow::V1beta3::ProgressTimeseries::Point>
History of progress for the component.
Instance Attribute Details
#current_progress ⇒ ::Float
Returns 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.
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 |