- 0.174.0-beta (latest)
- 0.173.0-beta
- 0.172.0-beta
- 0.170.0-beta
- 0.169.0-beta
- 0.168.0-beta
- 0.167.0-beta
- 0.166.0-beta
- 0.165.0-beta
- 0.164.0-beta
- 0.163.0-beta
- 0.162.0-beta
- 0.161.0-beta
- 0.160.0-beta
- 0.158.0-beta
- 0.157.0-beta
- 0.156.0-beta
- 0.155.0-beta
- 0.154.0-beta
- 0.153.0-beta
- 0.152.0-beta
- 0.151.0-beta
- 0.150.0-beta
- 0.149.0-beta
- 0.148.0-beta
- 0.145.0-beta
- 0.144.0-beta
- 0.143.0-beta
- 0.142.0-beta
- 0.141.0-beta
- 0.140.0-beta
- 0.139.0-beta
- 0.138.0-beta
- 0.137.0-beta
- 0.136.0-beta
- 0.135.0-beta
- 0.134.0-beta
- 0.133.0-beta
- 0.132.0-beta
- 0.130.0-beta
- 0.129.0-beta
- 0.128.0-beta
- 0.127.0-beta
- 0.126.0-beta
- 0.125.0-beta
- 0.124.15-beta
- 0.123.4-beta
- 0.122.23-beta
GitHub Repository | Product Reference |
Service Description: An API for retrieving and managing error statistics as well as data for individual events.
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:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ErrorStatsServiceClient errorStatsServiceClient = ErrorStatsServiceClient.create()) {
ProjectName projectName = ProjectName.of("[PROJECT]");
DeleteEventsResponse response = errorStatsServiceClient.deleteEvents(projectName);
}
Note: close() needs to be called on the ErrorStatsServiceClient 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:
- A "flattened" method. With this type of method, the fields of the request type have been converted into function parameters. It may be the case that not all fields are available as parameters, and not every API method will have a flattened method entry point.
- A "request object" method. This type of method only takes one parameter, a request object, which must be constructed before the call. Not every API method will have a request object method.
- A "callable" method. This type of method takes no parameters and returns an immutable API callable object, which can be used to initiate calls to the service.
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 ErrorStatsServiceSettings to create(). For example:
To customize credentials:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
ErrorStatsServiceSettings errorStatsServiceSettings =
ErrorStatsServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
ErrorStatsServiceClient errorStatsServiceClient =
ErrorStatsServiceClient.create(errorStatsServiceSettings);
To customize the endpoint:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
ErrorStatsServiceSettings errorStatsServiceSettings =
ErrorStatsServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
ErrorStatsServiceClient errorStatsServiceClient =
ErrorStatsServiceClient.create(errorStatsServiceSettings);
To use REST (HTTP1.1/JSON) transport (instead of gRPC) for sending and receiving requests over the wire:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
ErrorStatsServiceSettings errorStatsServiceSettings =
ErrorStatsServiceSettings.newHttpJsonBuilder().build();
ErrorStatsServiceClient errorStatsServiceClient =
ErrorStatsServiceClient.create(errorStatsServiceSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
Static Methods
create()
public static final ErrorStatsServiceClient create()
Constructs an instance of ErrorStatsServiceClient with default settings.
Returns | |
---|---|
Type | Description |
ErrorStatsServiceClient |
Exceptions | |
---|---|
Type | Description |
IOException |
create(ErrorStatsServiceSettings settings)
public static final ErrorStatsServiceClient create(ErrorStatsServiceSettings settings)
Constructs an instance of ErrorStatsServiceClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.
Parameter | |
---|---|
Name | Description |
settings | ErrorStatsServiceSettings |
Returns | |
---|---|
Type | Description |
ErrorStatsServiceClient |
Exceptions | |
---|---|
Type | Description |
IOException |
create(ErrorStatsServiceStub stub)
public static final ErrorStatsServiceClient create(ErrorStatsServiceStub stub)
Constructs an instance of ErrorStatsServiceClient, using the given stub for making calls. This is for advanced usage - prefer using create(ErrorStatsServiceSettings).
Parameter | |
---|---|
Name | Description |
stub | ErrorStatsServiceStub |
Returns | |
---|---|
Type | Description |
ErrorStatsServiceClient |
Constructors
ErrorStatsServiceClient(ErrorStatsServiceSettings settings)
protected ErrorStatsServiceClient(ErrorStatsServiceSettings settings)
Constructs an instance of ErrorStatsServiceClient, using the given settings. This is protected so that it is easy to make a subclass, but otherwise, the static factory methods should be preferred.
Parameter | |
---|---|
Name | Description |
settings | ErrorStatsServiceSettings |
ErrorStatsServiceClient(ErrorStatsServiceStub stub)
protected ErrorStatsServiceClient(ErrorStatsServiceStub stub)
Parameter | |
---|---|
Name | Description |
stub | ErrorStatsServiceStub |
Methods
awaitTermination(long duration, TimeUnit unit)
public boolean awaitTermination(long duration, TimeUnit unit)
Parameters | |
---|---|
Name | Description |
duration | long |
unit | TimeUnit |
Returns | |
---|---|
Type | Description |
boolean |
Exceptions | |
---|---|
Type | Description |
InterruptedException |
close()
public final void close()
deleteEvents(DeleteEventsRequest request)
public final DeleteEventsResponse deleteEvents(DeleteEventsRequest request)
Deletes all error events of a given project.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ErrorStatsServiceClient errorStatsServiceClient = ErrorStatsServiceClient.create()) {
DeleteEventsRequest request =
DeleteEventsRequest.newBuilder()
.setProjectName(ProjectName.of("[PROJECT]").toString())
.build();
DeleteEventsResponse response = errorStatsServiceClient.deleteEvents(request);
}
Parameter | |
---|---|
Name | Description |
request | DeleteEventsRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
DeleteEventsResponse |
deleteEvents(ProjectName projectName)
public final DeleteEventsResponse deleteEvents(ProjectName projectName)
Deletes all error events of a given project.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ErrorStatsServiceClient errorStatsServiceClient = ErrorStatsServiceClient.create()) {
ProjectName projectName = ProjectName.of("[PROJECT]");
DeleteEventsResponse response = errorStatsServiceClient.deleteEvents(projectName);
}
Parameter | |
---|---|
Name | Description |
projectName | ProjectName Required. The resource name of the Google Cloud Platform project. Written as
Example: |
Returns | |
---|---|
Type | Description |
DeleteEventsResponse |
deleteEvents(String projectName)
public final DeleteEventsResponse deleteEvents(String projectName)
Deletes all error events of a given project.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ErrorStatsServiceClient errorStatsServiceClient = ErrorStatsServiceClient.create()) {
String projectName = ProjectName.of("[PROJECT]").toString();
DeleteEventsResponse response = errorStatsServiceClient.deleteEvents(projectName);
}
Parameter | |
---|---|
Name | Description |
projectName | String Required. The resource name of the Google Cloud Platform project. Written as
Example: |
Returns | |
---|---|
Type | Description |
DeleteEventsResponse |
deleteEventsCallable()
public final UnaryCallable<DeleteEventsRequest,DeleteEventsResponse> deleteEventsCallable()
Deletes all error events of a given project.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ErrorStatsServiceClient errorStatsServiceClient = ErrorStatsServiceClient.create()) {
DeleteEventsRequest request =
DeleteEventsRequest.newBuilder()
.setProjectName(ProjectName.of("[PROJECT]").toString())
.build();
ApiFuture<DeleteEventsResponse> future =
errorStatsServiceClient.deleteEventsCallable().futureCall(request);
// Do something.
DeleteEventsResponse response = future.get();
}
Returns | |
---|---|
Type | Description |
UnaryCallable<DeleteEventsRequest,DeleteEventsResponse> |
getSettings()
public final ErrorStatsServiceSettings getSettings()
Returns | |
---|---|
Type | Description |
ErrorStatsServiceSettings |
getStub()
public ErrorStatsServiceStub getStub()
Returns | |
---|---|
Type | Description |
ErrorStatsServiceStub |
isShutdown()
public boolean isShutdown()
Returns | |
---|---|
Type | Description |
boolean |
isTerminated()
public boolean isTerminated()
Returns | |
---|---|
Type | Description |
boolean |
listEvents(ListEventsRequest request)
public final ErrorStatsServiceClient.ListEventsPagedResponse listEvents(ListEventsRequest request)
Lists the specified events.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ErrorStatsServiceClient errorStatsServiceClient = ErrorStatsServiceClient.create()) {
ListEventsRequest request =
ListEventsRequest.newBuilder()
.setProjectName(ProjectName.of("[PROJECT]").toString())
.setGroupId("groupId293428218")
.setServiceFilter(ServiceContextFilter.newBuilder().build())
.setTimeRange(QueryTimeRange.newBuilder().build())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (ErrorEvent element : errorStatsServiceClient.listEvents(request).iterateAll()) {
// doThingsWith(element);
}
}
Parameter | |
---|---|
Name | Description |
request | ListEventsRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
ErrorStatsServiceClient.ListEventsPagedResponse |
listEvents(ProjectName projectName, String groupId)
public final ErrorStatsServiceClient.ListEventsPagedResponse listEvents(ProjectName projectName, String groupId)
Lists the specified events.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ErrorStatsServiceClient errorStatsServiceClient = ErrorStatsServiceClient.create()) {
ProjectName projectName = ProjectName.of("[PROJECT]");
String groupId = "groupId293428218";
for (ErrorEvent element :
errorStatsServiceClient.listEvents(projectName, groupId).iterateAll()) {
// doThingsWith(element);
}
}
Parameters | |
---|---|
Name | Description |
projectName | ProjectName Required. The resource name of the Google Cloud Platform project. Written as
Example: |
groupId | String Required. The group for which events shall be returned. |
Returns | |
---|---|
Type | Description |
ErrorStatsServiceClient.ListEventsPagedResponse |
listEvents(String projectName, String groupId)
public final ErrorStatsServiceClient.ListEventsPagedResponse listEvents(String projectName, String groupId)
Lists the specified events.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ErrorStatsServiceClient errorStatsServiceClient = ErrorStatsServiceClient.create()) {
String projectName = ProjectName.of("[PROJECT]").toString();
String groupId = "groupId293428218";
for (ErrorEvent element :
errorStatsServiceClient.listEvents(projectName, groupId).iterateAll()) {
// doThingsWith(element);
}
}
Parameters | |
---|---|
Name | Description |
projectName | String Required. The resource name of the Google Cloud Platform project. Written as
Example: |
groupId | String Required. The group for which events shall be returned. |
Returns | |
---|---|
Type | Description |
ErrorStatsServiceClient.ListEventsPagedResponse |
listEventsCallable()
public final UnaryCallable<ListEventsRequest,ListEventsResponse> listEventsCallable()
Lists the specified events.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ErrorStatsServiceClient errorStatsServiceClient = ErrorStatsServiceClient.create()) {
ListEventsRequest request =
ListEventsRequest.newBuilder()
.setProjectName(ProjectName.of("[PROJECT]").toString())
.setGroupId("groupId293428218")
.setServiceFilter(ServiceContextFilter.newBuilder().build())
.setTimeRange(QueryTimeRange.newBuilder().build())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListEventsResponse response = errorStatsServiceClient.listEventsCallable().call(request);
for (ErrorEvent element : response.getErrorEventsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
Returns | |
---|---|
Type | Description |
UnaryCallable<ListEventsRequest,ListEventsResponse> |
listEventsPagedCallable()
public final UnaryCallable<ListEventsRequest,ErrorStatsServiceClient.ListEventsPagedResponse> listEventsPagedCallable()
Lists the specified events.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ErrorStatsServiceClient errorStatsServiceClient = ErrorStatsServiceClient.create()) {
ListEventsRequest request =
ListEventsRequest.newBuilder()
.setProjectName(ProjectName.of("[PROJECT]").toString())
.setGroupId("groupId293428218")
.setServiceFilter(ServiceContextFilter.newBuilder().build())
.setTimeRange(QueryTimeRange.newBuilder().build())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<ErrorEvent> future =
errorStatsServiceClient.listEventsPagedCallable().futureCall(request);
// Do something.
for (ErrorEvent element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
Returns | |
---|---|
Type | Description |
UnaryCallable<ListEventsRequest,ListEventsPagedResponse> |
listGroupStats(ListGroupStatsRequest request)
public final ErrorStatsServiceClient.ListGroupStatsPagedResponse listGroupStats(ListGroupStatsRequest request)
Lists the specified groups.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ErrorStatsServiceClient errorStatsServiceClient = ErrorStatsServiceClient.create()) {
ListGroupStatsRequest request =
ListGroupStatsRequest.newBuilder()
.setProjectName(ProjectName.of("[PROJECT]").toString())
.addAllGroupId(new ArrayList<String>())
.setServiceFilter(ServiceContextFilter.newBuilder().build())
.setTimeRange(QueryTimeRange.newBuilder().build())
.setTimedCountDuration(Duration.newBuilder().build())
.setAlignment(TimedCountAlignment.forNumber(0))
.setAlignmentTime(Timestamp.newBuilder().build())
.setOrder(ErrorGroupOrder.forNumber(0))
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (ErrorGroupStats element : errorStatsServiceClient.listGroupStats(request).iterateAll()) {
// doThingsWith(element);
}
}
Parameter | |
---|---|
Name | Description |
request | ListGroupStatsRequest The request object containing all of the parameters for the API call. |
Returns | |
---|---|
Type | Description |
ErrorStatsServiceClient.ListGroupStatsPagedResponse |
listGroupStats(ProjectName projectName, QueryTimeRange timeRange)
public final ErrorStatsServiceClient.ListGroupStatsPagedResponse listGroupStats(ProjectName projectName, QueryTimeRange timeRange)
Lists the specified groups.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ErrorStatsServiceClient errorStatsServiceClient = ErrorStatsServiceClient.create()) {
ProjectName projectName = ProjectName.of("[PROJECT]");
QueryTimeRange timeRange = QueryTimeRange.newBuilder().build();
for (ErrorGroupStats element :
errorStatsServiceClient.listGroupStats(projectName, timeRange).iterateAll()) {
// doThingsWith(element);
}
}
Parameters | |
---|---|
Name | Description |
projectName | ProjectName Required. The resource name of the Google Cloud Platform project. Written as
Examples: |
timeRange | QueryTimeRange Optional. List data for the given time range. If not set, a default time range is used. The field <code>time_range_begin</code> in the response will specify the beginning of this time range. Only <code>ErrorGroupStats</code> with a non-zero count in the given time range are returned, unless the request contains an explicit <code>group_id</code> list. If a <code>group_id</code> list is given, also <code>ErrorGroupStats</code> with zero occurrences are returned. |
Returns | |
---|---|
Type | Description |
ErrorStatsServiceClient.ListGroupStatsPagedResponse |
listGroupStats(String projectName, QueryTimeRange timeRange)
public final ErrorStatsServiceClient.ListGroupStatsPagedResponse listGroupStats(String projectName, QueryTimeRange timeRange)
Lists the specified groups.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ErrorStatsServiceClient errorStatsServiceClient = ErrorStatsServiceClient.create()) {
String projectName = ProjectName.of("[PROJECT]").toString();
QueryTimeRange timeRange = QueryTimeRange.newBuilder().build();
for (ErrorGroupStats element :
errorStatsServiceClient.listGroupStats(projectName, timeRange).iterateAll()) {
// doThingsWith(element);
}
}
Parameters | |
---|---|
Name | Description |
projectName | String Required. The resource name of the Google Cloud Platform project. Written as
Examples: |
timeRange | QueryTimeRange Optional. List data for the given time range. If not set, a default time range is used. The field <code>time_range_begin</code> in the response will specify the beginning of this time range. Only <code>ErrorGroupStats</code> with a non-zero count in the given time range are returned, unless the request contains an explicit <code>group_id</code> list. If a <code>group_id</code> list is given, also <code>ErrorGroupStats</code> with zero occurrences are returned. |
Returns | |
---|---|
Type | Description |
ErrorStatsServiceClient.ListGroupStatsPagedResponse |
listGroupStatsCallable()
public final UnaryCallable<ListGroupStatsRequest,ListGroupStatsResponse> listGroupStatsCallable()
Lists the specified groups.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ErrorStatsServiceClient errorStatsServiceClient = ErrorStatsServiceClient.create()) {
ListGroupStatsRequest request =
ListGroupStatsRequest.newBuilder()
.setProjectName(ProjectName.of("[PROJECT]").toString())
.addAllGroupId(new ArrayList<String>())
.setServiceFilter(ServiceContextFilter.newBuilder().build())
.setTimeRange(QueryTimeRange.newBuilder().build())
.setTimedCountDuration(Duration.newBuilder().build())
.setAlignment(TimedCountAlignment.forNumber(0))
.setAlignmentTime(Timestamp.newBuilder().build())
.setOrder(ErrorGroupOrder.forNumber(0))
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListGroupStatsResponse response =
errorStatsServiceClient.listGroupStatsCallable().call(request);
for (ErrorGroupStats element : response.getErrorGroupStatsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
Returns | |
---|---|
Type | Description |
UnaryCallable<ListGroupStatsRequest,ListGroupStatsResponse> |
listGroupStatsPagedCallable()
public final UnaryCallable<ListGroupStatsRequest,ErrorStatsServiceClient.ListGroupStatsPagedResponse> listGroupStatsPagedCallable()
Lists the specified groups.
Sample code:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ErrorStatsServiceClient errorStatsServiceClient = ErrorStatsServiceClient.create()) {
ListGroupStatsRequest request =
ListGroupStatsRequest.newBuilder()
.setProjectName(ProjectName.of("[PROJECT]").toString())
.addAllGroupId(new ArrayList<String>())
.setServiceFilter(ServiceContextFilter.newBuilder().build())
.setTimeRange(QueryTimeRange.newBuilder().build())
.setTimedCountDuration(Duration.newBuilder().build())
.setAlignment(TimedCountAlignment.forNumber(0))
.setAlignmentTime(Timestamp.newBuilder().build())
.setOrder(ErrorGroupOrder.forNumber(0))
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<ErrorGroupStats> future =
errorStatsServiceClient.listGroupStatsPagedCallable().futureCall(request);
// Do something.
for (ErrorGroupStats element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
Returns | |
---|---|
Type | Description |
UnaryCallable<ListGroupStatsRequest,ListGroupStatsPagedResponse> |
shutdown()
public void shutdown()
shutdownNow()
public void shutdownNow()