⚙️ FEATURE-#188: OpenTelemetry integration — Tracer, Metrics, and Log providers#190
Merged
FernandoCelmer merged 25 commits intodevelopfrom Apr 7, 2026
Merged
⚙️ FEATURE-#188: OpenTelemetry integration — Tracer, Metrics, and Log providers#190FernandoCelmer merged 25 commits intodevelopfrom
FernandoCelmer merged 25 commits intodevelopfrom
Conversation
…per workflow/task
…emove LogOpenTelemetry
…ring, and Pydantic LogRecord
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
New ABCs:
dotflow/abc/tracer.py— Tracer interface with workflow/task lifecycle hooksdotflow/abc/metrics.py— Metrics interface for observability countersNew Providers (6 files):
dotflow/providers/tracer_*.py— TracerOpenTelemetry and TracerDefault implementationsdotflow/providers/metrics_*.py— MetricsOpenTelemetry and MetricsDefault implementationsdotflow/providers/log_opentelemetry.py— OpenTelemetry structured loggingEnhanced Core Modules:
dotflow/core/config.py— Added tracer and metrics configuration parametersdotflow/core/workflow.py— Manager receives config, calls tracer/metrics hooksdotflow/core/execution.py— Task execution triggers tracer hooksdotflow/core/task.py— Task status setter calls metrics hooksdotflow/providers/log_default.py— Added level, output, path, format parametersDocumentation & Examples (23 files):
Tests (5 files):
Motivation and Context
This PR implements full OpenTelemetry integration, enabling comprehensive observability across all three pillars: Logs, Traces, and Metrics. This closes the gap in observability tooling and allows users to monitor, debug, and analyze workflow execution across production environments.
Reference: Closes #188
Types of changes
Checklist