andersundsehr/sentry-async

Asynchronous Sentry for Symfony - Fire and forget

2.0.0 2025-01-14 14:13 UTC

This package is auto-updated.

Last update: 2025-01-14 15:44:27 UTC


README

To enable the asynchronous transport configure sentry to use our transport factory.
The extension is shipped with a default file_queue, which may be configured in config/packages/sentry.yaml

The andersundsehr/sentry-async depends on SENTRY_DSN environment variable set.

sentry:
  options:
    transport: AUS\SentryAsync\Transport\QueueTransport

sentry_async:
  file_queue:
    compress: true
    limit: 200
    directory: '%kernel.cache_dir%/sentry_async/'

Indeed, you can use another queue functionality and do things on your own config/services.yaml implementing \AUS\SentryAsync\Queue\QueueInterface

  App\Queue\ExampleQueue:
    public: true

  AUS\SentryAsync\Transport\QueueTransport:
    $queue: '@App\Queue\ExampleQueue'