2024-06-27 11:55:29 +02:00
|
|
|
// Copyright The OpenTelemetry Authors
|
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
|
|
package log_test
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
|
|
"go.opentelemetry.io/otel/log"
|
|
|
|
|
logsdk "go.opentelemetry.io/otel/sdk/log"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// Use a processor which redacts sensitive data from some attributes.
|
|
|
|
|
func ExampleProcessor_redact() {
|
|
|
|
|
// Existing processor that emits telemetry.
|
|
|
|
|
var processor logsdk.Processor = logsdk.NewBatchProcessor(nil)
|
|
|
|
|
|
|
|
|
|
// Wrap the processor so that it redacts values from token attributes.
|
|
|
|
|
processor = &RedactTokensProcessor{processor}
|
|
|
|
|
|
|
|
|
|
// The created processor can then be registered with
|
|
|
|
|
// the OpenTelemetry Logs SDK using the WithProcessor option.
|
|
|
|
|
_ = logsdk.NewLoggerProvider(
|
|
|
|
|
logsdk.WithProcessor(processor),
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// RedactTokensProcessor is a [logsdk.Processor] decorator that redacts values
|
|
|
|
|
// from attributes containing "token" in the key.
|
|
|
|
|
type RedactTokensProcessor struct {
|
|
|
|
|
logsdk.Processor
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// OnEmit redacts values from attributes containing "token" in the key
|
|
|
|
|
// by replacing them with a REDACTED value.
|
2024-07-01 15:01:22 +02:00
|
|
|
func (p *RedactTokensProcessor) OnEmit(ctx context.Context, record logsdk.Record) error {
|
|
|
|
|
cloned := false
|
2024-06-27 11:55:29 +02:00
|
|
|
record.WalkAttributes(func(kv log.KeyValue) bool {
|
|
|
|
|
if strings.Contains(strings.ToLower(kv.Key), "token") {
|
2024-07-01 15:01:22 +02:00
|
|
|
if !cloned {
|
|
|
|
|
record = record.Clone()
|
|
|
|
|
cloned = true
|
|
|
|
|
}
|
2024-06-27 11:55:29 +02:00
|
|
|
record.AddAttributes(log.String(kv.Key, "REDACTED"))
|
|
|
|
|
}
|
|
|
|
|
return true
|
|
|
|
|
})
|
2024-07-01 15:01:22 +02:00
|
|
|
return p.Processor.OnEmit(ctx, record)
|
2024-06-27 11:55:29 +02:00
|
|
|
}
|