PHPackages                             palzin-apm/palzin-laravel - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Logging &amp; Monitoring](/categories/logging)
4. /
5. palzin-apm/palzin-laravel

ActiveLibrary[Logging &amp; Monitoring](/categories/logging)

palzin-apm/palzin-laravel
=========================

Real-Time monitoring Laravel package using Palzin Monitor (APM)

24.8.1(1y ago)0130MITPHPPHP &gt;=7.2|^8.0

Since Jun 12Pushed 1y agoCompare

[ Source](https://github.com/palzin-apm/palzin-laravel)[ Packagist](https://packagist.org/packages/palzin-apm/palzin-laravel)[ Docs](https://palzin.app)[ RSS](/packages/palzin-apm-palzin-laravel/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (4)Dependencies (6)Versions (5)Used By (0)

Real-Time monitoring package using Palzin Monitor
=================================================

[](#real-time-monitoring-package-using-palzin-monitor)

[![Latest Stable Version](https://camo.githubusercontent.com/14cfc76915ea1e52bf13bec769ad3f1fb5fe7a2d9ec578755e238770c2d99f03/687474703a2f2f706f7365722e707567782e6f72672f70616c7a696e2d61706d2f70616c7a696e2d6c61726176656c2f763f7374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/palzin-apm/palzin-laravel) [![Total Downloads](https://camo.githubusercontent.com/82e00c3d572347bab13fe147b1551ad726066c729244dcdbdac037844e0b2b7b/687474703a2f2f706f7365722e707567782e6f72672f70616c7a696e2d61706d2f70616c7a696e2d6c61726176656c2f646f776e6c6f6164733f7374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/palzin-apm/palzin-laravel) [![License](https://camo.githubusercontent.com/550ccc44e3cdbb7903bc7e351c0bd8699503a80f55a456b02522a9da3b503d6b/687474703a2f2f706f7365722e707567782e6f72672f70616c7a696e2d61706d2f70616c7a696e2d6c61726176656c2f6c6963656e73653f7374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/palzin-apm/palzin-laravel)

Palzin Monitor offers real-time performance monitoring capabilities that allow you to effectively monitor and analyze the performance of your applications. With Palzin Monitor, you can capture and track all requests without the need for any code modifications. This feature enables you to gain valuable insights into the impact of your methods, database statements, and external requests on the overall user experience.

- [Requirements](#requirements)
- [Installation](#installation)
- [Configure the Ingestion Key](#key)
- [Middleware Setup](#middleware)
- [Test everything is working](#test)
- [Official Documentation](https://palzin.app/guides/laravel-introduction)
- [License](#license)

Requirements
------------

[](#requirements)

- PHP &gt;= 7.2.0
- Laravel &gt;= 5.5

Install
-------

[](#install)

To install the latest version of Palzin Monitor (APM) use below command:

```
composer require palzin-apm/palzin-laravel

```

For Lumen
---------

[](#for-lumen)

If your application is based on Lumen you need to manually register the `PalzinServiceProvider`:

```
$app->register(\Palzin\Laravel\PalzinServiceProvider::class);
```

### Configure the Ingestion Key

[](#configure-the-ingestion-key)

First put the Ingestion Key in your environment file:

```
PALZIN_APM_INGESTION_KEY=[your ingestion key]

```

You can obtain an `PALZIN_APM_INGESTION_KEY` creating a new project in your [Palzin APM](https://www.palzin.app) account.

### Attach the Middleware

[](#attach-the-middleware)

To monitor web requests you can attach the `WebRequestMonitoring` in your http kernel or use in one or more route groups based on your personal needs.

```
/**
 * The application's route middleware groups.
 *
 * @var array
 */
protected $middlewareGroups = [
    'web' => [
        ...,
        \Palzin\Laravel\Middleware\WebRequestMonitoring::class,
    ],

    'api' => [
        ...,
        \Palzin\Laravel\Middleware\WebRequestMonitoring::class,
    ]
```

### Test everything is working

[](#test-everything-is-working)

Run the command below:

```
php artisan palzin:test

```

Go to  to explore your data.

Official documentation
----------------------

[](#official-documentation)

**[Go to the official documentation](https://palzin.app/guides/symfony-introduction)**

LICENSE
-------

[](#license)

This package is licensed under the [MIT](LICENSE) license.

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance34

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community2

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~140 days

Total

4

Last Release

646d ago

Major Versions

23.11.05 → 24.06.012024-06-20

### Community

Maintainers

![](https://www.gravatar.com/avatar/8a264dfc5a2c34c13cc7acf7c4b609c96848416e847de577e6ebe9b392e9d465?d=identicon)[palzin](/maintainers/palzin)

---

Tags

phplaravelmonitoringapmpalzinbugmanager

### Embed Badge

![Health badge](/badges/palzin-apm-palzin-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/palzin-apm-palzin-laravel/health.svg)](https://phpackages.com/packages/palzin-apm-palzin-laravel)
```

###  Alternatives

[inspector-apm/inspector-laravel

Code Execution Monitoring, built for developers.

2332.0M2](/packages/inspector-apm-inspector-laravel)[spatie/laravel-health

Monitor the health of a Laravel application

85810.0M83](/packages/spatie-laravel-health)[yadahan/laravel-authentication-log

Laravel Authentication Log provides authentication logger and notification for Laravel.

416632.8k5](/packages/yadahan-laravel-authentication-log)[jackwh/laravel-new-relic

Monitor your Laravel application performance with New Relic

112827.2k](/packages/jackwh-laravel-new-relic)[scoutapp/scout-apm-laravel

Scout Application Performance Monitoring Agent - https://scoutapm.com

23831.3k](/packages/scoutapp-scout-apm-laravel)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
