package http

import "github.com/openzipkin/zipkin-go/reporter/http"

Package http implements a HTTP reporter to send spans to Zipkin V2 collectors.

Index

Functions

func NewReporter

func NewReporter(url string, opts ...ReporterOption) reporter.Reporter

NewReporter returns a new HTTP Reporter. url should be the endpoint to send the spans to, e.g. http://localhost:9411/api/v2/spans

Types

type ReporterOption

type ReporterOption func(r *httpReporter)

ReporterOption sets a parameter for the HTTP Reporter

func BatchInterval

func BatchInterval(d time.Duration) ReporterOption

BatchInterval sets the maximum duration we will buffer traces before emitting them to the collector. The default batch interval is 1 second.

func BatchSize

func BatchSize(n int) ReporterOption

BatchSize sets the maximum batch size, after which a collect will be triggered. The default batch size is 100 traces.

func Client

func Client(client *http.Client) ReporterOption

Client sets a custom http client to use.

func Logger

func Logger(l *log.Logger) ReporterOption

Logger sets the logger used to report errors in the collection process.

func MaxBacklog

func MaxBacklog(n int) ReporterOption

MaxBacklog sets the maximum backlog size. When batch size reaches this threshold, spans from the beginning of the batch will be disposed.

func RequestCallback

func RequestCallback(rc RequestCallbackFn) ReporterOption

RequestCallback registers a callback function to adjust the reporter *http.Request before it sends the request to Zipkin.

func Timeout

func Timeout(duration time.Duration) ReporterOption

Timeout sets maximum timeout for http request.

type RequestCallbackFn

type RequestCallbackFn func(*http.Request)

RequestCallbackFn receives the initialized request from the Collector before sending it over the wire. This allows one to plug in additional headers or do other customization.

Source Files

http.go

Version
v0.1.5
Published
Jan 3, 2019
Platform
js/wasm
Imports
9 packages
Last checked
12 hours ago

Tools for package owners.