定制 darkton/laravel-loki 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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:work supervisors 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 我们能提供哪些服务?
定制开发 / 二次开发

基于 darkton/laravel-loki 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 22
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 32
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-04-13