audunru/memory-usage

Log memory usage in Laravel
3,720
Install
composer require audunru/memory-usage
Latest Version:v5.1.1
PHP:^8.3
License:MIT
Last Updated:Sep 1, 2026
Links: GitHub  ·  Packagist
Maintainer: audunru

Log Laravel Memory usage

Build Status Coverage Status

Log amount of memory used during HTTP requests. The peak memory usage in megabytes will be logged right before the response is returned.

The memory limit is configurable per request path. If you set the limit to 25 MiB for all requests, you will see something like this in your logs:

[2022-01-16 10:49:17] local.WARNING: Maximum memory 50.68 MiB used during request for /api/v1/companies/1/products is greater than limit of 25.00 MiB
[2022-01-16 10:49:29] local.WARNING: Maximum memory 50.39 MiB used during request for /api/v1/companies/1 is greater than limit of 25.00 MiB
[2022-01-16 10:49:29] local.WARNING: Maximum memory 60.04 MiB used during request for /api/v1/companies/1/sales is greater than limit of 25.00 MiB

Since v0.3.0 you can also log slow responses. If you set the limit to 3 seconds, you you will see something like this in your logs:

[2022-01-16 10:49:17] local.WARNING: Response time 5.15 s for /api/v1/companies/1/products is greater than limit of 3.00 s

Installation

Step 1: Install with Composer

composer require audunru/memory-usage

Configuration

Publish the configuration file by running:

php artisan vendor:publish --tag=memory-usage-config

Please open up the configuration file for further instructions on how to configure logging.

Development

Testing

Run tests:

composer test

Related Packages

recca0120/laravel-tracy

A Laravel Package to integrate Nette Tracy Debugger

286,589 378
asvae/laravel-api-tester

Api tester for Laravel Framework

127,913 355
repat/laravel-5-dbug

A library for nicer looking variable dumps comparable to ColdFusion's cfdump.

5,026 4
barryvdh/laravel-debugbar

PHP Debugbar integration for Laravel

140,894,808 19,277
lanin/laravel-api-debugger

Easily debug your JSON API.

1,909,220 232