Class: Google::Apis::ServiceusageV1::Monitoring

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

Overview

Monitoring configuration of the service. The example below shows how to configure monitored resources and metrics for monitoring. In the example, a monitored resource and two metrics are defined. The library.googleapis.com/book/returned_count metric is sent to both producer and consumer projects, whereas the library.googleapis.com/book/overdue_count metric is only sent to the consumer project. monitored_resources:

  • type: library.googleapis.com/branch labels:
  • key: /city description: The city where the library branch is located in.
  • key: /name description: The name of the branch. metrics:
  • name: library.googleapis.com/book/returned_count metric_kind: DELTA value_type: INT64 labels:
  • key: /customer_id
  • name: library.googleapis.com/book/overdue_count metric_kind: GAUGE value_type: INT64 labels:
  • key: /customer_id monitoring: producer_destinations:
  • monitored_resource: library.googleapis.com/branch metrics:
  • library.googleapis.com/book/returned_count consumer_destinations:
  • monitored_resource: library.googleapis.com/branch metrics:
  • library.googleapis.com/book/returned_count
  • library.googleapis.com/book/overdue_count

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) ⇒ Monitoring

Returns a new instance of Monitoring.



3195
3196
3197
# File 'generated/google/apis/serviceusage_v1/classes.rb', line 3195

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

Instance Attribute Details

#consumer_destinationsArray<Google::Apis::ServiceusageV1::MonitoringDestination>

Monitoring configurations for sending metrics to the consumer project. There can be multiple consumer destinations. A monitored resouce type may appear in multiple monitoring destinations if different aggregations are needed for different sets of metrics associated with that monitored resource type. A monitored resource and metric pair may only be used once in the Monitoring configuration. Corresponds to the JSON property consumerDestinations



3183
3184
3185
# File 'generated/google/apis/serviceusage_v1/classes.rb', line 3183

def consumer_destinations
  @consumer_destinations
end

#producer_destinationsArray<Google::Apis::ServiceusageV1::MonitoringDestination>

Monitoring configurations for sending metrics to the producer project. There can be multiple producer destinations. A monitored resouce type may appear in multiple monitoring destinations if different aggregations are needed for different sets of metrics associated with that monitored resource type. A monitored resource and metric pair may only be used once in the Monitoring configuration. Corresponds to the JSON property producerDestinations



3193
3194
3195
# File 'generated/google/apis/serviceusage_v1/classes.rb', line 3193

def producer_destinations
  @producer_destinations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3200
3201
3202
3203
# File 'generated/google/apis/serviceusage_v1/classes.rb', line 3200

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