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.9.2(5d ago)0216MITPHPPHP &gt;=7.2|^8.0

Since Jun 12Pushed 5d 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 today

READMEChangelog (6)Dependencies (12)Versions (7)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

45

↑

FairBetter than 91% of packages

Maintenance99

Actively maintained with recent releases

Popularity14

Limited adoption so far

Community2

Small or concentrated contributor base

Maturity54

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 ~222 days

Recently: every ~242 days

Total

6

Last Release

5d ago

Major Versions

23.11.05 → 24.06.012024-06-20

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/116488348?v=4)[Palzin Pvt Ltd](/maintainers/palzin)[@palzin](https://github.com/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

[laravel/ai

The official AI SDK for Laravel.

1.0k3.2M203](/packages/laravel-ai)[laravel/sail

Docker files for running a basic Laravel application.

1.9k205.7M1.3k](/packages/laravel-sail)[larastan/larastan

Larastan - Discover bugs in your code without running it. A phpstan/phpstan extension for Laravel

6.5k55.4M8.5k](/packages/larastan-larastan)[laravel/mcp

Rapidly build MCP servers for your Laravel applications.

77022.3M151](/packages/laravel-mcp)[spatie/laravel-health

Monitor the health of a Laravel application

87512.0M167](/packages/spatie-laravel-health)[propaganistas/laravel-disposable-email

Disposable email validator

6023.0M7](/packages/propaganistas-laravel-disposable-email)

PHPackages © 2026

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