Memory History - mithra62/ee_debug_toolbar GitHub Wiki

The Memory History extension for the Debug Toolbar (EEDT) tracks various performance statistics across multiple pages and provides a graph to show the variances.

Overview

Memory History is not a traditional panel extension. Instead of adding a panel Memory History adds a positionable graph of the various performance points of your ExpressionEngine site over time. There is a dedicated graph for both the Control Panel (for add-on devs) and the "front site".

Keep in mind that the data is locked to your ExpressionEngine session ID so logging in/out will reset the tracking statistics.

The below are the performance points tracked:

  1. Memory Usage
  2. Query Count
  3. Execution Time

Configure

You can position the Memory History graph in any of the 4 quadrants:

  • top left
  • top right
  • bottom left
  • bottom right.

You can change these values either in the EEDT Settings page or through EEDT Config Overrides like the below:

<?php
$config['ee_debug_toolbar']['memory_history_position'] = 'top right';

Example