Class: Google::Apis::MonitoringV3::CreateCollectdTimeSeriesRequest

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

Overview

The CreateCollectdTimeSeries request.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ CreateCollectdTimeSeriesRequest

Returns a new instance of CreateCollectdTimeSeriesRequest.



754
755
756
# File 'generated/google/apis/monitoring_v3/classes.rb', line 754

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

Instance Attribute Details

#collectd_payloadsArray<Google::Apis::MonitoringV3::CollectdPayload>

The collectd payloads representing the time series data. You must not include more than a single point for each time series, so no two payloads can have the same values for all of the fields plugin, plugin_instance, type, and type_instance. Corresponds to the JSON property collectdPayloads



731
732
733
# File 'generated/google/apis/monitoring_v3/classes.rb', line 731

def collectd_payloads
  @collectd_payloads
end

#collectd_versionString

The version of collectd that collected the data. Example: "5.3.0-192.el6". Corresponds to the JSON property collectdVersion

Returns:

  • (String)


736
737
738
# File 'generated/google/apis/monitoring_v3/classes.rb', line 736

def collectd_version
  @collectd_version
end

#resourceGoogle::Apis::MonitoringV3::MonitoredResource

An object representing a resource that can be used for monitoring, logging, billing, or other purposes. Examples include virtual machine instances, databases, and storage devices such as disks. The type field identifies a MonitoredResourceDescriptor object that describes the resource's schema. Information in the labels field identifies the actual resource and its attributes according to the schema. For example, a particular Compute Engine VM instance could be represented by the following object, because the MonitoredResourceDescriptor for "gce_instance" has labels "instance_id" and " zone": "type": "gce_instance", "labels": "instance_id": "12345678901234", "zone": "us-central1-a" ` Corresponds to the JSON propertyresource`



752
753
754
# File 'generated/google/apis/monitoring_v3/classes.rb', line 752

def resource
  @resource
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



759
760
761
762
763
# File 'generated/google/apis/monitoring_v3/classes.rb', line 759

def update!(**args)
  @collectd_payloads = args[:collectd_payloads] if args.key?(:collectd_payloads)
  @collectd_version = args[:collectd_version] if args.key?(:collectd_version)
  @resource = args[:resource] if args.key?(:resource)
end