mmockelyn/laravel-gitlab-reporter
Composer 安装命令:
composer require mmockelyn/laravel-gitlab-reporter
包简介
Creates Gitlab Issues when Exceptions are thrown
关键字:
README 文档
README
Create issues for Exceptions that happen on your servers.
This package will create issues in your Gitlab project if Exceptions occur and will post some more debug information to the issue to help you solve problems.
This package will contact your Gitlab server and checks if an exception has occurred before based on a generated identifier hash in the issue description. Don't remove this line in the description as it will be the only way for this package to validate if an exception occurred before.
Gitlab version 9 or higher required.
Installation
Install with composer
composer require wyox/laravel-gitlab-reporter
To use the Gitlab reporter you should change the following in your app/Exceptions/Handler.php file in your Laravel project
public function report(Exception $exception)
{
// Ignore Gitlab Report in code coverage
// @codeCoverageIgnoreStart
if(app()->bound('gitlab.report') && $this->shouldReport($exception)){
app('gitlab.report')->report($exception);
}
// @codeCoverageIgnoreEnd
parent::report($exception);
}
Now setup your .env file to include the following variables:
GITLAB_REPORT_URL=https://gitlab.com/
GITLAB_REPORT_TOKEN=
GITLAB_REPORT_PROJECT_ID=
GITLAB_REPORT_LABELS=
I would suggest making a seperate user account for the reporter and only let it access Issues and allow it for issue creation. This way you can ensure if your server or code gets compromised you won't give full access to the server
To retrieve an access token go to your gitlab server to profile/personal_access_tokens and generate a token for using the API
For your Project ID you need to go to your project -> Settings -> General -> General Project settings. There should be a box with Project ID
Adding labels to issues
Adding labels to newly created issues is easy, just add a comma-separated list to GITLAB_REPORT_LABELS=
GITLAB_REPORT_LABELS=bug,critical
If the labels don't exist in Gitlab they will be automatically created.
Ignoring certain exceptions
Make sure you publish the config as setting exceptions is not possible using an .env file
php artisan vendor:publish --tag=gitlab-report
A file called gitlab-report.php will be created there and you can change settings there. A couple of exceptions have been added by default
Hiding fields in reports
In some cases you don't want reports to contain passwords of your clients. You can extend or replace values in the configuration file to include more fields that shouldn't show up in a report. All these fields will be replaced with [hidden]. Fields that are filled with null will also be replaced with [hidden]
mmockelyn/laravel-gitlab-reporter 适用场景与选型建议
mmockelyn/laravel-gitlab-reporter 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 4 次下载、GitHub Stars 达 0, 最近一次更新时间为 2023 年 04 月 23 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「gitlab」 「error reporting」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 mmockelyn/laravel-gitlab-reporter 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 mmockelyn/laravel-gitlab-reporter 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 mmockelyn/laravel-gitlab-reporter 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Reportico Open Source PHP Report Designer
Monolog JSON Formatter for Google StackDriver integration
PHP GitLab generic API client (not stick to any version)
A collection of monolog handlers using PSR-18 http client
Allow KoolReport to use twig template engine to render view
PHP Error Handler module that captures and displays all throwable errors in a given format, making debugging easier and more efficient
统计信息
- 总下载量: 4
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 14
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-04-23