Uses of Class
io.opencensus.contrib.http.HttpExtractor
-
Packages that use HttpExtractor Package Description io.opencensus.contrib.http io.opencensus.contrib.http.jaxrs io.opencensus.contrib.http.jetty.client io.opencensus.contrib.http.servlet -
-
Uses of HttpExtractor in io.opencensus.contrib.http
Fields in io.opencensus.contrib.http declared as HttpExtractor Modifier and Type Field Description (package private) HttpExtractor<Q,P>
AbstractHttpHandler. extractor
TheHttpExtractor
used to extract information from request/response.Methods in io.opencensus.contrib.http with parameters of type HttpExtractor Modifier and Type Method Description (package private) void
AbstractHttpHandler. addSpanRequestAttributes(Span span, Q request, HttpExtractor<Q,P> extractor)
(package private) java.lang.String
AbstractHttpHandler. getSpanName(Q request, HttpExtractor<Q,P> extractor)
Constructors in io.opencensus.contrib.http with parameters of type HttpExtractor Constructor Description AbstractHttpHandler(HttpExtractor<Q,P> extractor)
Constructor to allow access from same package subclasses only.HttpClientHandler(Tracer tracer, HttpExtractor<Q,P> extractor, TextFormat textFormat, TextFormat.Setter<C> setter)
Creates aHttpClientHandler
with given parameters.HttpServerHandler(Tracer tracer, HttpExtractor<Q,P> extractor, TextFormat textFormat, TextFormat.Getter<C> getter, java.lang.Boolean publicEndpoint)
Creates aHttpServerHandler
with given parameters. -
Uses of HttpExtractor in io.opencensus.contrib.http.jaxrs
Subclasses of HttpExtractor in io.opencensus.contrib.http.jaxrs Modifier and Type Class Description class
JaxrsClientExtractor
Extracts information from JAX-RS client request and response.class
JaxrsContainerExtractor
Extracts information from JAX-RS container request and response.Constructors in io.opencensus.contrib.http.jaxrs with parameters of type HttpExtractor Constructor Description JaxrsClientFilter(HttpExtractor<javax.ws.rs.client.ClientRequestContext,javax.ws.rs.client.ClientResponseContext> extractor, TextFormat propagationFormat)
Construct new client filter with custom configuration.JaxrsContainerFilter(HttpExtractor<ExtendedContainerRequest,javax.ws.rs.container.ContainerResponseContext> extractor, TextFormat propagationFormat, java.lang.Boolean publicEndpoint)
Construct instance with custom configuration. -
Uses of HttpExtractor in io.opencensus.contrib.http.jetty.client
Subclasses of HttpExtractor in io.opencensus.contrib.http.jetty.client Modifier and Type Class Description (package private) class
OcJettyHttpClientExtractor
This class extracts attributes fromRequest
andResponse
.Methods in io.opencensus.contrib.http.jetty.client with parameters of type HttpExtractor Modifier and Type Method Description private static HttpClientHandler<org.eclipse.jetty.client.api.Request,org.eclipse.jetty.client.api.Response,org.eclipse.jetty.client.api.Request>
OcJettyHttpClient. buildHandler(HttpExtractor<org.eclipse.jetty.client.api.Request,org.eclipse.jetty.client.api.Response> extractor, TextFormat propagator)
Constructors in io.opencensus.contrib.http.jetty.client with parameters of type HttpExtractor Constructor Description OcJettyHttpClient(org.eclipse.jetty.client.HttpClientTransport transport, org.eclipse.jetty.util.ssl.SslContextFactory sslContextFactory, HttpExtractor<org.eclipse.jetty.client.api.Request,org.eclipse.jetty.client.api.Response> extractor, TextFormat propagator)
Create a newOcJettyHttpClient
with support for HTTPS, extractor and propagator. -
Uses of HttpExtractor in io.opencensus.contrib.http.servlet
Subclasses of HttpExtractor in io.opencensus.contrib.http.servlet Modifier and Type Class Description (package private) class
OcHttpServletExtractor
This class extracts attributes fromHttpServletRequest
andHttpServletResponse
.Methods in io.opencensus.contrib.http.servlet with parameters of type HttpExtractor Modifier and Type Method Description (package private) static HttpServerHandler<javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse,javax.servlet.http.HttpServletRequest>
OcHttpServletFilter. buildHttpServerHandlerWithOptions(HttpExtractor<javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse> extractor, TextFormat propagator, java.lang.Boolean publicEndpoint)
-