Documentation
¶
Index ¶
- type Kotel
- type Meter
- func (m *Meter) OnBrokerConnect(meta kgo.BrokerMetadata, _ time.Duration, _ net.Conn, err error)
- func (m *Meter) OnBrokerDisconnect(meta kgo.BrokerMetadata, _ net.Conn)
- func (m *Meter) OnBrokerRead(meta kgo.BrokerMetadata, _ int16, bytesRead int, _, _ time.Duration, err error)
- func (m *Meter) OnBrokerWrite(meta kgo.BrokerMetadata, _ int16, bytesWritten int, _, _ time.Duration, ...)
- func (m *Meter) OnFetchBatchRead(meta kgo.BrokerMetadata, topic string, _ int32, fbm kgo.FetchBatchMetrics)
- func (m *Meter) OnProduceBatchWritten(meta kgo.BrokerMetadata, topic string, _ int32, pbm kgo.ProduceBatchMetrics)
- type MeterOpt
- type Opt
- type RecordCarrier
- type Tracer
- func (t *Tracer) OnFetchRecordBuffered(r *kgo.Record)
- func (t *Tracer) OnFetchRecordUnbuffered(r *kgo.Record, _ bool)
- func (t *Tracer) OnProduceRecordBuffered(r *kgo.Record)
- func (t *Tracer) OnProduceRecordUnbuffered(r *kgo.Record, err error)
- func (t *Tracer) WithProcessSpan(r *kgo.Record) (context.Context, trace.Span)
- type TracerOpt
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Kotel ¶
type Kotel struct {
// contains filtered or unexported fields
}
Kotel represents the configuration options available for the kotel plugin.
type Meter ¶
type Meter struct {
// contains filtered or unexported fields
}
func NewMeter ¶
NewMeter returns a Meter, used as option for kotel to instrument franz-go with instruments.
func (*Meter) OnBrokerConnect ¶
func (*Meter) OnBrokerDisconnect ¶
func (m *Meter) OnBrokerDisconnect(meta kgo.BrokerMetadata, _ net.Conn)
func (*Meter) OnBrokerRead ¶
func (*Meter) OnBrokerWrite ¶
func (*Meter) OnFetchBatchRead ¶
func (m *Meter) OnFetchBatchRead(meta kgo.BrokerMetadata, topic string, _ int32, fbm kgo.FetchBatchMetrics)
func (*Meter) OnProduceBatchWritten ¶
func (m *Meter) OnProduceBatchWritten(meta kgo.BrokerMetadata, topic string, _ int32, pbm kgo.ProduceBatchMetrics)
type MeterOpt ¶
type MeterOpt interface {
// contains filtered or unexported methods
}
MeterOpt interface used for setting optional config properties.
func MeterProvider ¶
func MeterProvider(provider metric.MeterProvider) MeterOpt
MeterProvider takes a metric.MeterProvider and applies it to the Meter If none is specified, the global provider is used.
type Opt ¶
type Opt interface {
// contains filtered or unexported methods
}
Opt interface used for setting optional kotel properties.
type RecordCarrier ¶
type RecordCarrier struct {
// contains filtered or unexported fields
}
RecordCarrier injects and extracts traces from a kgo.Record.
This type exists to satisfy the otel/propagation.TextMapCarrier interface.
func NewRecordCarrier ¶
func NewRecordCarrier(record *kgo.Record) RecordCarrier
NewRecordCarrier creates a new RecordCarrier.
func (RecordCarrier) Get ¶
func (c RecordCarrier) Get(key string) string
Get retrieves a single value for a given key if it exists.
func (RecordCarrier) Keys ¶
func (c RecordCarrier) Keys() []string
Keys returns a slice of all key identifiers in the carrier.
type Tracer ¶
type Tracer struct {
// contains filtered or unexported fields
}
func NewTracer ¶
NewTracer returns a Tracer, used as option for kotel to instrument franz-go with tracing.
func (*Tracer) OnFetchRecordBuffered ¶
OnFetchRecordBuffered starts a new span for the "receive" operation on a buffered record.
It sets the span options and extracts the span context from the record, updates the record's context to ensure it can be ended in the OnFetchRecordUnbuffered hook and can be used in downstream consumer processing.
func (*Tracer) OnFetchRecordUnbuffered ¶
OnFetchRecordUnbuffered continues and ends the "receive" span for an unbuffered record.
func (*Tracer) OnProduceRecordBuffered ¶
OnProduceRecordBuffered starts a new span for the "publish" operation on a buffered record.
It sets span options and injects the span context into record and updates the record's context, so it can be ended in the OnProduceRecordUnbuffered hook.
func (*Tracer) OnProduceRecordUnbuffered ¶
OnProduceRecordUnbuffered continues and ends the "publish" span for an unbuffered record.
It sets attributes with values unset when producing and records any error that occurred during the publish operation.
func (*Tracer) WithProcessSpan ¶
WithProcessSpan starts a new span for the "process" operation on a consumer record.
It sets up the span options. The user's application code is responsible for ending the span.
This should only ever be called within a polling loop of a consumed record and not a record which has been created for producing, so call this at the start of each iteration of your processing for the record.
type TracerOpt ¶
type TracerOpt interface {
// contains filtered or unexported methods
}
TracerOpt interface used for setting optional config properties.
func ConsumerGroup ¶
ConsumerGroup sets the optional group attribute value.
func KeyFormatter ¶
KeyFormatter formats a Record's key for use in a span's attributes, overriding the default of string(Record.Key).
This option can be used to parse binary data and return a canonical string representation. If the returned string is not valid UTF-8 or if the formatter returns an error, the key is not attached to the span.
func TracerPropagator ¶
func TracerPropagator(propagator propagation.TextMapPropagator) TracerOpt
TracerPropagator takes a propagation.TextMapPropagator and applies it to the Tracer.
If none is specified, the global Propagator is used.
func TracerProvider ¶
func TracerProvider(provider trace.TracerProvider) TracerOpt
TracerProvider takes a trace.TracerProvider and applies it to the Tracer. If none is specified, the global provider is used.