magenius/module-buggregator

Magento 2 module to integrate logging and error tracking with Buggregator.

Maintainers

Package info

github.com/magenius-team/magento2-module-buggregotor

Type:magento2-module

pkg:composer/magenius/module-buggregator

Statistics

Installs: 3

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0.0 2026-03-24 08:22 UTC

This package is auto-updated.

Last update: 2026-03-24 08:35:28 UTC


README

Magento 2 module for sending Monolog records to a Buggregator endpoint.

Features

  • Adds custom Monolog handler Magenius\Buggregator\Logger\Handler\Buggregator
  • Supports server configuration in Magento Admin (Stores > Configuration > Advanced > Developer > Buggregator logs)
  • Uses MONOLOG_SERVER environment variable as fallback when config value is empty
  • Supports tcp://, udp://, tls://, and unix:// connection strings
  • Can be enabled/disabled with Magento config dev/buggregator_logs/enable

Requirements

  • Magento 2.3.5+
  • PHP ~7.4.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0

Installation

  1. Install module from Packagist:
composer require magenius/module-buggregator
  1. Run Magento setup commands:
bin/magento module:enable Magenius_Buggregator
bin/magento setup:upgrade
bin/magento cache:flush

Configuration

  1. Set server in Magento Admin:
    • Stores > Configuration > Advanced > Developer > Buggregator logs > Server
  2. Use a connection string, for example:
    • tcp://127.0.0.1:1025
    • udp://127.0.0.1:9912
    • unix:///tmp/buggregator.sock
  3. Enable the module config in Magento Admin:
    • Stores > Configuration > Advanced > Developer > Buggregator logs > Enable Buggregator Logging
  4. Optional fallback:
    • if Server is empty, set MONOLOG_SERVER in environment

License

MIT