Class TraceServiceGrpc.TraceServiceStub
- java.lang.Object
-
- io.grpc.stub.AbstractStub<S>
-
- io.grpc.stub.AbstractAsyncStub<TraceServiceGrpc.TraceServiceStub>
-
- com.google.devtools.cloudtrace.v1.TraceServiceGrpc.TraceServiceStub
-
- Enclosing class:
- TraceServiceGrpc
public static final class TraceServiceGrpc.TraceServiceStub extends io.grpc.stub.AbstractAsyncStub<TraceServiceGrpc.TraceServiceStub>
A stub to allow clients to do asynchronous rpc calls to service TraceService.This file describes an API for collecting and viewing traces and spans within a trace. A Trace is a collection of spans corresponding to a single operation or set of operations for an application. A span is an individual timed event which forms a node of the trace tree. Spans for a single trace may span multiple services.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected TraceServiceGrpc.TraceServiceStub
build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
void
getTrace(GetTraceRequest request, io.grpc.stub.StreamObserver<Trace> responseObserver)
Gets a single trace by its ID.void
listTraces(ListTracesRequest request, io.grpc.stub.StreamObserver<ListTracesResponse> responseObserver)
Returns of a list of traces that match the specified filter conditions.void
patchTraces(PatchTracesRequest request, io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
Sends new traces to Stackdriver Trace or updates existing traces.
-
-
-
Method Detail
-
build
protected TraceServiceGrpc.TraceServiceStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
- Specified by:
build
in classio.grpc.stub.AbstractStub<TraceServiceGrpc.TraceServiceStub>
-
listTraces
public void listTraces(ListTracesRequest request, io.grpc.stub.StreamObserver<ListTracesResponse> responseObserver)
Returns of a list of traces that match the specified filter conditions.
-
getTrace
public void getTrace(GetTraceRequest request, io.grpc.stub.StreamObserver<Trace> responseObserver)
Gets a single trace by its ID.
-
patchTraces
public void patchTraces(PatchTracesRequest request, io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
Sends new traces to Stackdriver Trace or updates existing traces. If the ID of a trace that you send matches that of an existing trace, any fields in the existing trace and its spans are overwritten by the provided values, and any new fields provided are merged with the existing trace data. If the ID does not match, a new trace is created.
-
-