zaengle/envoyer-sentry-release-notifier
Composer 安装命令:
composer require zaengle/envoyer-sentry-release-notifier
包简介
A tool to help package release commits for Sentry.
README 文档
README
This tool helps with the process of collecting commits and sending them to Sentry as a new release while deploying from Laravel Envoyer.
Sentry can associate a series of git commits to a release by providing a starting hash and ending hash. With Envoyer it can be a bit tricky since the .git repository isn't deployed with the site. By using the following combination of deployment hooks we are able to capture the two required hashes and gain the benefits of commit tracking in Sentry.
Installation
composer require zaengle/envoyer-sentry-release-notifier
Sentry Config
Inside your config/sentry.php file add the getCommitHash() helper provided by this package.
<?php use Zaengle\EnvoyerSentryReleaseNotifier\EnvoyerSentryReleaseNotifier; return [ // capture release as git sha 'release' => app(EnvoyerSentryReleaseNotifier::class)->getCommitHash(), // rest of config... ];
Envoyer Hooks
Once your project is set up with Sentry, add the following deployment hooks to Envoyer. You will need to run one deployment with only the Write Git Hash hook enabled so that your initial .commit_hash file will be present for future releases.
Activate New Release : AFTER
After Envoyer activates a new release we need to write the hash to a file so it's available for the next release, where it will be used as the commit_hash_previous"
echo "{{ sha }}" > {{release}}/.commit_hash
NOTE - This command will need to be run one time before activating any of the other hooks so the initial .commit_hash file is created for subsequent steps.
Clone New Release : AFTER
yes | cp -f {{project}}/current/.commit_hash {{release}}/.commit_hash_previous echo "{{ sha }}" > {{release}}/.commit_hash
Purge Old Releases : AFTER
export GIT_REPO="zaengle/my-sentry-project-name" export ENVIRONMENT="develop" export PREVIOUS_SHA=`tail {{release}}/.commit_hash_previous` export SENTRY_ORG="zaengle" export SENTRY_BEARER_TOKEN="MyBearerToken" export SENTRY_PROJECT="my-sentry-project-name" cd {{ release }} curl https://sentry.io/api/0/organizations/${SENTRY_ORG}/releases/ \ -H "Authorization: Bearer ${SENTRY_BEARER_TOKEN}" \ -X POST \ -H "Content-Type:application/json" \ -d "{ \"environment\":\"${ENVIRONMENT}\", \"version\":\"{{sha}}\", \"refs\":[{ \"repository\":\"${GIT_REPO}\", \"commit\":\"{{sha}}\", \"previousCommit\": \"${PREVIOUS_SHA}\" }], \"projects\": [\"${SENTRY_PROJECT}\"] }" curl https://sentry.io/api/0/organizations/${SENTRY_ORG}/releases/{{sha}}/deploys/ \ -X POST \ -H "Authorization: Bearer ${SENTRY_BEARER_TOKEN}" \ -H 'Content-Type: application/json' \ -d " { \"environment\": \"${ENVIRONMENT}\", \"name\": \"{{release}}\" }"
Note: Sentry deploy names are limited to 64 characters. Depending on the length of your projects domain name and release path you might receive the following error.
{"name":["Ensure this field has no more than 64 characters."]}
If so, update the deployment script to send the {{time}} instead of the {{release}}.
...
{
\"environment\": \"${ENVIRONMENT}\",
- \"name\": \"{{release}}\"
+ \"name\": \"{{time}}\"
}"
License
The MIT License (MIT). Please see License File for more information.
Credits
zaengle/envoyer-sentry-release-notifier 适用场景与选型建议
zaengle/envoyer-sentry-release-notifier 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 45.51k 次下载、GitHub Stars 达 8, 最近一次更新时间为 2020 年 07 月 10 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「sentry」 「envoyer」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 zaengle/envoyer-sentry-release-notifier 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 zaengle/envoyer-sentry-release-notifier 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 zaengle/envoyer-sentry-release-notifier 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A simple to use PHP class to work with the Laravel Envoyer API
Fork of a PHP client for Sentry (http://getsentry.com) that work also with php5.2
An implementation of the Sentry User Manager for Laravel.
Simple Yii2 Sentry target for logging (http://getsentry.com)
A Laravel package to add Envoyer deploy commands to your application.
JustPark Envoyer Deploy Command
统计信息
- 总下载量: 45.51k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 8
- 点击次数: 27
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-07-10


