Class ErrorStatsServiceClient (0.163.0-beta)

GitHub RepositoryProduct 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().

Methods
Method Description Method Variants

ListGroupStats

Lists the specified groups.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • listGroupStats(ListGroupStatsRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • listGroupStats(ProjectName projectName, QueryTimeRange timeRange)

  • listGroupStats(String projectName, QueryTimeRange timeRange)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • listGroupStatsPagedCallable()

  • listGroupStatsCallable()

ListEvents

Lists the specified events.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • listEvents(ListEventsRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • listEvents(ProjectName projectName, String groupId)

  • listEvents(String projectName, String groupId)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • listEventsPagedCallable()

  • listEventsCallable()

DeleteEvents

Deletes all error events of a given project.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • deleteEvents(DeleteEventsRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • deleteEvents(ProjectName projectName)

  • deleteEvents(String projectName)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • deleteEventsCallable()

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.

Inheritance

java.lang.Object > ErrorStatsServiceClient

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 projects/{projectID}, where {projectID} is the Google Cloud Platform project ID.

Example: projects/my-project-123.

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 projects/{projectID}, where {projectID} is the Google Cloud Platform project ID.

Example: projects/my-project-123.

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 projects/{projectID}, where {projectID} is the Google Cloud Platform project ID.

Example: projects/my-project-123.

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 projects/{projectID}, where {projectID} is the Google Cloud Platform project ID.

Example: projects/my-project-123.

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 projects/{projectID} or projects/{projectNumber}, where {projectID} and {projectNumber} can be found in the Google Cloud Console.

Examples: projects/my-project-123, projects/5551234.

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 projects/{projectID} or projects/{projectNumber}, where {projectID} and {projectNumber} can be found in the Google Cloud Console.

Examples: projects/my-project-123, projects/5551234.

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()