The Home for Magento 2 Excellence

Quality-tested Magento 2 modules. Explore. Evaluate. Elevate. #magento2

1090 Modules
582 Ready
504 Need Help
🏆 Leaderboard
Actively Maintained v1.5.5

Panth Error Monitor for Magento 2

mage2kishan/module-error-monitor

Captures PHP exceptions and storefront JavaScript console errors into deduplicated, grouped database records, then sends throttled digest email alerts. Fingerprints repeats so identical errors increment a counter instead of flooding the inbox.

10
Downloads
Below average
0
GitHub Stars
Today
Last Release
0
Open Issues
Build Issues
0/3 checks passed

Build Tests

Composer Install
DI Compile
Templates

Code Quality

CS Coding Standard
PHPStan

Tested on Magento 2.4.9

Recent Test History

Each release is tested against the latest Magento version at that time.

v1.5.5 on Magento 2.4.9
Jun 4, 2026
v1.5.4 on Magento 2.4.9
Jun 1, 2026
v1.5.3 on Magento 2.4.9
Jun 1, 2026
v1.0.0 on Magento 2.4.9
Jun 1, 2026

Looking for Contributors

Composer installation fails. Your contribution could help the entire Magento community!

Contribute

Share This Module's Status

Panth Error Monitor for Magento 2 Magento compatibility status badge

README

Loaded from GitHub

Panth Error Monitor for Magento 2

Smart, secure error management. Captures PHP exceptions and storefront JavaScript console errors into deduplicated, grouped database records, and sends throttled digest email alerts so your inbox is never flooded.

Why

var/log/*.log grows endlessly, the same exception repeats thousands of times, and JavaScript errors in customers' browsers are invisible to you entirely. Naïve "email me every error" extensions then bury you under thousands of identical messages. Error Monitor fixes both problems:

  • Group, don't spam. Every error is fingerprinted; repeats increment a counter on one row instead of inserting a new one.
  • Store in the database, not your inbox. Everything lands in two tidy tables you review in the admin grid.
  • Email at most once per error per day, optionally bundled into a single digest per cron run, with a severity threshold and a hard per-run cap.

Features

Area What you get
PHP capture A Monolog handler on the system logger records every exception ≥ your chosen severity — no code changes needed.
JS capture A tiny, CSP-safe, defer-loaded collector reports uncaught errors & promise rejections from the storefront.
Grouping Stable fingerprints collapse near-duplicate messages (numbers, ids, paths normalised out).
Email Digest or individual mode, daily per-group dedupe, severity threshold, per-run cap. Sent by cron, never synchronously.
Admin Searchable/filterable grid; per-row & mass Resolve / Ignore / Delete; full detail view with stack traces.
Security Same-origin enforcement, per-IP + global rate limiting, body-size caps, strict validation, control-char stripping, no input ever reflected.
Privacy Optional IP storage, optional IP anonymisation (GDPR).
Housekeeping Daily retention cron + bin/magento panth:errormonitor:cleanup.

Requirements

  • Magento 2.4.7+ (Monolog 3)
  • PHP 8.1 – 8.4
  • mage2kishan/module-core (Panth_Core)

Installation

composer require mage2kishan/module-error-monitor
bin/magento module:enable Panth_ErrorMonitor
bin/magento setup:upgrade
bin/magento setup:di:compile        # production mode
bin/magento cache:flush

Configuration

Stores → Configuration → Panth Infotech → Error Monitor

Capture is enabled out of the box; email alerts are off until you enter recipients, so nothing is sent by surprise. See USER_GUIDE.md for every field.

Where errors go

  • Admin → Panth Infotech → Error Monitor → Error Log
  • Tables: panth_error_group (aggregates), panth_error_event (occurrences)

License

Proprietary. See LICENSE.txt.

This content is fetched directly from the module's GitHub repository. We are not the authors of this content and take no responsibility for its accuracy, completeness, or any consequences arising from its use.