Skip navigation links
G H I P R 

G

getCloudTraceFormat() - Static method in class io.opencensus.contrib.http.util.HttpPropagationUtil
Returns the Stack Driver format implementation.
getHost(Q) - Method in class io.opencensus.contrib.http.HttpExtractor
Returns the request URL host.
getMethod(Q) - Method in class io.opencensus.contrib.http.HttpExtractor
Returns the request method.
getPath(Q) - Method in class io.opencensus.contrib.http.HttpExtractor
Returns the request URL path.
getRoute(Q) - Method in class io.opencensus.contrib.http.HttpExtractor
Returns the request route.
getStatusCode(P) - Method in class io.opencensus.contrib.http.HttpExtractor
Returns the response status code.
getUrl(Q) - Method in class io.opencensus.contrib.http.HttpExtractor
Returns the request URL.
getUserAgent(Q) - Method in class io.opencensus.contrib.http.HttpExtractor
Returns the request user agent.

H

handleEnd(HttpRequestContext, Q, P, Throwable) - Method in class io.opencensus.contrib.http.HttpClientHandler
Close an HTTP span and records stats specific to the request.
handleEnd(HttpRequestContext, Q, P, Throwable) - Method in class io.opencensus.contrib.http.HttpServerHandler
Close an HTTP span and records stats specific to the request.
handleStart(Span, C, Q) - Method in class io.opencensus.contrib.http.HttpClientHandler
Instrument a request for tracing and stats before it is sent.
handleStart(C, Q) - Method in class io.opencensus.contrib.http.HttpServerHandler
Instrument an incoming request before it is handled.
HTTP_CLIENT_COMPLETED_COUNT_VIEW - Static variable in class io.opencensus.contrib.http.util.HttpViewConstants
View for count of client-side HTTP requests completed.
HTTP_CLIENT_HOST - Static variable in class io.opencensus.contrib.http.util.HttpMeasureConstants
TagKey for the value of the client-side HTTP host header.
HTTP_CLIENT_METHOD - Static variable in class io.opencensus.contrib.http.util.HttpMeasureConstants
TagKey for the client-side HTTP method of the request, capitalized (GET, POST, etc.).
HTTP_CLIENT_PATH - Static variable in class io.opencensus.contrib.http.util.HttpMeasureConstants
TagKey for the client-side URL path (not including query string) in the request.
HTTP_CLIENT_RECEIVED_BYTES - Static variable in class io.opencensus.contrib.http.util.HttpMeasureConstants
Measure for the client-side total bytes received in response bodies (not including headers but including error responses with bodies).
HTTP_CLIENT_RECEIVED_BYTES_VIEW - Static variable in class io.opencensus.contrib.http.util.HttpViewConstants
View for size distribution of client-side HTTP response body.
HTTP_CLIENT_ROUNDTRIP_LATENCY - Static variable in class io.opencensus.contrib.http.util.HttpMeasureConstants
Measure for the client-side time between first byte of request headers sent to last byte of response received, or terminal error.
HTTP_CLIENT_ROUNDTRIP_LATENCY_VIEW - Static variable in class io.opencensus.contrib.http.util.HttpViewConstants
View for roundtrip latency distribution of client-side HTTP requests.
HTTP_CLIENT_SENT_BYTES - Static variable in class io.opencensus.contrib.http.util.HttpMeasureConstants
Measure for the client-side total bytes sent in request body (not including headers).
HTTP_CLIENT_SENT_BYTES_VIEW - Static variable in class io.opencensus.contrib.http.util.HttpViewConstants
View for size distribution of client-side HTTP request body.
HTTP_CLIENT_STATUS - Static variable in class io.opencensus.contrib.http.util.HttpMeasureConstants
TagKey for the numeric client-side HTTP response status code (e.g.
HTTP_HOST - Static variable in class io.opencensus.contrib.http.util.HttpTraceAttributeConstants
 
HTTP_METHOD - Static variable in class io.opencensus.contrib.http.util.HttpTraceAttributeConstants
 
HTTP_PATH - Static variable in class io.opencensus.contrib.http.util.HttpTraceAttributeConstants
 
HTTP_ROUTE - Static variable in class io.opencensus.contrib.http.util.HttpTraceAttributeConstants
 
HTTP_SERVER_COMPLETED_COUNT_VIEW - Static variable in class io.opencensus.contrib.http.util.HttpViewConstants
View for count of server-side HTTP requests serving completed.
HTTP_SERVER_HOST - Static variable in class io.opencensus.contrib.http.util.HttpMeasureConstants
TagKey for the value of the server-side HTTP host header.
HTTP_SERVER_LATENCY - Static variable in class io.opencensus.contrib.http.util.HttpMeasureConstants
Measure for the server-side time between first byte of request headers received to last byte of response sent, or terminal error.
HTTP_SERVER_LATENCY_VIEW - Static variable in class io.opencensus.contrib.http.util.HttpViewConstants
View for latency distribution of server-side HTTP requests serving.
HTTP_SERVER_METHOD - Static variable in class io.opencensus.contrib.http.util.HttpMeasureConstants
TagKey for the server-side HTTP method of the request, capitalized (GET, POST, etc.).
HTTP_SERVER_PATH - Static variable in class io.opencensus.contrib.http.util.HttpMeasureConstants
TagKey for the server-side URL path (not including query string) in the request.
HTTP_SERVER_RECEIVED_BYTES - Static variable in class io.opencensus.contrib.http.util.HttpMeasureConstants
Measure for the server-side total bytes received in request body (not including headers).
HTTP_SERVER_RECEIVED_BYTES_VIEW - Static variable in class io.opencensus.contrib.http.util.HttpViewConstants
View for size distribution of server-side HTTP request body.
HTTP_SERVER_ROUTE - Static variable in class io.opencensus.contrib.http.util.HttpMeasureConstants
TagKey for the server-side logical route, a pattern that matched the URL, of a handler that processed the request.
HTTP_SERVER_SENT_BYTES - Static variable in class io.opencensus.contrib.http.util.HttpMeasureConstants
Measure for the server-side total bytes sent in response bodies (not including headers but including error responses with bodies).
HTTP_SERVER_SENT_BYTES_VIEW - Static variable in class io.opencensus.contrib.http.util.HttpViewConstants
View for size distribution of server-side HTTP response body.
HTTP_SERVER_STATUS - Static variable in class io.opencensus.contrib.http.util.HttpMeasureConstants
TagKey for the numeric server-side HTTP response status code (e.g.
HTTP_STATUS_CODE - Static variable in class io.opencensus.contrib.http.util.HttpTraceAttributeConstants
 
HTTP_URL - Static variable in class io.opencensus.contrib.http.util.HttpTraceAttributeConstants
 
HTTP_USER_AGENT - Static variable in class io.opencensus.contrib.http.util.HttpTraceAttributeConstants
 
HttpClientHandler<Q,P,C> - Class in io.opencensus.contrib.http
This helper class provides routine methods to instrument HTTP clients.
HttpClientHandler(Tracer, HttpExtractor<Q, P>, TextFormat, TextFormat.Setter<C>) - Constructor for class io.opencensus.contrib.http.HttpClientHandler
Creates a HttpClientHandler with given parameters.
HttpExtractor<Q,P> - Class in io.opencensus.contrib.http
An adaptor to extract information from request and response.
HttpExtractor() - Constructor for class io.opencensus.contrib.http.HttpExtractor
 
HttpMeasureConstants - Class in io.opencensus.contrib.http.util
A helper class which holds OpenCensus's default HTTP Measures and TagKeys.
HttpPropagationUtil - Class in io.opencensus.contrib.http.util
Utility class to get all supported TextFormat.
HttpRequestContext - Class in io.opencensus.contrib.http
This class provides storage per request context on http client and server.
HttpServerHandler<Q,P,C> - Class in io.opencensus.contrib.http
This helper class provides routine methods to instrument HTTP servers.
HttpServerHandler(Tracer, HttpExtractor<Q, P>, TextFormat, TextFormat.Getter<C>, Boolean) - Constructor for class io.opencensus.contrib.http.HttpServerHandler
Creates a HttpServerHandler with given parameters.
HttpTraceAttributeConstants - Class in io.opencensus.contrib.http.util
Constant Trace attribute keys for HTTP Request and Response @Since 0.18
HttpTraceUtil - Class in io.opencensus.contrib.http.util
A helper class to provide convenience methods for tracing.
HttpViewConstants - Class in io.opencensus.contrib.http.util
A helper class that holds OpenCensus's default HTTP Views.
HttpViews - Class in io.opencensus.contrib.http.util
A helper class that allows users to register HTTP views easily.

I

io.opencensus.contrib.http - package io.opencensus.contrib.http
 
io.opencensus.contrib.http.util - package io.opencensus.contrib.http.util
 

P

parseResponseStatus(int, Throwable) - Static method in class io.opencensus.contrib.http.util.HttpTraceUtil
Parse OpenCensus Status from HTTP response status code.

R

registerAllClientViews() - Static method in class io.opencensus.contrib.http.util.HttpViews
Register all default client views.
registerAllServerViews() - Static method in class io.opencensus.contrib.http.util.HttpViews
Register all default server views.
registerAllViews() - Static method in class io.opencensus.contrib.http.util.HttpViews
Register all default views.
G H I P R 
Skip navigation links