Class: Google::Apis::ServicenetworkingV1beta::Monitoring

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



2319
2320
2321
# File 'generated/google/apis/servicenetworking_v1beta/classes.rb', line 2319

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

Instance Attribute Details

#consumer_destinationsArray<Google::Apis::ServicenetworkingV1beta::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



2307
2308
2309
# File 'generated/google/apis/servicenetworking_v1beta/classes.rb', line 2307

def consumer_destinations
  @consumer_destinations
end

#producer_destinationsArray<Google::Apis::ServicenetworkingV1beta::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



2317
2318
2319
# File 'generated/google/apis/servicenetworking_v1beta/classes.rb', line 2317

def producer_destinations
  @producer_destinations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2324
2325
2326
2327
# File 'generated/google/apis/servicenetworking_v1beta/classes.rb', line 2324

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