sec-dojo-com/laravel-ecs-logging 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

sec-dojo-com/laravel-ecs-logging

Composer 安装命令:

composer require sec-dojo-com/laravel-ecs-logging

包简介

Adding ECS (Elastic Common Schema) Logging to Laravel (Updated).

README 文档

README

This package adds ECS (Elastic Common Scheme) format to your laravel application allowing to log your standard logs to elastic.

Installation

You can install the package via composer:

composer require sec-dojo-com/laravel-ecs-logging

It's recommended to require jenssegers/agent which will add user agent logging support.

composer require jenssegers/agent

Optionally, you can publish the config file with:

php artisan vendor:publish --provider="AviationCode\EcsLogging\EcsLoggingServiceProvider" --tag="config"

Register log driver in config/logging.php

return [
    'channels' => [
        // ... Other channels

        'ecs' => [
            'driver' => 'ecs',
            'path' => storage_path('logs/ecs/laravel.json'),
            'level' => 'debug',
            'days' => 14,
        ],
    ]
];

If you want to use this driver as the only logging method define LOG_CHANNEL=ecs in your .env or add the ecs channel into your stack driver.

All Log::xxx() calls get logged into json file. This file can be picked up by filebeat which sends it to your logstash or elasticsearch instance.

Configure filebeat

Add the following to your /etc/filebeat/filebeat.yml file

filebeat.inputs:
    - type: log
      enabled: true
      paths:
          - /path-to-your-laravel-app/storage/logs/ecs/*.json
      json:
          message_key: message
          keys_under_root: true
          overwrite_keys: true

Bugs:

Current bugs within the ecs-logs package:

  • Typed static property Aviation Code\Ecs Logging\Tracing\Correlate::$id must not be accessed before initialization. This is due to trying to access type hinted properties statically before assigning values to them, this was fixed by initialising them with null values.

Original repository

This package is a fork of AviationCode\EcsLogging. With updates and bug fixes.

Fork Changelog:

13/05/2022: Added the option to disable log file rotation through config file (Use the option disable_rotate)

Credits

License

The MIT License (MIT). Please see License File for more information.

统计信息

  • 总下载量: 2.58k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 2
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-02-14