Extension:Sentry
A request to archive this extension has been made on Phabricator. See task T379212 for the archival request and the rationale for the request, and to leave comments about the request. |
This extension is currently not actively maintained! Although it may still work, any bug reports or feature requests will more than likely be ignored. If you are interested in taking on the task of developing and maintaining this extension, you can request repository ownership. As a courtesy, you may want to contact the author. You should also remove this template and list yourself as maintaining the extension in the page's {{Extension }} infobox. |
Sentry Release status: unmaintained |
|
---|---|
Description | Provides Sentry integration |
Author(s) | Gergő Tisza (Tgrtalk) |
Latest version | 0.1 |
Compatibility policy | Snapshots releases along with MediaWiki. Master is not backward compatible. |
MediaWiki | >= 1.33.0 |
License | MIT License |
Download | |
|
|
Quarterly downloads | 0 |
Translate the Sentry extension if it is available at translatewiki.net | |
Issues | Open tasks · Report a bug |
The Sentry extension allows to report MediaWiki's JavaScript errors to Sentry.
Installing / Configuration
edit- Download and move the extracted
Sentry
folder to yourextensions/
directory.
Developers and code contributors should install the extension from Git instead, using:cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/Sentry - Only when installing from Git, run Composer to install PHP dependencies, by issuing
composer install --no-dev
in the extension directory. (See task T173141 for potential complications.) - Add the following code at the bottom of your LocalSettings.php file:
wfLoadExtension( 'Sentry' ); $wgSentryDsn = '//65ef8deac2c89cda6851d5502936ae74@sentry.example.com/1'; // API key generated by Sentry
- Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.