Componette

Componette

Salamek

Salamek / raven-nette v1.3.3

[ABANDONED] This is nette implementation of sentry raven-php as logger service for tracy.

download-cloud-line composer require salamek/raven-nette

Project abandoned due to incompatibility with nette 2.4

Please use kdyby/monolog instead

Simple migration guide

  1. Remove all configuration related to salamek/raven-nette && composer depedency from composer.json
  2. Install kdyby/monolog and sentry/sentry
composer require kdyby/monolog
composer require sentry/sentry
  1. Configure new extension
sentry:
    dsn: 'YOUR_SENTRY_DSN'
extensions:
    monolog: Kdyby\Monolog\DI\MonologExtension
    
monolog:
    name: PROJECT_NAME
    hookToTracy: true
    registerFallback: true
    handlers:
        raven: Monolog\Handler\RavenHandler(Raven_Client(%sentry.dsn%))
    processors:
        - Monolog\Processor\GitProcessor
        - Monolog\Processor\WebProcessor
        - Kdyby\Monolog\Processor\PriorityProcessor
  1. Profit... For more informations consult kdyby/monolog documentation

raven-nette

Donate

This is nette implementation of sentry raven-php as logger service for tracy.

Tested with nette 2.2>, please report any bugs into Issues

PR's are welcomed!

Installation and usage

Installation via composer:

composer require salamek/raven-nette

Usage

Register extension to your config.neon:

extensions:
  sentryLogger: Salamek\RavenNette\DI\SentryLoggerExtension

And configure by setting:

sentryLogger:
  dsn: 'YOUR_SENTRY_DSN'

  # Optional configuration values
  inDebug: false # bool: Log in debug mode ? default is false
  directory: null # string|null: Where to store log files ? default is Debugger::$logDirectory, null to disable
  email: null # string|null :Where to send email notifications ? default is Debugger::$email, null to disable
  options: [release: YOUR_RELEASE] # array :All options supported by getsentry/sentry-php
  context:
    user: true # Send logged in user information

List of all confuration options for getsentry/sentry-php

Alternative Usage

If you dont want to use DI, and/or be able to log errors as soon as posible use this approach

Put this code into your app/bootstrap.php after RobotLoader is initiated and $configurator->enableDebugger is called:

// Initiate sentryLogger
new \Salamek\RavenNette\SentryLogger(
  'YOUR_SENTRY_DSN', //Sentry DSN
  false, //Log in DEBUG mode ? //You dont want that...
  null, //Set where do you want to store file log (Tracy\Debugger::$logDirectory | null | string)
  null, //Send email as usual logger ?   (Tracy\Debugger::$email | null | string | array )
  true,
  ['release' => 'YOUR_RELEASE'] //All options supported by getsentry/sentry-php
);

Usage only with tracy

If you dont want use nette at all but only raven-nette and tracy... well you can!

include('vendor/autoload.php');
use Tracy\Debugger;

Debugger::enable(Debugger::PRODUCTION);

new \Salamek\RavenNette\SentryLogger(
  'YOUR_SENTRY_DSN', //Sentry DSN
  false, //Log in DEBUG mode ? //You dont want that...
  null, //Set where do you want to store file log (Tracy\Debugger::$logDirectory | null | string)
  null, //Send email as usual logger ?   (Tracy\Debugger::$email | null | string | array )
  true,
  ['release' => 'YOUR_RELEASE'] //All options supported by getsentry/sentry-php
);

Debugger::log('My error', 'error');

And that should be everything...

  • v1.3.3

  • v1.3.2

  • v1.3.1 Release of v1.3.1

    • Switch from deprecated raven/raven to sentry/sentry
  • v1.3.0 Release of v1.3.0

    • Codestyle cleanup
    • Option to send logged in user information to sentry when enabled in config marten-cz
    • Added support for configuration options xdobro4
  • v1.1.1 Fixing release

  • v1.1 First release

  • v1.0-alpha First alpha release

bar-chart-fill

Statistics

download-cloud-fill
56775
star-fill
5
bug-fill
0
flashlight-fill
6y
price-tag-2-line

Badges

guide-fill

Dependencies

php (>=5.3.0)
tracy/tracy (>=2.1.0)
sentry/sentry (>=0.11.0)
Componette Componette felix@nette.org