avto-dev/app-metrics-laravel
Composer 安装命令:
composer require avto-dev/app-metrics-laravel
包简介
Metrics endpoint for Laravel applications
关键字:
README 文档
README
Metrics endpoint for Laravel applications
Using this package provides easy way for integration metrics endpoint into your Illuminate-based application.
Install
Require this package with composer using the following command:
$ composer require avto-dev/app-metrics-laravel "^2.0"
Installed
composeris required (how to install composer).
You need to fix the major version of package.
After that you should "publish" package configuration file using next command:
$ php ./artisan vendor:publish --provider="AvtoDev\\AppMetrics\\ServiceProvider"
And configure it in the file ./config/metrics.php.
Usage
Feel free to write your own metric classes and add it after into metrics.metric_classes configuration array.
Metric class must implements
MetricInterfaceand optionallyHasDescriptionInterface/HasLabelsInterface/HasTypeInterface. In metric constructor you can request any dependencies - DI will inject it automatically.
Also metric class can implements
MetricsGroupInterface(for metrics grouping).
When your metric classes are ready and successfully registered into configuration file - you can request special route (/metrics by default):
$ curl http://127.0.0.1:8080/metrics?format=json [{"name": "some_metric", "value": 1, "labels": {"foo":"bar"}}] $ curl http://127.0.0.1:8080/metrics?format=prometheus some_metric{foo="bar"} 1
Configuration allows you to change endpoint URI, set password protection, and more.
Secret verification can be completed using sending get-parameter ?secret=XXX or HTTP header X-SECRET.
Formatters
Out of the box this package provides json and prometheus metrics formats. Feel free to write your own formatters.
Prometheus formatter
Prometheus formatter uses some constants for metric's values(Nan, +Inf, -Inf) and types(counter,summary,gauge,histogram, untyped). You can find it in PrometheusValuesDictionary and HasTypeInterface
Keep in mind that Prometheus accepts only numeric metrics values. This formatter will try to cast metrics values to numeric format (integer or float). And will set Nan if casting to numeric is impossible. Examples for formatting values:
| Input | Output |
|---|---|
1.2 |
'1.2' |
1 |
'1' |
true |
'1' |
false |
'0' |
'123' |
'123' |
'12foo' |
'Nan' |
['10', '20'] |
'Nan' |
null |
'Nan' |
'Nan' |
'Nan' |
'+Inf' |
'+Inf' |
'-Inf' |
'-Inf' |
Skipping metrics
If during construction or formatting metrics would be thrown exception that implements AvtoDev\AppMetrics\Exceptions\ShouldBeSkippedMetricExceptionInterface then this metric would be skipped from formatters output and exception would be reported by Illuminate\Contracts\Debug\ExceptionHandler
Testing
For package testing we use phpunit framework and docker with compose plugin as develop environment. So, just write into your terminal after repository cloning:
$ make build $ make latest # or 'make lowest' $ make test
Changes log
Changes log can be found here.
Support
If you will find any package errors, please, make an issue in current repository.
License
This is open-sourced software licensed under the MIT License.
avto-dev/app-metrics-laravel 适用场景与选型建议
avto-dev/app-metrics-laravel 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 22.75k 次下载、GitHub Stars 达 4, 最近一次更新时间为 2019 年 09 月 11 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「Metrics」 「laravel」 「prometheus」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 avto-dev/app-metrics-laravel 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 avto-dev/app-metrics-laravel 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 avto-dev/app-metrics-laravel 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A Prometheus exporter for Laravel and Lumen
A abstraction for generating metrics in Laravel.
Laravel SDK for working with prometheus metrics
Production-ready Laravel Prometheus metrics package with built-in collectors for HTTP, database, cache, queue, events, errors, filesystem, and mail monitoring
Tool to show code coverage metrics, measured by PHP Unit in Cobertura format, in console and CI/CD pipeline
Collector-free telemetry for Laravel: Prometheus metrics, OTLP traces and events. No C extension, no protobuf, no sidecar — metrics that actually work under FPM.
统计信息
- 总下载量: 22.75k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 8
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-09-11