Hello,
Has anybody implemented Sentry application monitoring with Radicle?
Any help on how it can be implemented?
Thanks!
Hello,
Has anybody implemented Sentry application monitoring with Radicle?
Any help on how it can be implemented?
Thanks!
I use Sentry’s sentry/sdk
package to report PHP errors on all of my sites
On WordPress sites, I use a small mu-plugin that’s booted as early as possible to init Sentry and configure it
@hristolaskov I use the stayallive/wp-sentry
(unofficial) WordPress plugin. Simply add constants like WP_SENTRY_ENV
and WP_SENTRY_PHP_DSN
to your application.php
file, and you’re all set.
Thank you both!
@ben I am guessing you mu-plugin relies on the sentry/sdk to handle the reporting?