AvroSpanExporter

class Object
trait Matchable
class Any

Value members

Concrete methods

def tcp[F[_], G[_]](host: String, port: Int, numFibers: Int)(implicit evidence$5: Async[F], evidence$6: Logger[F], evidence$7: Traverse[G]): Resource[F, SpanExporter[F, G]]

Creates a TCP exporter with an internal queue that accepts batches from the traced app.

Creates a TCP exporter with an internal queue that accepts batches from the traced app.

Value Params
numFibers

the capacity of the internal queue and the number of concurrent workers that consume the queue and send batches via TCP; use numbers greater than 1 at your own risk

def udp[F[_], G[_]](host: String, port: Int, numFibers: Int)(implicit evidence$3: Async[F], evidence$4: Traverse[G]): Resource[F, SpanExporter[F, G]]

Creates a UDP exporter with an internal queue that accepts batches from the traced app.

Creates a UDP exporter with an internal queue that accepts batches from the traced app.

Value Params
numFibers

the capacity of the internal queue and the number of concurrent workers that consume the queue and send batches via UDP; use numbers greater than 1 at your own risk