cmelius / opentelemetry-auto-twig
OpenTelemetry Twig Instrumentation
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/cmelius/opentelemetry-auto-twig
Requires
- php: ^8.0
- open-telemetry/api: ^1.6
- twig/twig: ^2.0 || ^3.0
README
In my company we needed a twig instrumentation to see what was consuming time. It's a CraftCMS website running on PHP 8.4.
This may not be perfect but it did show us time consumed by twig templates.
OpenTelemetry Twig auto-Instrumentation
This package provides automatic instrumentation for Twig templates.
Please read https://opentelemetry.io/docs/instrumentation/php/automatic/ for instructions on how to install and configure the extension and SDK.
Installation
-
Install the OpenTelemetry PHP Extension: This package relies on the
opentelemetryPHP extension for automatic hooking. -
Install the Composer package:
composer require cmelius/opentelemetry-twig-instrumentation
-
Enable Twig-Instrumentation:
putenv('OTEL_PHP_INSTRUMENTATION_TWIG_ENABLED=true');
Usage
This package provides fully automatic instrumentation. Once installed, it will automatically trace all Twig template rendering. No further configuration is required.
The instrumentation will create spans with the name twig.render.<type>, where <type> is the type of template being rendered (e.g., template, block). The spans will include the following attributes:
twig.template: The name of the template file.twig.name: The name of the specific template or block being rendered.