You are here

ExceptionSubscriber.php in New Relic 2.x

File

src/EventSubscriber/ExceptionSubscriber.php
View source
<?php

namespace Drupal\new_relic_rpm\EventSubscriber;

use Drupal\new_relic_rpm\ExtensionAdapter\NewRelicAdapterInterface;
use Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent;
use Symfony\Component\HttpKernel\Exception\HttpExceptionInterface;
use Symfony\Component\HttpKernel\KernelEvents;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;

/**
 * Provides a way to send Exceptions to the New Relic API.
 */
class ExceptionSubscriber implements EventSubscriberInterface {

  /**
   * New Relic adapter.
   *
   * @var \Drupal\new_relic_rpm\ExtensionAdapter\NewRelicAdapterInterface
   */
  protected $adapter;

  /**
   * Constructs a subscriber.
   *
   * @param \Drupal\new_relic_rpm\ExtensionAdapter\NewRelicAdapterInterface $adapter
   *   The Adapter to use when talking to the New Relic extension.
   */
  public function __construct(NewRelicAdapterInterface $adapter) {
    $this->adapter = $adapter;
  }

  /**
   * {@inheritdoc}
   */
  public static function getSubscribedEvents() {

    // Ensure this runs just before FinalExceptionSubscriber.
    $events[KernelEvents::EXCEPTION][] = [
      'onException',
      -255,
    ];
    return $events;
  }

  /**
   * Handles errors for this subscriber.
   *
   * @param \Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent $event
   *   The event to process.
   */
  public function onException(GetResponseForExceptionEvent $event) {

    // Don't log http exceptions.
    if ($event
      ->getException() instanceof HttpExceptionInterface) {
      return;
    }
    if (\Drupal::config('new_relic_rpm.settings')
      ->get('override_exception_handler')) {

      // Forward the exception to New Relic.
      $this->adapter
        ->logException($event
        ->getException());
    }
  }

}

Classes

Namesort descending Description
ExceptionSubscriber Provides a way to send Exceptions to the New Relic API.