Uses of Interface
io.opencensus.common.Scope
-
Packages that use Scope Package Description io.opencensus.contrib.http.servlet io.opencensus.exporter.trace.util io.opencensus.implcore.internal io.opencensus.implcore.tags io.opencensus.internal Interfaces and implementations that are internal to OpenCensus.io.opencensus.tags API for associating tags with scoped operations.io.opencensus.trace API for distributed tracing. -
-
Uses of Scope in io.opencensus.contrib.http.servlet
Methods in io.opencensus.contrib.http.servlet that return Scope Modifier and Type Method Description static Scope
OcHttpServletUtil. withScope(javax.servlet.ServletRequest request)
Enters the scope of code where the givenServletRequest
will be processed and returns an object that represents the scope.(package private) Scope
OcHttpServletListener. withSpan()
-
Uses of Scope in io.opencensus.exporter.trace.util
Methods in io.opencensus.exporter.trace.util that return Scope Modifier and Type Method Description private Scope
TimeLimitedHandler. newExportScope()
-
Uses of Scope in io.opencensus.implcore.internal
Classes in io.opencensus.implcore.internal that implement Scope Modifier and Type Class Description class
NoopScope
AScope
that does nothing when it is created or closed.Fields in io.opencensus.implcore.internal declared as Scope Modifier and Type Field Description private static Scope
NoopScope. INSTANCE
Methods in io.opencensus.implcore.internal that return Scope Modifier and Type Method Description static Scope
NoopScope. getInstance()
Returns aNoopScope
. -
Uses of Scope in io.opencensus.implcore.tags
Classes in io.opencensus.implcore.tags that implement Scope Modifier and Type Class Description private static class
CurrentTagMapUtils.WithTagMap
Methods in io.opencensus.implcore.tags that return Scope Modifier and Type Method Description Scope
NoopTagMapBuilder. buildScoped()
Scope
TagMapBuilderImpl. buildScoped()
Scope
TaggerImpl. withTagContext(TagContext tags)
(package private) static Scope
CurrentTagMapUtils. withTagMap(TagContext tags)
Enters the scope of code where the givenTagContext
is in the current context and returns an object that represents that scope. -
Uses of Scope in io.opencensus.internal
Classes in io.opencensus.internal that implement Scope Modifier and Type Class Description class
NoopScope
AScope
that does nothing when it is created or closed.Fields in io.opencensus.internal declared as Scope Modifier and Type Field Description private static Scope
NoopScope. INSTANCE
Methods in io.opencensus.internal that return Scope Modifier and Type Method Description static Scope
NoopScope. getInstance()
Returns aNoopScope
. -
Uses of Scope in io.opencensus.tags
Methods in io.opencensus.tags that return Scope Modifier and Type Method Description Scope
NoopTags.NoopTagContextBuilder. buildScoped()
abstract Scope
TagContextBuilder. buildScoped()
Enters the scope of code where theTagContext
created from this builder is in the current context and returns an object that represents that scope.Scope
NoopTags.NoopTagger. withTagContext(TagContext tags)
abstract Scope
Tagger. withTagContext(TagContext tags)
Enters the scope of code where the givenTagContext
is in the current context (replacing the previousTagContext
) and returns an object that represents that scope. -
Uses of Scope in io.opencensus.trace
Classes in io.opencensus.trace that implement Scope Modifier and Type Class Description private static class
CurrentSpanUtils.ScopeInSpan
Methods in io.opencensus.trace that return Scope Modifier and Type Method Description Scope
SpanBuilder. startScopedSpan()
Starts a new span and sets it as thecurrent span
.(package private) static Scope
CurrentSpanUtils. withSpan(Span span, boolean endSpan)
Enters the scope of code where the givenSpan
is in the current context, and returns an object that represents that scope.Scope
Tracer. withSpan(Span span)
Enters the scope of code where the givenSpan
is in the current Context, and returns an object that represents that scope.
-