-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(core): add otel to opentdf services #1858
base: main
Are you sure you want to change the base?
Conversation
Cleaned up go.mod by removing indirect dependencies that are no longer needed. This reduces clutter and ensures the project only tracks essential dependencies, improving maintainability.
Updated `Provider` methods to use pointer receivers for consistency and potential performance improvements. Added Tracer initialization in test cases to enable tracing functionality during tests.
opentdf-dev.yaml
Outdated
trace: | ||
enabled: true | ||
folder: "traces" | ||
exportToJaeger: false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@pflynn-virtru One of the things I talked to @sujankota about was updating the config so its on specific to jaeger. The open telemetry protocol is there so it can work across providers.
This is what I was thinking for a config setup but by no means do you have to implement this exact way.
type TracingConfig struct {
Enabled bool `json:"enabled" yaml:"enabled"`
Provider ProviderConfig `json:"provider" yaml:"provider"`
}
type ProviderConfig struct {
Name string `json:"name" yaml:"name"` // "otlp", "file", "jaeger", etc.
OTLP *OTLPConfig `json:"otlp,omitempty" yaml:"otlp,omitempty"`
File *FileConfig `json:"file,omitempty" yaml:"file,omitempty"`
}
type OTLPConfig struct {
Endpoint string `json:"endpoint" yaml:"endpoint"`
Insecure bool `json:"insecure" yaml:"insecure"`
}
type FileConfig struct {
Path string `json:"path" yaml:"path"`
}
Introduced OpenTelemetry-based distributed tracing, configurable via `server.trace` in the main configuration. Added support for multiple providers: OTLP (gRPC/HTTP) for external backends (e.g., Jaeger) and file-based JSON logging with rotation for local debugging. Updated README with configuration details and examples.
Closes: DSPX-221
Summary
This PR refactors the OpenTelemetry tracing implementation to support multiple tracing providers dynamically, moving away from the previous setup that was primarily focused on Jaeger. It addresses the suggestion in PR #1858 (comment) to make the configuration provider-agnostic, leveraging the standard OpenTelemetry Protocol (OTLP) for better interoperability.
A new configuration structure under
server.trace
has been introduced, allowing users to explicitly enable/disable tracing and select a provider (otlp
orfile
) along with its specific settings.Key Changes
Config
,ProviderConfig
,OTLPConfig
, andFileConfig
structs under theserver.trace
key in the main configuration (opentdf.yaml
).tracing.InitTracer
to create the appropriateSpanExporter
based on the configuredprovider.name
.otlp
provider, supporting:grpc
(default) andhttp/protobuf
protocols.endpoint
.insecure
flag for disabling TLS.headers
for authentication, etc.file
provider, which usesstdouttrace
directed to a local file:path
.lumberjack
(configurablemaxSize
,maxBackups
,maxAge
,compress
).prettyPrint
JSON output.ExportToJaeger
boolean andFolder
string configuration fields.resource.Default()
) merged with explicit attributes and environment variables (resource.WithFromEnv()
) for richer metadata.server.trace
configuration options with examples for different providers.Configuration Changes
The tracing configuration in
opentdf.yaml
(or equivalent) needs to be updated from the old format to the new structure underserver.trace
.New Structure Example:
Testing
Verified configuration parsing for enabled, otlp, and file providers.
Manually tested sending traces via OTLP/gRPC and OTLP/HTTP to a local OpenTelemetry Collector (using debug exporter), confirming spans are received.
Manually tested the file provider, confirming trace output to the specified file with lumberjack rotation.
Confirmed stdouttrace works locally during debugging.
Ensured enabled: false results in a no-op tracer.
Documentation
Updated README.md with the new "Observability: Distributed Tracing (OpenTelemetry)" section explaining the configuration.
Checklist
Testing Instructions