github getsentry/sentry-php 3.15.0

latest releases: 4.9.0, 4.8.1, 4.8.0...
18 months ago

The Sentry SDK team is happy to announce the immediate availability of Sentry PHP SDK v3.15.0.
This release adds initial support for Profiling.

Warning
Profiling is currently in beta. Beta features are still in-progress and may have bugs. We recognize the irony.
If you have any questions or feedback, please email us at profiling@sentry.io, reach out via Discord (#profiling), or open an issue.

Profiling is only available on Sentry SaaS (sentry.io). Support for Sentry self-hosted is planned once Profiling is released into GA.

Features

  • Add initial support for profiling (#1477)

    Under the hood, we're using Wikipedia's sampling profiler Excimer.
    We chose this profiler for its low overhead and for being used in production by one of the largest PHP-powered websites in the world.

    Excimer works with PHP 7.2 and up, for PHP 8.2 support, make sure to use Excimer version 1.1.0.

    There is currently no support for either Windows or macOS.

    You can install Excimer via your operating systems package manager.

    apt-get install php-excimer

    If no suitable version is available, you may build Excimer from source.

    git clone https://github.com/wikimedia/mediawiki-php-excimer.git
    
    cd excimer/
    phpize && ./configure && make && sudo make install

    Depending on your environment, you may need to enable the Excimer extension afterward.

    phpenmod -s fpm excimer
    # or
    phpenmod -s apache2 excimer

    Once the extension is installed, you may enable profiling by adding the new profiles_sample_rate config option to your Sentry::init method.

    \Sentry\init([
        'dsn' => '__DSN__',
        'traces_sample_rate' => 1.0,
        'profiles_sample_rate' => 1.0,
    ]);

    Profiles are being sampled in relation to your traces_sample_rate.

    Please note that the profiler is started inside transactions only. If you're not using our Laravel or Symfony SDKs, you may need to manually add transactions to your application as described here.

    Other things you should consider:

    • The current sample rate of the profiler is set to 101Hz (every ~10ms). A minimum of two samples is required for a profile being sent, hence requests that finish in less than ~20ms won't hail any profiles.
    • The maximum duration of a profile is 30s, hence we do not recommend enabling the extension in an CLI environment.
    • By design, the profiler will take samples at the end of any userland functions. You may see long sample durations on tasks like HTTP client requests and DB queries.
      You can read more about Excimer's architecture here.

Don't miss a new sentry-php release

NewReleases is sending notifications on new releases.