darkton/laravel-loki
Composer 安装命令:
composer require darkton/laravel-loki
包简介
A Laravel package for shipping logs to Grafana Loki via OTLP with Redis buffering.
README 文档
README
⚠️ Beta release
The API is considered stable for testing and production use, but may change before the first stable release (v1.0.0).
A Laravel logging package that ships logs to Grafana Loki via OTLP, built on top of Monolog.
It uses Redis buffering and queued jobs to ensure safe, asynchronous delivery without impacting application performance or creating logging feedback loops.
Installation
You can install the package directly via Packagist using Composer:
composer require darkton/laravel-loki
After installation, you can optionally publish the configuration file (useful for customizing Grafana access, batch limits, and queues to be used):
php artisan vendor:publish --tag="loki-config"
Basic Configuration (.env)
In your .env file, you will need to set up the following Grafana Loki credentials to be able to send logs:
LOKI_OTLP_ENDPOINT="https://logs-prod-...grafana.net/otlp/v1/logs" LOKI_USERNAME="your_stack_id" LOKI_API_KEY="your_access_token"
How to access / Basic Usage
To enable sending logs to loki, you must register this channel in Laravel's logging structure.
In your config/logging.php file, add it to the channels array:
'channels' => [ // ... 'loki' => [ 'driver' => 'monolog', 'handler' => \Darkton\Loki\Logging\LokiRedisHandler::class, ], ],
Now you can log normally and direct your default stack to "loki" or access the channel directly:
use Illuminate\Support\Facades\Log; Log::channel('loki')->info('This log will be saved in Redis and later dispatched to Loki!');
The Dispatcher (Sync Command)
Monolog's LokiRedisHandler does not send HTTP requests immediately. Instead, it saves them in a secure Redis list (buffer).
To actually ship these logs to Grafana Loki, you need to call the sync command. It will read the buffer, split it into organized batches, and dispatch a Laravel Job to perform the OTLP async request:
You can call it manually:
php artisan loki:sync
Ideally, you should schedule it in your console infrastructure (routes/console.php or app/Console/Kernel.php depending on your Laravel version):
use Illuminate\Support\Facades\Schedule; Schedule::command('loki:sync')->everyMinute();
Tip: Make sure your
queue:worksupervisors or Horizon are running on your server, as the heavy pushing is offloaded to your application's queues!
License
This package is distributed and licensed under the terms of the MIT license.
darkton/laravel-loki 适用场景与选型建议
darkton/laravel-loki 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 22 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 04 月 13 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「logging」 「redis」 「laravel」 「grafana」 「loki」 「otlp」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 darkton/laravel-loki 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 darkton/laravel-loki 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 darkton/laravel-loki 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Microservice RPC through message queues.
The CodeIgniter Redis package
A Zend Framework module that sets up Monolog for logging in applications.
贝嘟分布式缓存扩展
Asynchronous Sentry for Symfony - Fire and forget
Stackdriver handler for Monolog (codeinternetapplications/monolog-stackdriver Fork).
统计信息
- 总下载量: 22
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 32
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-04-13