Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chrysanthos/pulse-requests
Incoming requests graph, grouped by status code for Laravel Pulse
https://github.com/chrysanthos/pulse-requests
hacktoberfest laravel laravel-package laravel-pulse pulse
Last synced: 2 months ago
JSON representation
Incoming requests graph, grouped by status code for Laravel Pulse
- Host: GitHub
- URL: https://github.com/chrysanthos/pulse-requests
- Owner: chrysanthos
- License: mit
- Created: 2024-01-08T22:59:48.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-05-15T13:01:09.000Z (7 months ago)
- Last Synced: 2024-10-09T16:48:26.673Z (2 months ago)
- Topics: hacktoberfest, laravel, laravel-package, laravel-pulse, pulse
- Language: Blade
- Homepage:
- Size: 114 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Laravel Pulse Request Recorder
[![Latest Version on Packagist](https://img.shields.io/packagist/v/chrysanthos/pulse-requests.svg?style=flat-square)](https://packagist.org/packages/chrysanthos/pulse-requests)
[![GitHub Code Style Action](https://github.com/chrysanthos/pulse-requests/actions/workflows/formatting.yml/badge.svg)](https://github.com/chrysanthos/pulse-requests/actions/workflows/formatting.yml)
[![Total Downloads](https://img.shields.io/packagist/dt/chrysanthos/pulse-requests.svg?style=flat-square)](https://packagist.org/packages/chrysanthos/pulse-requests)This package records all incoming requests with Laravel Pulse. They are categorized in 5 buckets according to their response's http status.
![screenshot.png](screenshot.png)
## Installation
You can install the package via composer:
```bash
composer require chrysanthos/pulse-requests
```## Usage
Add the card to your dashboard by editing `resources/views/vendor/pulse/dashboard.blade.php`
```php
(...)```
Add the recorder to your `config/pulse.php` file
```php
'recorders' => [
\Chrysanthos\PulseRequests\Recorders\RequestRecorder::class => [],
(...)
]
```## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Security Vulnerabilities
Please contact me directly via email.
## Credits
- [Chrysanthos Prodromou](https://github.com/chrysanthos)
- [All Contributors](../../contributors)## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.