PHPackages                             cleaniquecoders/app-pulse - 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. cleaniquecoders/app-pulse

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

cleaniquecoders/app-pulse
=========================

AppPulse provide a comprehensive, easy-to-use monitoring tool with uptime tracking, SSL certificate checks, and customisable notifications.

1.2.0(1mo ago)258[1 issues](https://github.com/cleaniquecoders/app-pulse/issues)MITPHPPHP ^8.2 | ^8.3 | ^8.4CI passing

Since Oct 17Pushed 1mo ago1 watchersCompare

[ Source](https://github.com/cleaniquecoders/app-pulse)[ Packagist](https://packagist.org/packages/cleaniquecoders/app-pulse)[ Docs](https://github.com/cleaniquecoders/app-pulse)[ GitHub Sponsors]()[ RSS](/packages/cleaniquecoders-app-pulse/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (6)Dependencies (28)Versions (7)Used By (0)

[![Latest Version on Packagist](https://camo.githubusercontent.com/e5f7d20d9382245025aeea10b9891cfb2dacae75e3abc482174fbd12b89898ba/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f636c65616e69717565636f646572732f6170702d70756c73652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/cleaniquecoders/app-pulse) [![GitHub Tests Action Status](https://camo.githubusercontent.com/1e0f53ffe9fc078f351893e607aa88ebc620089f241ca70dd464e84f6028f7b5/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f636c65616e69717565636f646572732f6170702d70756c73652f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473267374796c653d666c61742d737175617265)](https://github.com/cleaniquecoders/app-pulse/actions?query=workflow%3Arun-tests+branch%3Amain) [![GitHub Code Style Action Status](https://camo.githubusercontent.com/e0f04bd5f0f5568361e086dc8b054d0c86172d7e70afc6f466f08450208e51be/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f636c65616e69717565636f646572732f6170702d70756c73652f6669782d7068702d636f64652d7374796c652d6973737565732e796d6c3f6272616e63683d6d61696e266c6162656c3d636f64652532307374796c65267374796c653d666c61742d737175617265)](https://github.com/cleaniquecoders/app-pulse/actions?query=workflow%3A%22Fix+PHP+code+style+issues%22+branch%3Amain) [![Total Downloads](https://camo.githubusercontent.com/6cd4ec2f31d53ba2267c7a0950fc8361d635ec5a6fee78fb448484ed64f8efb9/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f636c65616e69717565636f646572732f6170702d70756c73652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/cleaniquecoders/app-pulse)

AppPulse
========

[](#apppulse)

A comprehensive Laravel package for monitoring website uptime and SSL certificates with event-driven notifications.

Features
--------

[](#features)

- **Uptime Monitoring** - Track website availability and response times
- **SSL Certificate Validation** - Monitor certificate expiration
- **Event-Driven Notifications** - React to status changes
- **Queue-Based Processing** - Efficient background monitoring
- **Historical Data** - Store and analyze monitoring results
- **Polymorphic Relationships** - Monitor any model in your application

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

[](#requirements)

- PHP 8.2, 8.3, or 8.4
- Laravel 10.x, 11.x, or 12.x

Installation
------------

[](#installation)

Install via Composer:

```
composer require cleaniquecoders/app-pulse
```

Publish configuration and migrations:

```
php artisan vendor:publish --tag="app-pulse-config"
php artisan vendor:publish --tag="app-pulse-migrations"
php artisan migrate
```

Set up Laravel scheduler by adding to your crontab:

```
* * * * * cd /path-to-your-project && php artisan schedule:run >> /dev/null 2>&1
```

Quick Start
-----------

[](#quick-start)

Create a monitor:

```
use CleaniqueCoders\AppPulse\Models\Monitor;

$monitor = Monitor::create([
    'owner_type' => \App\Models\User::class,
    'owner_id' => auth()->id(),
    'url' => 'https://example.com',
    'interval' => 10, // Check every 10 minutes
    'ssl_check' => true,
]);
```

Run checks manually:

```
php artisan monitor:check-status
```

Listen to events:

```
// In EventServiceProvider
protected $listen = [
    \CleaniqueCoders\AppPulse\Events\MonitorUptimeChanged::class => [
        \App\Listeners\SendUptimeAlert::class,
    ],
    \CleaniqueCoders\AppPulse\Events\SslStatusChanged::class => [
        \App\Listeners\SendSslAlert::class,
    ],
];
```

Documentation
-------------

[](#documentation)

For complete documentation, visit the [docs](docs/README.md) directory:

- **[Getting Started](docs/01-getting-started/README.md)** - Installation and configuration
- **[Architecture](docs/02-architecture/README.md)** - How AppPulse works
- **[Usage Guide](docs/03-usage/README.md)** - Practical examples
- **[API Reference](docs/04-api/README.md)** - Complete API documentation
- **[Development](docs/05-development/README.md)** - Contributing guidelines

Testing
-------

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

See [CHANGELOG](CHANGELOG.md) for recent changes.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](docs/05-development/02-contributing.md) for details.

Security
--------

[](#security)

For security concerns, review our [security policy](../../security/policy).

Credits
-------

[](#credits)

- [Nasrul Hazim Bin Mohamad](https://github.com/nasrulhazim)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

43

—

FairBetter than 91% of packages

Maintenance80

Actively maintained with recent releases

Popularity12

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

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

Recently: every ~125 days

Total

6

Last Release

50d ago

PHP version history (3 changes)v1.0.0PHP ^8.2

v1.0.2PHP ^8.2 | ^8.3

1.1.0PHP ^8.2 | ^8.3 | ^8.4

### Community

Maintainers

![](https://www.gravatar.com/avatar/b57069d0f4b634f65eccc6e5d5848990e25968d45ec2cf46d626c6a4658f944b?d=identicon)[nasrulhazim.m](/maintainers/nasrulhazim.m)

---

Top Contributors

[![nasrulhazim](https://avatars.githubusercontent.com/u/10341422?v=4)](https://github.com/nasrulhazim "nasrulhazim (45 commits)")

---

Tags

laravelopensourcessluptimelaravelCleanique Codersapp-pulse

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/cleaniquecoders-app-pulse/health.svg)

```
[![Health](https://phpackages.com/badges/cleaniquecoders-app-pulse/health.svg)](https://phpackages.com/packages/cleaniquecoders-app-pulse)
```

###  Alternatives

[spatie/laravel-health

Monitor the health of a Laravel application

86910.0M83](/packages/spatie-laravel-health)[spatie/laravel-slack-alerts

Send a message to Slack

3212.6M4](/packages/spatie-laravel-slack-alerts)[keepsuit/laravel-opentelemetry

OpenTelemetry integration for laravel

142347.8k](/packages/keepsuit-laravel-opentelemetry)[spatie/laravel-error-share

Share your Laravel errors to Flare

43965.6k3](/packages/spatie-laravel-error-share)[vormkracht10/laravel-mails

Laravel Mails can collect everything you might want to track about the mails that has been sent by your Laravel app.

24149.7k](/packages/vormkracht10-laravel-mails)[tapp/filament-maillog

Filament plugin to view outgoing mail

2952.6k1](/packages/tapp-filament-maillog)

PHPackages © 2026

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