PHPackages                             netlogix/nxsentry - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Logging &amp; Monitoring](/categories/logging)
4. /
5. netlogix/nxsentry

AbandonedArchivedTypo3-cms-extension[Logging &amp; Monitoring](/categories/logging)

netlogix/nxsentry
=================

Sentry integration

1.1.3(3y ago)05.1kMITPHP

Since Nov 16Pushed 3y ago3 watchersCompare

[ Source](https://github.com/netlogix/nxsentry)[ Packagist](https://packagist.org/packages/netlogix/nxsentry)[ RSS](/packages/netlogix-nxsentry/feed)WikiDiscussions main Synced 4w ago

READMEChangelog (5)Dependencies (5)Versions (6)Used By (0)

[![MIT license](https://camo.githubusercontent.com/4661abfe916186acde514558e7f040833cb63ba7098401a51ce339cbb2b4cf9e/687474703a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e737667)](http://opensource.org/licenses/MIT)[![Packagist](https://camo.githubusercontent.com/5353afecaf6ed7bba48c46e4ee573ada4aa8dd85b31e02fef6e1cc6524c2fb03/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e65746c6f6769782f6e7873656e7472792e737667)](https://packagist.org/packages/netlogix/nxsentry)[![Maintenance level: Love](https://camo.githubusercontent.com/b24fe73a7439225808a806c9f1032014adf4933b5774648c0174cf0de1d56401/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6d61696e74656e616e63652d2545322539392541312545322539392541312545322539392541312d6666363962342e737667)](https://websolutions.netlogix.de/)[![stability-wip](https://camo.githubusercontent.com/aeb9689b2fa46591c0a51e216af4deee6965e7461427d949995c9f2ef9092225/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f73746162696c6974792d7769702d6c69676874677265792e737667)](https://camo.githubusercontent.com/aeb9689b2fa46591c0a51e216af4deee6965e7461427d949995c9f2ef9092225/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f73746162696c6974792d7769702d6c69676874677265792e737667)[![TYPO3 V10](https://camo.githubusercontent.com/614ff8ea70de89b6c0ffa951832460b9b407e0c321814a05fe00c02fe6999487/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5459504f332d31302d6f72616e67652e737667)](https://get.typo3.org/version/10)[![TYPO3 V11](https://camo.githubusercontent.com/5432de37ab8517e6d9e6f803a2e1a7674a308c6d93896fe8a6fbc8a4cb50aece/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5459504f332d31312d6f72616e67652e737667)](https://get.typo3.org/version/11)[![Minimum PHP Version](https://camo.githubusercontent.com/0e9ac047546796cfdbe1423d1f4d91c8f37d2fbb11614a7900bb7686aaa5401f/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f7068702d253345253344253230372e342d3838393242462e737667)](https://php.net/)[![GitHub CI status](https://github.com/netlogix/nxsentry/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/netlogix/nxsentry/actions)

Sentry integration for TYPO3
============================

[](#sentry-integration-for-typo3)

This [TYPO3](https://typo3.org/) extension allows you to automate reporting of errors to [Sentry](https://www.sentry.io)

Installation
------------

[](#installation)

The Sentry integration is installed as a composer package. For your existing project, simply include `netlogix/nxsentry`into the dependencies of your TYPO3 distribution:

```
$ composer require netlogix/nxsentry
```

Configuration
-------------

[](#configuration)

The new Sentry SDK 3.x has some environment variables which can be used, for example in a .env file:

```
SENTRY_DSN='http://public_key@your-sentry-server.com/project-id'
SENTRY_RELEASE='1.0.7'
SENTRY_ENVIRONMENT='Staging'

```

Add this to your `LocalConfiguration.php`

```
return [
    'LOG' => [
        'writerConfiguration' => [
            \TYPO3\CMS\Core\Log\LogLevel::ERROR => [
                'Netlogix\Nxsentry\Log\Writer\SentryBreadcrumbWriter' => [],
                'Netlogix\Nxsentry\Log\Writer\SentryWriter' => [],
            ],
        ],
    ],
];
```

Overwriting default options in the `LocalConfiguration.php`

```
return [
    'EXTENSIONS' => [
        'nxsentry' => [
            'options' => [
                'dsn' => 'http://public_key@your-sentry-server.com/project-id'
            ]
        ],
    ],
];
```

Add own integration to add custom data to the event.

```
return [
    'EXTENSIONS' => [
        'nxsentry' => [
            'integrations' => [
                new MyCustomIntegration()
            ]
        ],
    ],
];
```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~100 days

Total

5

Last Release

1234d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/667b5107f4c2ea180baa00166c2ee3f2a1b412ce22768d6e81bb09323d1c7fe0?d=identicon)[netlogix](/maintainers/netlogix)

![](https://www.gravatar.com/avatar/124704a0d41c6364ac5773df0c9bedc3a85f902f0826df5f12ff2a4b2a06d520?d=identicon)[paxuclus](/maintainers/paxuclus)

![](https://www.gravatar.com/avatar/2492899d51c61e47bd5a782df61c04dcb10628cf90a187efb3a02c3e9bd5ba8e?d=identicon)[tweis](/maintainers/tweis)

---

Top Contributors

[![tweis](https://avatars.githubusercontent.com/u/63323?v=4)](https://github.com/tweis "tweis (2 commits)")

---

Tags

phpsentrytypo3

### Embed Badge

![Health badge](/badges/netlogix-nxsentry/health.svg)

```
[![Health](https://phpackages.com/badges/netlogix-nxsentry/health.svg)](https://phpackages.com/packages/netlogix-nxsentry)
```

###  Alternatives

[sentry/sentry-laravel

Laravel SDK for Sentry (https://sentry.io)

1.3k114.3M154](/packages/sentry-sentry-laravel)[networkteam/sentry-client

A Sentry client for TYPO3. It forwards errors and exceptions to Sentry - https://sentry.io/

371.0M4](/packages/networkteam-sentry-client)[t3monitor/t3monitoring_client

Client extension for the t3monitoring service

31851.3k1](/packages/t3monitor-t3monitoring-client)[pagemachine/typo3-formlog

Form log for TYPO3

23225.3k6](/packages/pagemachine-typo3-formlog)[lukeyouell/craft-sentry

Error tracking that helps developers monitor and fix crashes in real time. Iterate continuously. Boost efficiency. Improve user experience.

17123.4k1](/packages/lukeyouell-craft-sentry)[itgalaxy/sentry-integration

A (unofficial) WordPress plugin to report PHP and JavaScript errors to Sentry

105.6k](/packages/itgalaxy-sentry-integration)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
