dedmytro/laravel-metrics
Composer 安装命令:
composer require dedmytro/laravel-metrics
包简介
Provides customizable dashboard to see project metrics
关键字:
README 文档
README
Laravel Metrics provides an ability to display your custom or default metrics widgets.

Table of contents
Installation
To get the latest version of Laravel Metrics, simply require the project using Composer:
$ composer require dedmytro/laravel-metrics
Or manually update require block of composer.json and run composer update.
{
"require": {
"dedmytro/laravel-metrics": "^0.1"
}
}
And run install command publishes config and assets
$ php artisan metrics:install
Using
Visit /metrics to see dashboard with default widgets. To manage visible widgets open config/metrics.php and
check widgets key:
'widgets' => [
MysqlConnections::class,
RequestsPerSecond::class,
UsersOnline::class,
],
Widgets
To create your custom widget use default command. By default you can found generated widgets in ** app/Metrics/Widgets/**
$ php artisan metrics:widget ActiveUsersCount --type=value
There are few types of widgets (--type=):
--type=value
Default type, when no type specified. The simplest widget to display one value.
--type=multiple
Widget type which can be used to display multiple values with labels within one widget.
Roadmap
- More default widgets
- Live widgets
- Chart widget
统计信息
- 总下载量: 7
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-04-19