@Generated(value="by gapic-generator") @BetaApi public class MetricsClient extends Object implements BackgroundResource
This class provides the ability to make remote calls to the backing service through method calls that map to API methods. Sample code to get started:
try (MetricsClient metricsClient = MetricsClient.create()) {
MetricName metricName = ProjectMetricName.of("[PROJECT]", "[METRIC]");
LogMetric response = metricsClient.getLogMetric(metricName);
}
Note: close() needs to be called on the metricsClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().
The surface of this class includes several types of Java methods for each of the API's methods:
See the individual methods for example code.
Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parse method to extract the individual identifiers contained within names that are returned.
This class can be customized by passing in a custom instance of MetricsSettings to create(). For example:
To customize credentials:
MetricsSettings metricsSettings =
MetricsSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
MetricsClient metricsClient =
MetricsClient.create(metricsSettings);
To customize the endpoint:
MetricsSettings metricsSettings =
MetricsSettings.newBuilder().setEndpoint(myEndpoint).build();
MetricsClient metricsClient =
MetricsClient.create(metricsSettings);
Modifier and Type | Class and Description |
---|---|
static class |
MetricsClient.ListLogMetricsFixedSizeCollection |
static class |
MetricsClient.ListLogMetricsPage |
static class |
MetricsClient.ListLogMetricsPagedResponse |
Modifier | Constructor and Description |
---|---|
protected |
MetricsClient(MetricsServiceV2Stub stub) |
protected |
MetricsClient(MetricsSettings settings)
Constructs an instance of MetricsClient, using the given settings.
|
Modifier and Type | Method and Description |
---|---|
boolean |
awaitTermination(long duration,
TimeUnit unit) |
void |
close() |
static MetricsClient |
create()
Constructs an instance of MetricsClient with default settings.
|
static MetricsClient |
create(MetricsServiceV2Stub stub)
Constructs an instance of MetricsClient, using the given stub for making calls.
|
static MetricsClient |
create(MetricsSettings settings)
Constructs an instance of MetricsClient, using the given settings.
|
com.google.logging.v2.LogMetric |
createLogMetric(com.google.logging.v2.CreateLogMetricRequest request)
Creates a logs-based metric.
|
com.google.logging.v2.LogMetric |
createLogMetric(com.google.logging.v2.ParentName parent,
com.google.logging.v2.LogMetric metric)
Creates a logs-based metric.
|
com.google.logging.v2.LogMetric |
createLogMetric(String parent,
com.google.logging.v2.LogMetric metric)
Creates a logs-based metric.
|
UnaryCallable<com.google.logging.v2.CreateLogMetricRequest,com.google.logging.v2.LogMetric> |
createLogMetricCallable()
Creates a logs-based metric.
|
void |
deleteLogMetric(com.google.logging.v2.DeleteLogMetricRequest request)
Deletes a logs-based metric.
|
void |
deleteLogMetric(com.google.logging.v2.MetricName metricName)
Deletes a logs-based metric.
|
void |
deleteLogMetric(String metricName)
Deletes a logs-based metric.
|
UnaryCallable<com.google.logging.v2.DeleteLogMetricRequest,Empty> |
deleteLogMetricCallable()
Deletes a logs-based metric.
|
com.google.logging.v2.LogMetric |
getLogMetric(com.google.logging.v2.GetLogMetricRequest request)
Gets a logs-based metric.
|
com.google.logging.v2.LogMetric |
getLogMetric(com.google.logging.v2.MetricName metricName)
Gets a logs-based metric.
|
com.google.logging.v2.LogMetric |
getLogMetric(String metricName)
Gets a logs-based metric.
|
UnaryCallable<com.google.logging.v2.GetLogMetricRequest,com.google.logging.v2.LogMetric> |
getLogMetricCallable()
Gets a logs-based metric.
|
MetricsSettings |
getSettings() |
MetricsServiceV2Stub |
getStub() |
boolean |
isShutdown() |
boolean |
isTerminated() |
MetricsClient.ListLogMetricsPagedResponse |
listLogMetrics(com.google.logging.v2.ListLogMetricsRequest request)
Lists logs-based metrics.
|
MetricsClient.ListLogMetricsPagedResponse |
listLogMetrics(com.google.logging.v2.ParentName parent)
Lists logs-based metrics.
|
MetricsClient.ListLogMetricsPagedResponse |
listLogMetrics(String parent)
Lists logs-based metrics.
|
UnaryCallable<com.google.logging.v2.ListLogMetricsRequest,com.google.logging.v2.ListLogMetricsResponse> |
listLogMetricsCallable()
Lists logs-based metrics.
|
UnaryCallable<com.google.logging.v2.ListLogMetricsRequest,MetricsClient.ListLogMetricsPagedResponse> |
listLogMetricsPagedCallable()
Lists logs-based metrics.
|
void |
shutdown() |
void |
shutdownNow() |
com.google.logging.v2.LogMetric |
updateLogMetric(com.google.logging.v2.MetricName metricName,
com.google.logging.v2.LogMetric metric)
Creates or updates a logs-based metric.
|
com.google.logging.v2.LogMetric |
updateLogMetric(String metricName,
com.google.logging.v2.LogMetric metric)
Creates or updates a logs-based metric.
|
com.google.logging.v2.LogMetric |
updateLogMetric(com.google.logging.v2.UpdateLogMetricRequest request)
Creates or updates a logs-based metric.
|
UnaryCallable<com.google.logging.v2.UpdateLogMetricRequest,com.google.logging.v2.LogMetric> |
updateLogMetricCallable()
Creates or updates a logs-based metric.
|
protected MetricsClient(MetricsSettings settings) throws IOException
IOException
@BetaApi(value="A restructuring of stub classes is planned, so this may break in the future") protected MetricsClient(MetricsServiceV2Stub stub)
public static final MetricsClient create() throws IOException
IOException
public static final MetricsClient create(MetricsSettings settings) throws IOException
IOException
@BetaApi(value="A restructuring of stub classes is planned, so this may break in the future") public static final MetricsClient create(MetricsServiceV2Stub stub)
public final MetricsSettings getSettings()
@BetaApi(value="A restructuring of stub classes is planned, so this may break in the future") public MetricsServiceV2Stub getStub()
public final MetricsClient.ListLogMetricsPagedResponse listLogMetrics(com.google.logging.v2.ParentName parent)
Sample code:
try (MetricsClient metricsClient = MetricsClient.create()) {
ParentName parent = ProjectName.of("[PROJECT]");
for (LogMetric element : metricsClient.listLogMetrics(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent
- Required. The name of the project containing the metrics:
"projects/[PROJECT_ID]"
ApiException
- if the remote call failspublic final MetricsClient.ListLogMetricsPagedResponse listLogMetrics(String parent)
Sample code:
try (MetricsClient metricsClient = MetricsClient.create()) {
ParentName parent = ProjectName.of("[PROJECT]");
for (LogMetric element : metricsClient.listLogMetrics(parent.toString()).iterateAll()) {
// doThingsWith(element);
}
}
parent
- Required. The name of the project containing the metrics:
"projects/[PROJECT_ID]"
ApiException
- if the remote call failspublic final MetricsClient.ListLogMetricsPagedResponse listLogMetrics(com.google.logging.v2.ListLogMetricsRequest request)
Sample code:
try (MetricsClient metricsClient = MetricsClient.create()) {
ParentName parent = ProjectName.of("[PROJECT]");
ListLogMetricsRequest request = ListLogMetricsRequest.newBuilder()
.setParent(parent.toString())
.build();
for (LogMetric element : metricsClient.listLogMetrics(request).iterateAll()) {
// doThingsWith(element);
}
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<com.google.logging.v2.ListLogMetricsRequest,MetricsClient.ListLogMetricsPagedResponse> listLogMetricsPagedCallable()
Sample code:
try (MetricsClient metricsClient = MetricsClient.create()) {
ParentName parent = ProjectName.of("[PROJECT]");
ListLogMetricsRequest request = ListLogMetricsRequest.newBuilder()
.setParent(parent.toString())
.build();
ApiFuture<ListLogMetricsPagedResponse> future = metricsClient.listLogMetricsPagedCallable().futureCall(request);
// Do something
for (LogMetric element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final UnaryCallable<com.google.logging.v2.ListLogMetricsRequest,com.google.logging.v2.ListLogMetricsResponse> listLogMetricsCallable()
Sample code:
try (MetricsClient metricsClient = MetricsClient.create()) {
ParentName parent = ProjectName.of("[PROJECT]");
ListLogMetricsRequest request = ListLogMetricsRequest.newBuilder()
.setParent(parent.toString())
.build();
while (true) {
ListLogMetricsResponse response = metricsClient.listLogMetricsCallable().call(request);
for (LogMetric element : response.getMetricsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final com.google.logging.v2.LogMetric getLogMetric(com.google.logging.v2.MetricName metricName)
Sample code:
try (MetricsClient metricsClient = MetricsClient.create()) {
MetricName metricName = ProjectMetricName.of("[PROJECT]", "[METRIC]");
LogMetric response = metricsClient.getLogMetric(metricName);
}
metricName
- The resource name of the desired metric:
"projects/[PROJECT_ID]/metrics/[METRIC_ID]"
ApiException
- if the remote call failspublic final com.google.logging.v2.LogMetric getLogMetric(String metricName)
Sample code:
try (MetricsClient metricsClient = MetricsClient.create()) {
MetricName metricName = ProjectMetricName.of("[PROJECT]", "[METRIC]");
LogMetric response = metricsClient.getLogMetric(metricName.toString());
}
metricName
- The resource name of the desired metric:
"projects/[PROJECT_ID]/metrics/[METRIC_ID]"
ApiException
- if the remote call failspublic final com.google.logging.v2.LogMetric getLogMetric(com.google.logging.v2.GetLogMetricRequest request)
Sample code:
try (MetricsClient metricsClient = MetricsClient.create()) {
MetricName metricName = ProjectMetricName.of("[PROJECT]", "[METRIC]");
GetLogMetricRequest request = GetLogMetricRequest.newBuilder()
.setMetricName(metricName.toString())
.build();
LogMetric response = metricsClient.getLogMetric(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<com.google.logging.v2.GetLogMetricRequest,com.google.logging.v2.LogMetric> getLogMetricCallable()
Sample code:
try (MetricsClient metricsClient = MetricsClient.create()) {
MetricName metricName = ProjectMetricName.of("[PROJECT]", "[METRIC]");
GetLogMetricRequest request = GetLogMetricRequest.newBuilder()
.setMetricName(metricName.toString())
.build();
ApiFuture<LogMetric> future = metricsClient.getLogMetricCallable().futureCall(request);
// Do something
LogMetric response = future.get();
}
public final com.google.logging.v2.LogMetric createLogMetric(com.google.logging.v2.ParentName parent, com.google.logging.v2.LogMetric metric)
Sample code:
try (MetricsClient metricsClient = MetricsClient.create()) {
ParentName parent = ProjectName.of("[PROJECT]");
LogMetric metric = LogMetric.newBuilder().build();
LogMetric response = metricsClient.createLogMetric(parent, metric);
}
parent
- The resource name of the project in which to create the metric:
"projects/[PROJECT_ID]"
The new metric must be provided in the request.
metric
- The new logs-based metric, which must not have an identifier that already exists.ApiException
- if the remote call failspublic final com.google.logging.v2.LogMetric createLogMetric(String parent, com.google.logging.v2.LogMetric metric)
Sample code:
try (MetricsClient metricsClient = MetricsClient.create()) {
ParentName parent = ProjectName.of("[PROJECT]");
LogMetric metric = LogMetric.newBuilder().build();
LogMetric response = metricsClient.createLogMetric(parent.toString(), metric);
}
parent
- The resource name of the project in which to create the metric:
"projects/[PROJECT_ID]"
The new metric must be provided in the request.
metric
- The new logs-based metric, which must not have an identifier that already exists.ApiException
- if the remote call failspublic final com.google.logging.v2.LogMetric createLogMetric(com.google.logging.v2.CreateLogMetricRequest request)
Sample code:
try (MetricsClient metricsClient = MetricsClient.create()) {
ParentName parent = ProjectName.of("[PROJECT]");
LogMetric metric = LogMetric.newBuilder().build();
CreateLogMetricRequest request = CreateLogMetricRequest.newBuilder()
.setParent(parent.toString())
.setMetric(metric)
.build();
LogMetric response = metricsClient.createLogMetric(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<com.google.logging.v2.CreateLogMetricRequest,com.google.logging.v2.LogMetric> createLogMetricCallable()
Sample code:
try (MetricsClient metricsClient = MetricsClient.create()) {
ParentName parent = ProjectName.of("[PROJECT]");
LogMetric metric = LogMetric.newBuilder().build();
CreateLogMetricRequest request = CreateLogMetricRequest.newBuilder()
.setParent(parent.toString())
.setMetric(metric)
.build();
ApiFuture<LogMetric> future = metricsClient.createLogMetricCallable().futureCall(request);
// Do something
LogMetric response = future.get();
}
public final com.google.logging.v2.LogMetric updateLogMetric(com.google.logging.v2.MetricName metricName, com.google.logging.v2.LogMetric metric)
Sample code:
try (MetricsClient metricsClient = MetricsClient.create()) {
MetricName metricName = ProjectMetricName.of("[PROJECT]", "[METRIC]");
LogMetric metric = LogMetric.newBuilder().build();
LogMetric response = metricsClient.updateLogMetric(metricName, metric);
}
metricName
- The resource name of the metric to update:
"projects/[PROJECT_ID]/metrics/[METRIC_ID]"
The updated metric must be provided in the request and it's `name` field must be the same as `[METRIC_ID]` If the metric does not exist in `[PROJECT_ID]`, then a new metric is created.
metric
- The updated metric.ApiException
- if the remote call failspublic final com.google.logging.v2.LogMetric updateLogMetric(String metricName, com.google.logging.v2.LogMetric metric)
Sample code:
try (MetricsClient metricsClient = MetricsClient.create()) {
MetricName metricName = ProjectMetricName.of("[PROJECT]", "[METRIC]");
LogMetric metric = LogMetric.newBuilder().build();
LogMetric response = metricsClient.updateLogMetric(metricName.toString(), metric);
}
metricName
- The resource name of the metric to update:
"projects/[PROJECT_ID]/metrics/[METRIC_ID]"
The updated metric must be provided in the request and it's `name` field must be the same as `[METRIC_ID]` If the metric does not exist in `[PROJECT_ID]`, then a new metric is created.
metric
- The updated metric.ApiException
- if the remote call failspublic final com.google.logging.v2.LogMetric updateLogMetric(com.google.logging.v2.UpdateLogMetricRequest request)
Sample code:
try (MetricsClient metricsClient = MetricsClient.create()) {
MetricName metricName = ProjectMetricName.of("[PROJECT]", "[METRIC]");
LogMetric metric = LogMetric.newBuilder().build();
UpdateLogMetricRequest request = UpdateLogMetricRequest.newBuilder()
.setMetricName(metricName.toString())
.setMetric(metric)
.build();
LogMetric response = metricsClient.updateLogMetric(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<com.google.logging.v2.UpdateLogMetricRequest,com.google.logging.v2.LogMetric> updateLogMetricCallable()
Sample code:
try (MetricsClient metricsClient = MetricsClient.create()) {
MetricName metricName = ProjectMetricName.of("[PROJECT]", "[METRIC]");
LogMetric metric = LogMetric.newBuilder().build();
UpdateLogMetricRequest request = UpdateLogMetricRequest.newBuilder()
.setMetricName(metricName.toString())
.setMetric(metric)
.build();
ApiFuture<LogMetric> future = metricsClient.updateLogMetricCallable().futureCall(request);
// Do something
LogMetric response = future.get();
}
public final void deleteLogMetric(com.google.logging.v2.MetricName metricName)
Sample code:
try (MetricsClient metricsClient = MetricsClient.create()) {
MetricName metricName = ProjectMetricName.of("[PROJECT]", "[METRIC]");
metricsClient.deleteLogMetric(metricName);
}
metricName
- The resource name of the metric to delete:
"projects/[PROJECT_ID]/metrics/[METRIC_ID]"
ApiException
- if the remote call failspublic final void deleteLogMetric(String metricName)
Sample code:
try (MetricsClient metricsClient = MetricsClient.create()) {
MetricName metricName = ProjectMetricName.of("[PROJECT]", "[METRIC]");
metricsClient.deleteLogMetric(metricName.toString());
}
metricName
- The resource name of the metric to delete:
"projects/[PROJECT_ID]/metrics/[METRIC_ID]"
ApiException
- if the remote call failspublic final void deleteLogMetric(com.google.logging.v2.DeleteLogMetricRequest request)
Sample code:
try (MetricsClient metricsClient = MetricsClient.create()) {
MetricName metricName = ProjectMetricName.of("[PROJECT]", "[METRIC]");
DeleteLogMetricRequest request = DeleteLogMetricRequest.newBuilder()
.setMetricName(metricName.toString())
.build();
metricsClient.deleteLogMetric(request);
}
request
- The request object containing all of the parameters for the API call.ApiException
- if the remote call failspublic final UnaryCallable<com.google.logging.v2.DeleteLogMetricRequest,Empty> deleteLogMetricCallable()
Sample code:
try (MetricsClient metricsClient = MetricsClient.create()) {
MetricName metricName = ProjectMetricName.of("[PROJECT]", "[METRIC]");
DeleteLogMetricRequest request = DeleteLogMetricRequest.newBuilder()
.setMetricName(metricName.toString())
.build();
ApiFuture<Void> future = metricsClient.deleteLogMetricCallable().futureCall(request);
// Do something
future.get();
}
public final void close()
close
in interface AutoCloseable
public void shutdown()
shutdown
in interface BackgroundResource
public boolean isShutdown()
isShutdown
in interface BackgroundResource
public boolean isTerminated()
isTerminated
in interface BackgroundResource
public void shutdownNow()
shutdownNow
in interface BackgroundResource
public boolean awaitTermination(long duration, TimeUnit unit) throws InterruptedException
awaitTermination
in interface BackgroundResource
InterruptedException
Copyright © 2019 Google LLC. All rights reserved.