@Generated(value="by gapic-generator-java") public class TraceServiceClient extends Object implements com.google.api.gax.core.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:
// 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 (TraceServiceClient traceServiceClient = TraceServiceClient.create()) {
String projectId = "projectId-894832108";
String traceId = "traceId-1067401920";
Trace response = traceServiceClient.getTrace(projectId, traceId);
}
Note: close() needs to be called on the TraceServiceClient 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 TraceServiceSettings 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
TraceServiceSettings traceServiceSettings =
TraceServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
TraceServiceClient traceServiceClient = TraceServiceClient.create(traceServiceSettings);
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
TraceServiceSettings traceServiceSettings =
TraceServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
TraceServiceClient traceServiceClient = TraceServiceClient.create(traceServiceSettings);
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
TraceServiceSettings traceServiceSettings = TraceServiceSettings.newHttpJsonBuilder().build();
TraceServiceClient traceServiceClient = TraceServiceClient.create(traceServiceSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
| Modifier and Type | Class and Description |
|---|---|
static class |
TraceServiceClient.ListTracesFixedSizeCollection |
static class |
TraceServiceClient.ListTracesPage |
static class |
TraceServiceClient.ListTracesPagedResponse |
| Modifier | Constructor and Description |
|---|---|
protected |
TraceServiceClient(TraceServiceSettings settings)
Constructs an instance of TraceServiceClient, using the given settings.
|
protected |
TraceServiceClient(TraceServiceStub stub) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
awaitTermination(long duration,
TimeUnit unit) |
void |
close() |
static TraceServiceClient |
create()
Constructs an instance of TraceServiceClient with default settings.
|
static TraceServiceClient |
create(TraceServiceSettings settings)
Constructs an instance of TraceServiceClient, using the given settings.
|
static TraceServiceClient |
create(TraceServiceStub stub)
Constructs an instance of TraceServiceClient, using the given stub for making calls.
|
TraceServiceSettings |
getSettings() |
TraceServiceStub |
getStub() |
Trace |
getTrace(GetTraceRequest request)
Gets a single trace by its ID.
|
Trace |
getTrace(String projectId,
String traceId)
Gets a single trace by its ID.
|
com.google.api.gax.rpc.UnaryCallable<GetTraceRequest,Trace> |
getTraceCallable()
Gets a single trace by its ID.
|
boolean |
isShutdown() |
boolean |
isTerminated() |
TraceServiceClient.ListTracesPagedResponse |
listTraces(ListTracesRequest request)
Returns of a list of traces that match the specified filter conditions.
|
TraceServiceClient.ListTracesPagedResponse |
listTraces(String projectId)
Returns of a list of traces that match the specified filter conditions.
|
com.google.api.gax.rpc.UnaryCallable<ListTracesRequest,ListTracesResponse> |
listTracesCallable()
Returns of a list of traces that match the specified filter conditions.
|
com.google.api.gax.rpc.UnaryCallable<ListTracesRequest,TraceServiceClient.ListTracesPagedResponse> |
listTracesPagedCallable()
Returns of a list of traces that match the specified filter conditions.
|
void |
patchTraces(PatchTracesRequest request)
Sends new traces to Stackdriver Trace or updates existing traces.
|
void |
patchTraces(String projectId,
Traces traces)
Sends new traces to Stackdriver Trace or updates existing traces.
|
com.google.api.gax.rpc.UnaryCallable<PatchTracesRequest,com.google.protobuf.Empty> |
patchTracesCallable()
Sends new traces to Stackdriver Trace or updates existing traces.
|
void |
shutdown() |
void |
shutdownNow() |
protected TraceServiceClient(TraceServiceSettings settings) throws IOException
IOExceptionprotected TraceServiceClient(TraceServiceStub stub)
public static final TraceServiceClient create() throws IOException
IOExceptionpublic static final TraceServiceClient create(TraceServiceSettings settings) throws IOException
IOExceptionpublic static final TraceServiceClient create(TraceServiceStub stub)
public final TraceServiceSettings getSettings()
public TraceServiceStub getStub()
public final TraceServiceClient.ListTracesPagedResponse listTraces(String projectId)
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 (TraceServiceClient traceServiceClient = TraceServiceClient.create()) {
String projectId = "projectId-894832108";
for (Trace element : traceServiceClient.listTraces(projectId).iterateAll()) {
// doThingsWith(element);
}
}
projectId - Required. ID of the Cloud project where the trace data is stored.com.google.api.gax.rpc.ApiException - if the remote call failspublic final TraceServiceClient.ListTracesPagedResponse listTraces(ListTracesRequest request)
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 (TraceServiceClient traceServiceClient = TraceServiceClient.create()) {
ListTracesRequest request =
ListTracesRequest.newBuilder()
.setProjectId("projectId-894832108")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setStartTime(Timestamp.newBuilder().build())
.setEndTime(Timestamp.newBuilder().build())
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.build();
for (Trace element : traceServiceClient.listTraces(request).iterateAll()) {
// doThingsWith(element);
}
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<ListTracesRequest,TraceServiceClient.ListTracesPagedResponse> listTracesPagedCallable()
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 (TraceServiceClient traceServiceClient = TraceServiceClient.create()) {
ListTracesRequest request =
ListTracesRequest.newBuilder()
.setProjectId("projectId-894832108")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setStartTime(Timestamp.newBuilder().build())
.setEndTime(Timestamp.newBuilder().build())
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.build();
ApiFuture<Trace> future = traceServiceClient.listTracesPagedCallable().futureCall(request);
// Do something.
for (Trace element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final com.google.api.gax.rpc.UnaryCallable<ListTracesRequest,ListTracesResponse> listTracesCallable()
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 (TraceServiceClient traceServiceClient = TraceServiceClient.create()) {
ListTracesRequest request =
ListTracesRequest.newBuilder()
.setProjectId("projectId-894832108")
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setStartTime(Timestamp.newBuilder().build())
.setEndTime(Timestamp.newBuilder().build())
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.build();
while (true) {
ListTracesResponse response = traceServiceClient.listTracesCallable().call(request);
for (Trace element : response.getTracesList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final Trace getTrace(String projectId, String traceId)
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 (TraceServiceClient traceServiceClient = TraceServiceClient.create()) {
String projectId = "projectId-894832108";
String traceId = "traceId-1067401920";
Trace response = traceServiceClient.getTrace(projectId, traceId);
}
projectId - Required. ID of the Cloud project where the trace data is stored.traceId - Required. ID of the trace to return.com.google.api.gax.rpc.ApiException - if the remote call failspublic final Trace getTrace(GetTraceRequest request)
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 (TraceServiceClient traceServiceClient = TraceServiceClient.create()) {
GetTraceRequest request =
GetTraceRequest.newBuilder()
.setProjectId("projectId-894832108")
.setTraceId("traceId-1067401920")
.build();
Trace response = traceServiceClient.getTrace(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<GetTraceRequest,Trace> getTraceCallable()
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 (TraceServiceClient traceServiceClient = TraceServiceClient.create()) {
GetTraceRequest request =
GetTraceRequest.newBuilder()
.setProjectId("projectId-894832108")
.setTraceId("traceId-1067401920")
.build();
ApiFuture<Trace> future = traceServiceClient.getTraceCallable().futureCall(request);
// Do something.
Trace response = future.get();
}
public final void patchTraces(String projectId, Traces traces)
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 (TraceServiceClient traceServiceClient = TraceServiceClient.create()) {
String projectId = "projectId-894832108";
Traces traces = Traces.newBuilder().build();
traceServiceClient.patchTraces(projectId, traces);
}
projectId - Required. ID of the Cloud project where the trace data is stored.traces - Required. The body of the message.com.google.api.gax.rpc.ApiException - if the remote call failspublic final void patchTraces(PatchTracesRequest request)
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 (TraceServiceClient traceServiceClient = TraceServiceClient.create()) {
PatchTracesRequest request =
PatchTracesRequest.newBuilder()
.setProjectId("projectId-894832108")
.setTraces(Traces.newBuilder().build())
.build();
traceServiceClient.patchTraces(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<PatchTracesRequest,com.google.protobuf.Empty> patchTracesCallable()
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 (TraceServiceClient traceServiceClient = TraceServiceClient.create()) {
PatchTracesRequest request =
PatchTracesRequest.newBuilder()
.setProjectId("projectId-894832108")
.setTraces(Traces.newBuilder().build())
.build();
ApiFuture<Empty> future = traceServiceClient.patchTracesCallable().futureCall(request);
// Do something.
future.get();
}
public final void close()
close in interface AutoCloseablepublic void shutdown()
shutdown in interface com.google.api.gax.core.BackgroundResourcepublic boolean isShutdown()
isShutdown in interface com.google.api.gax.core.BackgroundResourcepublic boolean isTerminated()
isTerminated in interface com.google.api.gax.core.BackgroundResourcepublic void shutdownNow()
shutdownNow in interface com.google.api.gax.core.BackgroundResourcepublic boolean awaitTermination(long duration,
TimeUnit unit)
throws InterruptedException
awaitTermination in interface com.google.api.gax.core.BackgroundResourceInterruptedExceptionCopyright © 2022 Google LLC. All rights reserved.