class Google::Apis::MonitoringV3::CreateCollectdTimeSeriesRequest

The CreateCollectdTimeSeries request.

Attributes

collectd_payloads[RW]

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` @return [Array<Google::Apis::MonitoringV3::CollectdPayload>]

collectd_version[RW]

The version of collectd that collected the data. Example: “5.3.0-192.el6”. Corresponds to the JSON property `collectdVersion` @return [String]

resource[RW]

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 “project_id”, “ instance_id” and “zone”: ` “type”: “gce_instance”, “labels”: ` “project_id”: “ my-project”, “instance_id”: “12345678901234”, “zone”: “us-central1-a” “ Corresponds to the JSON property `resource` @return [Google::Apis::MonitoringV3::MonitoredResource]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/monitoring_v3/classes.rb, line 873
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/monitoring_v3/classes.rb, line 878
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