Class: Google::Apis::ServiceconsumermanagementV1::Monitoring

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/serviceconsumermanagement_v1/classes.rb,
generated/google/apis/serviceconsumermanagement_v1/representations.rb,
generated/google/apis/serviceconsumermanagement_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



2260
2261
2262
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 2260

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

Instance Attribute Details

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

Monitoring configurations for sending metrics to the consumer project. There can be multiple consumer destinations, each one must have a different monitored resource type. A metric can be used in at most one consumer destination. Corresponds to the JSON property consumerDestinations



2250
2251
2252
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 2250

def consumer_destinations
  @consumer_destinations
end

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

Monitoring configurations for sending metrics to the producer project. There can be multiple producer destinations, each one must have a different monitored resource type. A metric can be used in at most one producer destination. Corresponds to the JSON property producerDestinations



2258
2259
2260
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 2258

def producer_destinations
  @producer_destinations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2265
2266
2267
2268
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 2265

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