2017 © Pedro Peláez
 

library beacon

Real-time error monitoring, alerting, and logging for developers

image

dyned/beacon

Real-time error monitoring, alerting, and logging for developers

  • Monday, March 12, 2018
  • by jsilalahi
  • Repository
  • 0 Watchers
  • 0 Stars
  • 109 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 6 Versions
  • 40 % Grown

The README.md

:loudspeaker: Beacon

Real-time error reporting for engineering team., (*1)

Imagine that your application in production and customers using it. Sometimes, an runtime exception is occur by users. And engineering team did not know it happens to your customers, until a ticket is raised., (*2)

Beacon can help engineering team to catch this runtime error and notify them. We should catch errors before users do., (*3)

Install

Require this package with composer. It is recommended to only require the package for development., (*4)

composer require dyned/beacon

And then you need to copy config from Beacon's default config to your projects config (if config folder does not exists, create it first in project's root), (*5)

cp vendor/dyned/beacon/config/beacon.php ./config/beacon.php

Register Beacon's service provider to project's bootstrap/app.php file., (*6)

$app->register(DynEd\Beacon\BeaconServiceProvider::class);

In order to make Beacon catches error, add Beacon's Facade to app/Exceptions/Handler.php file:, (*7)

use DynEd\Beacon\Facades\Beacon;

And then add this code to "report" method:, (*8)

Beacon::report($e);

The report method now more or less similar like this, (*9)

public function report(Exception $e)
{
    Beacon::report($e);

    parent::report($e);
}

That's it. When an exception occur, you'll received notifications real time., (*10)

The Versions

12/03 2018

dev-master

9999999-dev

Real-time error monitoring, alerting, and logging for developers

  Sources   Download

MIT

The Requires

 

12/03 2018

v0.1.4

0.1.4.0

Real-time error monitoring, alerting, and logging for developers

  Sources   Download

MIT

The Requires

 

12/03 2018

v0.1.3

0.1.3.0

Real-time error monitoring, alerting, and logging for developers

  Sources   Download

MIT

The Requires

 

12/03 2018

v0.1.2

0.1.2.0

Real-time error monitoring, alerting, and logging for developers

  Sources   Download

MIT

The Requires

 

12/03 2018

v0.1.1

0.1.1.0

Real-time error monitoring, alerting, and logging for developers

  Sources   Download

MIT

The Requires

 

12/03 2018

v0.1.0

0.1.0.0

Real-time error monitoring, alerting, and logging for developers

  Sources   Download

MIT

The Requires