You've already forked opentelemetry-go
mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2026-06-03 18:35:08 +02:00
12e421a706
Fixes #7617 Simplify the Logs SDK by unifying processor capabilities into a single interface. - Add `Enabled(ctx context.Context, p EnabledParameters) bool` to `sdk/log.Processor`. - Remove `sdk/log.FilterProcessor` interface. `Processor` implementations must now implement the `Enabled` method. Custom processors that do not filter records can implement `Enabled` to return `true`.
104 lines
2.6 KiB
Go
104 lines
2.6 KiB
Go
// Copyright The OpenTelemetry Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package log // import "go.opentelemetry.io/otel/sdk/log"
|
|
|
|
import (
|
|
"context"
|
|
"sync"
|
|
|
|
"go.opentelemetry.io/otel"
|
|
"go.opentelemetry.io/otel/sdk/log/internal/observ"
|
|
)
|
|
|
|
// Compile-time check SimpleProcessor implements Processor.
|
|
var _ Processor = (*SimpleProcessor)(nil)
|
|
|
|
// SimpleProcessor is an processor that synchronously exports log records.
|
|
//
|
|
// Use [NewSimpleProcessor] to create a SimpleProcessor.
|
|
type SimpleProcessor struct {
|
|
mu sync.Mutex
|
|
exporter Exporter
|
|
inst *observ.SLP
|
|
noCmp [0]func() //nolint: unused // This is indeed used.
|
|
}
|
|
|
|
// NewSimpleProcessor is a simple Processor adapter.
|
|
//
|
|
// This Processor is not recommended for production use due to its synchronous
|
|
// nature, which makes it suitable for testing, debugging, or demonstrating
|
|
// other features, but can lead to slow performance and high computational
|
|
// overhead. For production environments, it is recommended to use
|
|
// [NewBatchProcessor] instead. However, there may be exceptions where certain
|
|
// [Exporter] implementations perform better with this Processor.
|
|
func NewSimpleProcessor(exporter Exporter, _ ...SimpleProcessorOption) *SimpleProcessor {
|
|
slp := &SimpleProcessor{
|
|
exporter: exporter,
|
|
}
|
|
var err error
|
|
slp.inst, err = observ.NewSLP(observ.NextSimpleProcessorID())
|
|
if err != nil {
|
|
otel.Handle(err)
|
|
}
|
|
return slp
|
|
}
|
|
|
|
var simpleProcRecordsPool = sync.Pool{
|
|
New: func() any {
|
|
records := make([]Record, 1)
|
|
return &records
|
|
},
|
|
}
|
|
|
|
// Enabled returns true, indicating this Processor will process all records.
|
|
func (*SimpleProcessor) Enabled(context.Context, EnabledParameters) bool {
|
|
return true
|
|
}
|
|
|
|
// OnEmit batches provided log record.
|
|
func (s *SimpleProcessor) OnEmit(ctx context.Context, r *Record) (err error) {
|
|
if s.exporter == nil {
|
|
return nil
|
|
}
|
|
|
|
s.mu.Lock()
|
|
defer s.mu.Unlock()
|
|
|
|
records := simpleProcRecordsPool.Get().(*[]Record)
|
|
(*records)[0] = *r
|
|
defer func() {
|
|
simpleProcRecordsPool.Put(records)
|
|
}()
|
|
|
|
if s.inst != nil {
|
|
defer func() {
|
|
s.inst.LogProcessed(ctx, err)
|
|
}()
|
|
}
|
|
return s.exporter.Export(ctx, *records)
|
|
}
|
|
|
|
// Shutdown shuts down the exporter.
|
|
func (s *SimpleProcessor) Shutdown(ctx context.Context) error {
|
|
if s.exporter == nil {
|
|
return nil
|
|
}
|
|
|
|
return s.exporter.Shutdown(ctx)
|
|
}
|
|
|
|
// ForceFlush flushes the exporter.
|
|
func (s *SimpleProcessor) ForceFlush(ctx context.Context) error {
|
|
if s.exporter == nil {
|
|
return nil
|
|
}
|
|
|
|
return s.exporter.ForceFlush(ctx)
|
|
}
|
|
|
|
// SimpleProcessorOption applies a configuration to a [SimpleProcessor].
|
|
type SimpleProcessorOption interface {
|
|
apply()
|
|
}
|