PHPackages                             200pulse/laravel-log - 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. 200pulse/laravel-log

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

200pulse/laravel-log
====================

Laravel logging channel that ships logs to 200Pulse.

v0.1.0(8mo ago)03MITPHPPHP &gt;=8.1CI passing

Since Sep 10Pushed 6mo agoCompare

[ Source](https://github.com/200pulse/laravel-log)[ Packagist](https://packagist.org/packages/200pulse/laravel-log)[ RSS](/packages/200pulse-laravel-log/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (2)Versions (2)Used By (0)

200Pulse Laravel Log
====================

[](#200pulse-laravel-log)

Laravel logging channel that ships your application logs to [200Pulse](https://200pulse.com).

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

[](#installation)

```
composer require 200pulse/laravel-log

```

Optionally publish the config:

```
php artisan vendor:publish --tag=pulse-config

```

Configuration
-------------

[](#configuration)

Add to your `.env`:

```
PULSE_API_KEY=your_tracking_code
PULSE_PROJECT=your_domain_name
PULSE_ENDPOINT=https://your-200pulse-instance.com

```

**Where to find these values:**

- **`PULSE_API_KEY`**: This is your domain's **tracking code** from your 200Pulse domain settings
- **`PULSE_PROJECT`**: Your domain name (e.g., "example.com") for identification in logs
- **`PULSE_ENDPOINT`**: The URL of your 200Pulse installation (e.g., "")

`config/pulse.php` is auto-merged and can be published for customization.

Usage
-----

[](#usage)

Enable the channel in `config/logging.php`:

```
'channels' => [
    // ...
    'pulse' => [
        'driver' => 'custom',
        'via' => \Pulse\LaravelLog\PulseChannel::class,
        'level' => 'debug', // optional
        // overrides (optional):
        // 'endpoint' => env('PULSE_ENDPOINT'),
        // 'api_key' => env('PULSE_API_KEY'),
        // 'project' => env('PULSE_PROJECT'),
        // 'timeout' => 5,
    ],
],
```

Then log as usual:

```
use Illuminate\Support\Facades\Log;

Log::channel('pulse')->error('Payment failed', [
    'user_id' => 912,
    'method' => 'Stripe',
]);
```

Payload example sent to 200Pulse:

```
{
  "project": "project-xyz",
  "level": "ERROR",
  "message": "Payment failed",
  "context": {"user_id":912, "env":"production", "app":"MyApp", "channel":"pulse"},
  "timestamp": "2025-09-10T13:45:00Z"
}
```

Test Command
------------

[](#test-command)

Run a quick connectivity test:

```
php artisan pulse:test --level=info

```

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

[](#requirements)

- PHP 8.1+
- Laravel 9, 10, 11, or 12

Notes
-----

[](#notes)

- The handler is best-effort and silently ignores network errors to avoid log recursion.
- You can override `level`, `endpoint`, `api_key`, `project`, and `timeout` per-channel.

License
-------

[](#license)

MIT © 200Pulse

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance64

Regular maintenance activity

Popularity3

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity34

Early-stage or recently created project

 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

Unknown

Total

1

Last Release

241d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/634758bf38ec0336e4de4eacd30a8dbb3a34cf240375830ff19c7cade9482ce5?d=identicon)[robertspektor](/maintainers/robertspektor)

---

Top Contributors

[![robertspektor](https://avatars.githubusercontent.com/u/4853388?v=4)](https://github.com/robertspektor "robertspektor (5 commits)")

### Embed Badge

![Health badge](/badges/200pulse-laravel-log/health.svg)

```
[![Health](https://phpackages.com/badges/200pulse-laravel-log/health.svg)](https://phpackages.com/packages/200pulse-laravel-log)
```

###  Alternatives

[illuminate/log

The Illuminate Log package.

6224.3M517](/packages/illuminate-log)[freshbitsweb/laravel-log-enhancer

Make debugging easier by adding more data to your laravel logs

346569.0k](/packages/freshbitsweb-laravel-log-enhancer)[honeybadger-io/honeybadger-laravel

Honeybadger Laravel integration

431.2M](/packages/honeybadger-io-honeybadger-laravel)[ytake/laravel-fluent-logger

fluent logger for laravel and lumen

63541.6k1](/packages/ytake-laravel-fluent-logger)[kitloong/laravel-app-logger

Laravel log for your application

101.2M8](/packages/kitloong-laravel-app-logger)[shaffe/laravel-mail-log-channel

A package to support logging via email in Laravel

1286.2k](/packages/shaffe-laravel-mail-log-channel)

PHPackages © 2026

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