Class: Google::Apis::MonitoringV3::CreateTimeSeriesSummary

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/monitoring_v3/classes.rb,
lib/google/apis/monitoring_v3/representations.rb,
lib/google/apis/monitoring_v3/representations.rb

Overview

Summary of the result of a failed request to write data to a time series.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CreateTimeSeriesSummary

Returns a new instance of CreateTimeSeriesSummary.



915
916
917
# File 'lib/google/apis/monitoring_v3/classes.rb', line 915

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

Instance Attribute Details

#errorsArray<Google::Apis::MonitoringV3::Error>

The number of points that failed to be written. Order is not guaranteed. Corresponds to the JSON property errors



903
904
905
# File 'lib/google/apis/monitoring_v3/classes.rb', line 903

def errors
  @errors
end

#success_point_countFixnum

The number of points that were successfully written. Corresponds to the JSON property successPointCount

Returns:

  • (Fixnum)


908
909
910
# File 'lib/google/apis/monitoring_v3/classes.rb', line 908

def success_point_count
  @success_point_count
end

#total_point_countFixnum

The number of points in the request. Corresponds to the JSON property totalPointCount

Returns:

  • (Fixnum)


913
914
915
# File 'lib/google/apis/monitoring_v3/classes.rb', line 913

def total_point_count
  @total_point_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



920
921
922
923
924
# File 'lib/google/apis/monitoring_v3/classes.rb', line 920

def update!(**args)
  @errors = args[:errors] if args.key?(:errors)
  @success_point_count = args[:success_point_count] if args.key?(:success_point_count)
  @total_point_count = args[:total_point_count] if args.key?(:total_point_count)
end