goedemiddag/betterstack-logs

Monolog handler for Better Stack Logs
538,579 6
Install
composer require goedemiddag/betterstack-logs
Latest Version:v1.4.0
PHP:^8.2
License:MIT
Last Updated:Aug 20, 2026
Links: GitHub  ·  Packagist
Maintainer: Goedemiddag

Monolog handler for Better Stack Logs

Laravel Compatibility

This package allows you to write logs to Better Stack Logs.

Installation

First use composer to install the package using the following command

composer require goedemiddag/betterstack-logs

Usage

Add a new channel to the config/logging.php file

'channels' => [
    ...
    'betterstack' => [
        'driver'       => 'monolog',
        'level'        => env('LOG_LEVEL', 'debug'),
        'enabled'      => env('BETTERSTACK_LOGS_ENABLED', true),
        'handler'      => \Goedemiddag\BetterStackLogs\BetterStackHandler::class,
        'handler_with' => [
            'sourceToken' => env('BETTERSTACK_LOGS_SOURCE_TOKEN'),
            'host'        => env('BETTERSTACK_LOGS_HOST'),
        ],
    ],
    ...
]

Set the default log channel to betterstack or add it to the stack channel.

Add the following to your .env file:

BETTERSTACK_LOGS_SOURCE_TOKEN=your-source-token
BETTERSTACK_LOGS_HOST=your-ingestion-host

Related Packages

swayok/laravel-extended-errors

Extended laravel debug exceptions display (more info) and monolog's html emails...

1,370 1
tylercd100/lern

LERN (Laravel Exception Recorder and Notifier) is a Laravel 5 package that will...

154,594 436
edujugon/laravel-log

Simple API to write logs for Laravel.

10,901 19
markhilton/monolog-mysql

Laravel 5 MySQL driver for Monolog

156,788 40