Class: Google::Apis::DataprocV1::ClusterMetrics

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ClusterMetrics

Returns a new instance of ClusterMetrics.



513
514
515
# File 'generated/google/apis/dataproc_v1/classes.rb', line 513

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#hdfs_metricsHash<String,Fixnum>

The HDFS metrics. Corresponds to the JSON property hdfsMetrics

Returns:

  • (Hash<String,Fixnum>)


506
507
508
# File 'generated/google/apis/dataproc_v1/classes.rb', line 506

def hdfs_metrics
  @hdfs_metrics
end

#yarn_metricsHash<String,Fixnum>

The YARN metrics. Corresponds to the JSON property yarnMetrics

Returns:

  • (Hash<String,Fixnum>)


511
512
513
# File 'generated/google/apis/dataproc_v1/classes.rb', line 511

def yarn_metrics
  @yarn_metrics
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



518
519
520
521
# File 'generated/google/apis/dataproc_v1/classes.rb', line 518

def update!(**args)
  @hdfs_metrics = args[:hdfs_metrics] if args.key?(:hdfs_metrics)
  @yarn_metrics = args[:yarn_metrics] if args.key?(:yarn_metrics)
end