The Cloud Monitoring Service-Oriented Monitoring API has endpoints for managing and querying aspects of a workspace's services.
These include the Service
's monitored resources, its Service-Level Objectives, and a taxonomy of categorized Health Metrics.
Equality
Instances of this class created via copy-construction or copy-assignment always compare equal. Instances created with equal std::shared_ptr<*Connection>
objects compare equal. Objects that compare equal share the same underlying resources.
Performance
Creating a new instance of this class is a relatively expensive operation, new objects establish new connections to the service. In contrast, copy-construction, move-construction, and the corresponding assignment operations are relatively efficient as the copies share all underlying resources.
Thread Safety
Concurrent access to different instances of this class, even if they compare equal, is guaranteed to work. Two or more threads operating on the same instance of this class is not guaranteed to work. Since copy-construction and move-construction is a relatively efficient operation, consider using such a copy when using this class from multiple threads.
Constructors
ServiceMonitoringServiceClient(ServiceMonitoringServiceClient const &)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
ServiceMonitoringServiceClient const &
|
ServiceMonitoringServiceClient(ServiceMonitoringServiceClient &&)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
ServiceMonitoringServiceClient &&
|
ServiceMonitoringServiceClient(std::shared_ptr< ServiceMonitoringServiceConnection >, Options)
Parameters | |
---|---|
Name | Description |
connection |
std::shared_ptr< ServiceMonitoringServiceConnection >
|
opts |
Options
|
Operators
operator=(ServiceMonitoringServiceClient const &)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
ServiceMonitoringServiceClient const &
|
Returns | |
---|---|
Type | Description |
ServiceMonitoringServiceClient & |
operator=(ServiceMonitoringServiceClient &&)
Copy and move support
Parameter | |
---|---|
Name | Description |
|
ServiceMonitoringServiceClient &&
|
Returns | |
---|---|
Type | Description |
ServiceMonitoringServiceClient & |
Functions
CreateService(std::string const &, google::monitoring::v3::Service const &, Options)
Create a Service
.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. Resource name of the parent workspace. The format is: |
service |
google::monitoring::v3::Service const &
Required. The |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::monitoring::v3::Service > |
the result of the RPC. The response message type (google.monitoring.v3.Service) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
CreateService(google::monitoring::v3::CreateServiceRequest const &, Options)
Create a Service
.
Parameters | |
---|---|
Name | Description |
request |
google::monitoring::v3::CreateServiceRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::monitoring::v3::Service > |
the result of the RPC. The response message type (google.monitoring.v3.Service) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetService(std::string const &, Options)
Get the named Service
.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. Resource name of the |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::monitoring::v3::Service > |
the result of the RPC. The response message type (google.monitoring.v3.Service) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetService(google::monitoring::v3::GetServiceRequest const &, Options)
Get the named Service
.
Parameters | |
---|---|
Name | Description |
request |
google::monitoring::v3::GetServiceRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::monitoring::v3::Service > |
the result of the RPC. The response message type (google.monitoring.v3.Service) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
ListServices(std::string const &, Options)
List Service
s for this workspace.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. Resource name of the parent containing the listed services, either a project or a Monitoring Workspace. The formats are: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::monitoring::v3::Service > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListServices(google::monitoring::v3::ListServicesRequest, Options)
List Service
s for this workspace.
Parameters | |
---|---|
Name | Description |
request |
google::monitoring::v3::ListServicesRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::monitoring::v3::Service > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
UpdateService(google::monitoring::v3::Service const &, Options)
Update this Service
.
Parameters | |
---|---|
Name | Description |
service |
google::monitoring::v3::Service const &
Required. The |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::monitoring::v3::Service > |
the result of the RPC. The response message type (google.monitoring.v3.Service) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
UpdateService(google::monitoring::v3::UpdateServiceRequest const &, Options)
Update this Service
.
Parameters | |
---|---|
Name | Description |
request |
google::monitoring::v3::UpdateServiceRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::monitoring::v3::Service > |
the result of the RPC. The response message type (google.monitoring.v3.Service) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
DeleteService(std::string const &, Options)
Soft delete this Service
.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. Resource name of the |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
Status |
a |
DeleteService(google::monitoring::v3::DeleteServiceRequest const &, Options)
Soft delete this Service
.
Parameters | |
---|---|
Name | Description |
request |
google::monitoring::v3::DeleteServiceRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
Status |
a |
CreateServiceLevelObjective(std::string const &, google::monitoring::v3::ServiceLevelObjective const &, Options)
Create a ServiceLevelObjective
for the given Service
.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. Resource name of the parent |
service_level_objective |
google::monitoring::v3::ServiceLevelObjective const &
Required. The |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::monitoring::v3::ServiceLevelObjective > |
the result of the RPC. The response message type (google.monitoring.v3.ServiceLevelObjective) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
CreateServiceLevelObjective(google::monitoring::v3::CreateServiceLevelObjectiveRequest const &, Options)
Create a ServiceLevelObjective
for the given Service
.
Parameters | |
---|---|
Name | Description |
request |
google::monitoring::v3::CreateServiceLevelObjectiveRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::monitoring::v3::ServiceLevelObjective > |
the result of the RPC. The response message type (google.monitoring.v3.ServiceLevelObjective) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetServiceLevelObjective(std::string const &, Options)
Get a ServiceLevelObjective
by name.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. Resource name of the |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::monitoring::v3::ServiceLevelObjective > |
the result of the RPC. The response message type (google.monitoring.v3.ServiceLevelObjective) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
GetServiceLevelObjective(google::monitoring::v3::GetServiceLevelObjectiveRequest const &, Options)
Get a ServiceLevelObjective
by name.
Parameters | |
---|---|
Name | Description |
request |
google::monitoring::v3::GetServiceLevelObjectiveRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::monitoring::v3::ServiceLevelObjective > |
the result of the RPC. The response message type (google.monitoring.v3.ServiceLevelObjective) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
ListServiceLevelObjectives(std::string const &, Options)
List the ServiceLevelObjective
s for the given Service
.
Parameters | |
---|---|
Name | Description |
parent |
std::string const &
Required. Resource name of the parent containing the listed SLOs, either a project or a Monitoring Workspace. The formats are: |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::monitoring::v3::ServiceLevelObjective > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
ListServiceLevelObjectives(google::monitoring::v3::ListServiceLevelObjectivesRequest, Options)
List the ServiceLevelObjective
s for the given Service
.
Parameters | |
---|---|
Name | Description |
request |
google::monitoring::v3::ListServiceLevelObjectivesRequest
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StreamRange< google::monitoring::v3::ServiceLevelObjective > |
a StreamRange to iterate of the results. See the documentation of this type for details. In brief, this class has |
UpdateServiceLevelObjective(google::monitoring::v3::ServiceLevelObjective const &, Options)
Update the given ServiceLevelObjective
.
Parameters | |
---|---|
Name | Description |
service_level_objective |
google::monitoring::v3::ServiceLevelObjective const &
Required. The |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::monitoring::v3::ServiceLevelObjective > |
the result of the RPC. The response message type (google.monitoring.v3.ServiceLevelObjective) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
UpdateServiceLevelObjective(google::monitoring::v3::UpdateServiceLevelObjectiveRequest const &, Options)
Update the given ServiceLevelObjective
.
Parameters | |
---|---|
Name | Description |
request |
google::monitoring::v3::UpdateServiceLevelObjectiveRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
StatusOr< google::monitoring::v3::ServiceLevelObjective > |
the result of the RPC. The response message type (google.monitoring.v3.ServiceLevelObjective) is mapped to a C++ class using the Protobuf mapping rules. If the request fails, the |
DeleteServiceLevelObjective(std::string const &, Options)
Delete the given ServiceLevelObjective
.
Parameters | |
---|---|
Name | Description |
name |
std::string const &
Required. Resource name of the |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
Status |
a |
DeleteServiceLevelObjective(google::monitoring::v3::DeleteServiceLevelObjectiveRequest const &, Options)
Delete the given ServiceLevelObjective
.
Parameters | |
---|---|
Name | Description |
request |
google::monitoring::v3::DeleteServiceLevelObjectiveRequest const &
Unary RPCs, such as the one wrapped by this function, receive a single |
opts |
Options
Optional. Override the class-level options, such as retry and backoff policies. |
Returns | |
---|---|
Type | Description |
Status |
a |