Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
fd245fd
feature: initialized symfony telemetry bundle
norberttech Feb 5, 2026
0f36c17
feature: initialize symfony telemetry bundle
norberttech Feb 5, 2026
9220ecb
feature: hook in to symfony events in order to capture telemetry
norberttech Feb 5, 2026
cb51c94
refactor: allow to register only one instance of telemetry in service…
norberttech Feb 7, 2026
8478bae
feature: allow to register traces/meters/loggers in service container
norberttech Feb 7, 2026
d5ed737
feature: trace twig templates rendering in telemetry bundle
norberttech Feb 7, 2026
c90dc89
refactor: allow to exclude commands/routes/twig templates by regex an…
norberttech Feb 7, 2026
9688507
feature: trace symfony http clients
norberttech Feb 7, 2026
e118f98
feature: collect telemetry from doctrine dbal
norberttech Feb 7, 2026
a209719
refactor: added missing tests
norberttech Feb 7, 2026
2f49e49
feature: psr18 traceable client
norberttech Feb 8, 2026
027138f
feature: collect telemetry from psr18 clients
norberttech Feb 8, 2026
545abb6
refactor: code review adjustments
norberttech Feb 8, 2026
5420c18
refactor: rename telemetry namespace to instrumentation
norberttech Feb 8, 2026
d03a62d
refactor: unified resource attributes names
norberttech Feb 8, 2026
17f2a9d
refactor: aligne resorurce configuiration with otlp best practices
norberttech Feb 8, 2026
85e7943
feature: allow to pass telemetry context to symfony messenger messages
norberttech Feb 9, 2026
6ea48ac
refactor: refactor FlowTelemetryExtension to make it compatible with …
norberttech Feb 9, 2026
ecc4851
fix: static analysis
norberttech Feb 9, 2026
5020733
fix: dsl definitions
norberttech Feb 9, 2026
d7932e6
refactor: remove html coverage from composer scripts, fixed infection…
norberttech Feb 9, 2026
a035e0b
fix: exclude telemetry bundle from infection test suite
norberttech Feb 9, 2026
e419ee8
feature: configure kernel instrumentation to extract context using pr…
norberttech Feb 9, 2026
a7da623
fix: prevent telemetry from creating non existing contexts
norberttech Feb 9, 2026
46dc974
refactor: replace exlude_routes with exclude_paths in http kernel ins…
norberttech Feb 10, 2026
51634a5
feature: telemetry resource detectors
norberttech Feb 10, 2026
f18abcd
feature: use resource detectors in the bundle
norberttech Feb 10, 2026
6274eca
chore: document symfony telemetry bundle
norberttech Feb 10, 2026
61b329e
fix: regenerated dsl definitions
norberttech Feb 10, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/monorepo-split.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,14 @@ jobs:
split_repository: 'openapi-specification-bridge'
- local_path: 'src/bridge/psr7/telemetry'
split_repository: 'psr7-telemetry-bridge'
- local_path: 'src/bridge/psr18/telemetry'
split_repository: 'psr18-telemetry-bridge'
- local_path: 'src/bridge/symfony/http-foundation'
split_repository: 'symfony-http-foundation-bridge'
- local_path: 'src/bridge/symfony/http-foundation-telemetry'
split_repository: 'symfony-http-foundation-telemetry-bridge'
- local_path: 'src/bridge/symfony/telemetry-bundle'
split_repository: 'symfony-telemetry-bundle'
- local_path: 'src/bridge/telemetry/otlp'
split_repository: 'telemetry-otlp-bridge'

Expand Down
2 changes: 2 additions & 0 deletions bin/docs.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ public function execute(InputInterface $input, OutputInterface $output) : int
__DIR__ . '/../src/bridge/filesystem/async-aws/src/Flow/Filesystem/Bridge/AsyncAWS/DSL/functions.php',
__DIR__ . '/../src/bridge/monolog/telemetry/src/Flow/Bridge/Monolog/Telemetry/DSL/functions.php',
__DIR__ . '/../src/bridge/symfony/http-foundation-telemetry/src/Flow/Bridge/Symfony/HttpFoundationTelemetry/DSL/functions.php',
__DIR__ . '/../src/bridge/symfony/telemetry-bundle/src/Flow/Bridge/Symfony/TelemetryBundle/DSL/functions.php',
__DIR__ . '/../src/bridge/psr7/telemetry/src/Flow/Bridge/Psr7/Telemetry/DSL/functions.php',
__DIR__ . '/../src/bridge/psr18/telemetry/src/Flow/Bridge/Psr18/Telemetry/DSL/functions.php',
__DIR__ . '/../src/bridge/telemetry/otlp/src/Flow/Bridge/Telemetry/OTLP/DSL/functions.php',
];

Expand Down
152 changes: 89 additions & 63 deletions composer.json

Large diffs are not rendered by default.

Loading
Loading