andersundsehr/sentry-async

Asynchronous Sentry for Symfony - Fire and forget

Installs: 530

Dependents: 1

Suggesters: 0

Security: 0

Stars: 1

Watchers: 2

Forks: 0

Open Issues: 0

Type:symfony-bundle

pkg:composer/andersundsehr/sentry-async

3.0.0 2025-08-19 08:51 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

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'

You can also change the Entry implementation, if you want to carry extradata for your imlpementation.

sentry_async:
  entry_factory:
    entry_class: 'AUS\SentryAsync\Entry\Entry'