Class: Google::Apis::DataprocV1::ClusterMetrics
- Inherits:
-
Object
- Object
- Google::Apis::DataprocV1::ClusterMetrics
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dataproc_v1/classes.rb,
generated/google/apis/dataproc_v1/representations.rb,
generated/google/apis/dataproc_v1/representations.rb
Overview
Contains cluster daemon metrics, such as HDFS and YARN stats.Beta Feature: This report is available for testing purposes only. It may be changed before final release.
Instance Attribute Summary collapse
-
#hdfs_metrics ⇒ Hash<String,Fixnum>
The HDFS metrics.
-
#yarn_metrics ⇒ Hash<String,Fixnum>
The YARN metrics.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ClusterMetrics
constructor
A new instance of ClusterMetrics.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ClusterMetrics
Returns a new instance of ClusterMetrics
285 286 287 |
# File 'generated/google/apis/dataproc_v1/classes.rb', line 285 def initialize(**args) update!(**args) end |
Instance Attribute Details
#hdfs_metrics ⇒ Hash<String,Fixnum>
The HDFS metrics.
Corresponds to the JSON property hdfsMetrics
278 279 280 |
# File 'generated/google/apis/dataproc_v1/classes.rb', line 278 def hdfs_metrics @hdfs_metrics end |
#yarn_metrics ⇒ Hash<String,Fixnum>
The YARN metrics.
Corresponds to the JSON property yarnMetrics
283 284 285 |
# File 'generated/google/apis/dataproc_v1/classes.rb', line 283 def yarn_metrics @yarn_metrics end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
290 291 292 293 |
# File 'generated/google/apis/dataproc_v1/classes.rb', line 290 def update!(**args) @hdfs_metrics = args[:hdfs_metrics] if args.key?(:hdfs_metrics) @yarn_metrics = args[:yarn_metrics] if args.key?(:yarn_metrics) end |