Class: Google::Apis::ServicemanagementV1::Monitoring
- Inherits:
-
Object
- Object
- Google::Apis::ServicemanagementV1::Monitoring
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/servicemanagement_v1/classes.rb,
generated/google/apis/servicemanagement_v1/representations.rb,
generated/google/apis/servicemanagement_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
-
#consumer_destinations ⇒ Array<Google::Apis::ServicemanagementV1::MonitoringDestination>
Monitoring configurations for sending metrics to the consumer project.
-
#producer_destinations ⇒ Array<Google::Apis::ServicemanagementV1::MonitoringDestination>
Monitoring configurations for sending metrics to the producer project.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Monitoring
constructor
A new instance of Monitoring.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Monitoring
Returns a new instance of Monitoring
2768 2769 2770 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 2768 def initialize(**args) update!(**args) end |
Instance Attribute Details
#consumer_destinations ⇒ Array<Google::Apis::ServicemanagementV1::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
2758 2759 2760 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 2758 def consumer_destinations @consumer_destinations end |
#producer_destinations ⇒ Array<Google::Apis::ServicemanagementV1::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
2766 2767 2768 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 2766 def producer_destinations @producer_destinations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2773 2774 2775 2776 |
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 2773 def update!(**args) @consumer_destinations = args[:consumer_destinations] if args.key?(:consumer_destinations) @producer_destinations = args[:producer_destinations] if args.key?(:producer_destinations) end |