Uses of Class
io.opencensus.trace.Status
Packages that use Status
Package
Description
API for distributed tracing.
-
Uses of Status in io.opencensus.contrib.grpc.util
Methods in io.opencensus.contrib.grpc.util that return StatusModifier and TypeMethodDescriptionstatic StatusStatusConverter.fromGrpcStatus(io.grpc.Status grpcStatus) Returns aStatusfrom aStatus.Methods in io.opencensus.contrib.grpc.util with parameters of type StatusModifier and TypeMethodDescriptionstatic io.grpc.StatusStatusConverter.toGrpcStatus(Status opencensusStatus) Returns aStatusfrom aStatus. -
Uses of Status in io.opencensus.contrib.http.util
Methods in io.opencensus.contrib.http.util that return StatusModifier and TypeMethodDescriptionstatic final StatusHttpTraceUtil.parseResponseStatus(int statusCode, Throwable error) Parse OpenCensus Status from HTTP response status code. -
Uses of Status in io.opencensus.implcore.trace
Methods in io.opencensus.implcore.trace that return StatusModifier and TypeMethodDescriptionRecordEventsSpanImpl.getStatus()Returns the status of theSpan.Methods in io.opencensus.implcore.trace with parameters of type Status -
Uses of Status in io.opencensus.trace
Fields in io.opencensus.trace declared as StatusModifier and TypeFieldDescriptionstatic final StatusStatus.ABORTEDThe operation was aborted, typically due to a concurrency issue like sequencer check failures, transaction aborts, etc.static final StatusStatus.ALREADY_EXISTSSome entity that we attempted to create (e.g., file or directory) already exists.static final StatusStatus.CANCELLEDThe operation was cancelled (typically by the caller).static final StatusStatus.DATA_LOSSUnrecoverable data loss or corruption.static final StatusStatus.DEADLINE_EXCEEDEDDeadline expired before operation could complete.static final StatusStatus.FAILED_PRECONDITIONOperation was rejected because the system is not in a state required for the operation's execution.static final StatusStatus.INTERNALInternal errors.static final StatusStatus.INVALID_ARGUMENTClient specified an invalid argument.static final StatusStatus.NOT_FOUNDSome requested entity (e.g., file or directory) was not found.static final StatusStatus.OKThe operation completed successfully.static final StatusStatus.OUT_OF_RANGEOperation was attempted past the valid range.static final StatusStatus.PERMISSION_DENIEDThe caller does not have permission to execute the specified operation.static final StatusStatus.RESOURCE_EXHAUSTEDSome resource has been exhausted, perhaps a per-user quota, or perhaps the entire file system is out of space.static final StatusStatus.UNAUTHENTICATEDThe request does not have valid authentication credentials for the operation.static final StatusStatus.UNAVAILABLEThe service is currently unavailable.static final StatusStatus.UNIMPLEMENTEDOperation is not implemented or not supported/enabled in this service.static final StatusStatus.UNKNOWNUnknown error.Methods in io.opencensus.trace that return StatusModifier and TypeMethodDescriptionabstract StatusEndSpanOptions.getStatus()Returns the status.Status.CanonicalCode.toStatus()Returns the status that has the currentCanonicalCode..Status.withDescription(String description) Creates a derived instance ofStatuswith the given description.Methods in io.opencensus.trace with parameters of type Status -
Uses of Status in io.opencensus.trace.export
Methods in io.opencensus.trace.export that return StatusModifier and TypeMethodDescriptionabstract StatusSpanData.getStatus()Returns theStatusornullifSpanis still active.Methods in io.opencensus.trace.export with parameters of type StatusModifier and TypeMethodDescriptionstatic SpanDataSpanData.create(SpanContext context, SpanId parentSpanId, Boolean hasRemoteParent, String name, Timestamp startTimestamp, SpanData.Attributes attributes, SpanData.TimedEvents<Annotation> annotations, SpanData.TimedEvents<? extends BaseMessageEvent> messageOrNetworkEvents, SpanData.Links links, Integer childSpanCount, Status status, Timestamp endTimestamp) Deprecated.static SpanDataSpanData.create(SpanContext context, SpanId parentSpanId, Boolean hasRemoteParent, String name, Span.Kind kind, Timestamp startTimestamp, SpanData.Attributes attributes, SpanData.TimedEvents<Annotation> annotations, SpanData.TimedEvents<? extends BaseMessageEvent> messageOrNetworkEvents, SpanData.Links links, Integer childSpanCount, Status status, Timestamp endTimestamp) Returns a new immutableSpanData.
SpanData.create(SpanContext, SpanId, Boolean, String, Kind, Timestamp, Attributes, TimedEvents, TimedEvents, Links, Integer, Status, Timestamp).