Class: Google::Apis::DataflowV1b3::MetricUpdate
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::MetricUpdate
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dataflow_v1b3/classes.rb,
generated/google/apis/dataflow_v1b3/representations.rb,
generated/google/apis/dataflow_v1b3/representations.rb
Overview
Describes the state of a metric.
Instance Attribute Summary collapse
-
#cumulative ⇒ Boolean
(also: #cumulative?)
True if this metric is reported as the total cumulative aggregate value accumulated since the worker started working on this WorkItem.
-
#distribution ⇒ Object
A struct value describing properties of a distribution of numeric values.
-
#internal ⇒ Object
Worker-computed aggregate value for internal use by the Dataflow service.
-
#kind ⇒ String
Metric aggregation kind.
-
#mean_count ⇒ Object
Worker-computed aggregate value for the "Mean" aggregation kind.
-
#mean_sum ⇒ Object
Worker-computed aggregate value for the "Mean" aggregation kind.
-
#name ⇒ Google::Apis::DataflowV1b3::MetricStructuredName
Identifies a metric, by describing the source which generated the metric.
-
#scalar ⇒ Object
Worker-computed aggregate value for aggregation kinds "Sum", "Max", "Min", "And", and "Or".
-
#set ⇒ Object
Worker-computed aggregate value for the "Set" aggregation kind.
-
#update_time ⇒ String
Timestamp associated with the metric value.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MetricUpdate
constructor
A new instance of MetricUpdate.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ MetricUpdate
Returns a new instance of MetricUpdate
3802 3803 3804 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3802 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cumulative ⇒ Boolean Also known as: cumulative?
True if this metric is reported as the total cumulative aggregate
value accumulated since the worker started working on this WorkItem.
By default this is false, indicating that this metric is reported
as a delta that is not associated with any WorkItem.
Corresponds to the JSON property cumulative
3768 3769 3770 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3768 def cumulative @cumulative end |
#distribution ⇒ Object
A struct value describing properties of a distribution of numeric values.
Corresponds to the JSON property distribution
3746 3747 3748 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3746 def distribution @distribution end |
#internal ⇒ Object
Worker-computed aggregate value for internal use by the Dataflow
service.
Corresponds to the JSON property internal
3760 3761 3762 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3760 def internal @internal end |
#kind ⇒ String
Metric aggregation kind. The possible metric aggregation kinds are
"Sum", "Max", "Min", "Mean", "Set", "And", "Or", and "Distribution".
The specified aggregation kind is case-insensitive.
If omitted, this is not an aggregated value but instead
a single metric sample value.
Corresponds to the JSON property kind
3778 3779 3780 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3778 def kind @kind end |
#mean_count ⇒ Object
Worker-computed aggregate value for the "Mean" aggregation kind.
This holds the count of the aggregated values and is used in combination
with mean_sum above to obtain the actual mean aggregate value.
The only possible value type is Long.
Corresponds to the JSON property meanCount
3792 3793 3794 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3792 def mean_count @mean_count end |
#mean_sum ⇒ Object
Worker-computed aggregate value for the "Mean" aggregation kind.
This holds the sum of the aggregated values and is used in combination
with mean_count below to obtain the actual mean aggregate value.
The only possible value types are Long and Double.
Corresponds to the JSON property meanSum
3800 3801 3802 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3800 def mean_sum @mean_sum end |
#name ⇒ Google::Apis::DataflowV1b3::MetricStructuredName
Identifies a metric, by describing the source which generated the
metric.
Corresponds to the JSON property name
3741 3742 3743 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3741 def name @name end |
#scalar ⇒ Object
Worker-computed aggregate value for aggregation kinds "Sum", "Max", "Min",
"And", and "Or". The possible value types are Long, Double, and Boolean.
Corresponds to the JSON property scalar
3784 3785 3786 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3784 def scalar @scalar end |
#set ⇒ Object
Worker-computed aggregate value for the "Set" aggregation kind. The only
possible value type is a list of Values whose type can be Long, Double,
or String, according to the metric's type. All Values in the list must
be of the same type.
Corresponds to the JSON property set
3754 3755 3756 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3754 def set @set end |
#update_time ⇒ String
Timestamp associated with the metric value. Optional when workers are
reporting work progress; it will be filled in responses from the
metrics API.
Corresponds to the JSON property updateTime
3735 3736 3737 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3735 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 |
# File 'generated/google/apis/dataflow_v1b3/classes.rb', line 3807 def update!(**args) @update_time = args[:update_time] if args.key?(:update_time) @name = args[:name] if args.key?(:name) @distribution = args[:distribution] if args.key?(:distribution) @set = args[:set] if args.key?(:set) @internal = args[:internal] if args.key?(:internal) @cumulative = args[:cumulative] if args.key?(:cumulative) @kind = args[:kind] if args.key?(:kind) @scalar = args[:scalar] if args.key?(:scalar) @mean_count = args[:mean_count] if args.key?(:mean_count) @mean_sum = args[:mean_sum] if args.key?(:mean_sum) end |