Automatic Instrumentation
Automatic instrumentation with PHP requires at least PHP 8.0, and the OpenTelemetry PHP extension. The extension allows developers code to hook into classes and methods, and execute userland code before and after the hooked method runs.
Example¶
Here, we provide pre
and post
functions, which are executed before and after
DemoClass::run
. The pre
function starts and activates a span, and the post
function ends it. If an exception was thrown by DemoClass::run()
, the post
function will record it, without affecting exception propagation.
Installation¶
The extension can be installed via pecl, pickle or php-extension-installer (docker specific).
- Setup development environment. Installing from source requires proper development environment and some dependencies:
{{< tabpane lang=shell persistLang=false >}}
{{< tab "Linux (apt)" >}}sudo apt-get install gcc make autoconf{{< /tab >}}
{{< tab "MacOS (homebrew)" >}}brew install gcc make autoconf{{< /tab >}}
{{< /tabpane >}}
- Build/install the extension. With your environment set up you can install the extension:
{{< tabpane lang=shell persistLang=false >}}
{{< tab pecl >}}pecl install opentelemetry-beta{{< /tab >}}
{{< tab pickle >}} php pickle.phar install --source https://github.com/open-telemetry/opentelemetry-php-instrumentation.git#1.0.0beta2 {{< /tab >}}
{{< tab "php-extension-installer (docker)" >}} install-php-extensions opentelemetry {{< /tab >}}
{{< /tabpane >}}
- Add the extension to your
php.ini
file:
- Verify that the extension is installed and enabled:
Zero-code configuration for automatic instrumentation¶
When used in conjunction with the OpenTelemetry SDK, you can use environment
variables or php.ini
to configure auto-instrumentation:
Manual setup for automatic instrumentation¶
Supported libraries and frameworks¶
Automatic Instrumentation comes with a number of instrumentation libraries for commonly used PHP libraries. For the full list, see instrumentation libraries on packagist.
Next steps¶
After you have automatic instrumentation configured for your app or service, you might want to add manual instrumentation to collect custom telemetry data.