Drupal

Connect Drupal instances to the Inspector monitoring dashboard.

Requirements

  • Drupal: 9.x | 10.x | 11.x

Introduction

The package automatically instrument a Drupal instance and records performance metrics about HTTP requests, DB queries, and Unhandled Exceptions. It also has a simple API which allows you to monitor custom code blocks in your application.

Resources

Installation

Run the command below in your terminal to install the latest version:

composer require drupal/inspector_monitoring

Configure the Ingestion Key

To get a new Ingestion Key sign up for Inspector (https://app.inspector.dev/register) and creating a new application.

The Inspector Drupal module includes a form to makes you able to configure the monitoring system in a convenient web page.

To access the configuration page navigate to:

Admin >> Configuration >> Development >> Inspector Monitoring

Paste the Ingestion Key into the input form and click "Save".

Test & Deploy

Once you have configured the Ingestion Key, try to navigate your website to see the first data flowing into the dashboard.

If everything works well, you are ready to release this integration into the production environment.

Inspector automatically reports:

  • HTTP traffic

  • Database queries

  • Unhandled exceptions

You will be alerted for any error in your application and the AI Bug Fix will provides you with a ready to use solution in real-time.

Transport

The transport method refers to the way Inspector sends monitoring data collected into your Drupal installation to the remote platform. We suggest to use sync for development or local environments, and async for production environment.

  • SYNC - dev or local environment

  • ASYNC - prod environment

Query Logging

By default the module automatically monitors the internal database queries generated from your code, or other modules code. It will help you understand what is going on behind the scene, and immediately identify slow statements that can impact your user experience.

You can eventually enable/disable this monitoring component from the configuration page as per your needs.

Exception Monitoring

By default every unhandled exception will be reported automatically to be sure you'll be alerted for unpredictable errors in real time.

When an exception is detected you can read the code inside the stacktrace, and monitor its occurrences frequency for a better investigation:

Last updated