Skip to content

Commit 9c116cb

Browse files
committed
wip
1 parent 6929897 commit 9c116cb

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

src/Recorders/Concerns/Throttling.php

+6
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,21 @@
55
use Carbon\CarbonImmutable;
66
use DateInterval;
77
use Illuminate\Support\Facades\App;
8+
use Illuminate\Support\InteractsWithTime;
89
use Laravel\Pulse\Events\IsolatedBeat;
910
use Laravel\Pulse\Events\SharedBeat;
1011
use Laravel\Pulse\Support\CacheStoreResolver;
1112

1213
trait Throttling
1314
{
15+
use InteractsWithTime;
16+
1417
/**
1518
* Determine if the recorder is ready to record another snapshot.
1619
*/
1720
protected function throttle(DateInterval|int $interval, SharedBeat|IsolatedBeat $event, callable $callback, ?string $key = null): void
1821
{
22+
// in-memory for shared beat.
1923
$key ??= static::class;
2024

2125
if ($event instanceof SharedBeat) {
@@ -24,6 +28,8 @@ protected function throttle(DateInterval|int $interval, SharedBeat|IsolatedBeat
2428

2529
$cache = App::make(CacheStoreResolver::class);
2630

31+
$key = 'laravel:pulse:throttle:'.$key;
32+
2733
$lastRunAt = $cache->store()->get($key);
2834

2935
if ($lastRunAt !== null && CarbonImmutable::createFromTimestamp($lastRunAt)->addSeconds($this->secondsUntil($interval))->isFuture()) {

src/Recorders/Servers.php

+2-5
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,17 @@
44

55
use Carbon\CarbonInterval as Interval;
66
use Illuminate\Config\Repository;
7-
use Illuminate\Support\InteractsWithTime;
87
use Illuminate\Support\Str;
98
use Laravel\Pulse\Events\SharedBeat;
109
use Laravel\Pulse\Pulse;
11-
use Laravel\Pulse\Support\CacheStoreResolver;
1210
use RuntimeException;
1311

1412
/**
1513
* @internal
1614
*/
1715
class Servers
1816
{
19-
use Concerns\Throttling, InteractsWithTime;
17+
use Concerns\Throttling;
2018

2119
/**
2220
* The events to listen for.
@@ -30,7 +28,6 @@ class Servers
3028
*/
3129
public function __construct(
3230
protected Pulse $pulse,
33-
protected CacheStoreResolver $cache,
3431
protected Repository $config
3532
) {
3633
//
@@ -41,7 +38,7 @@ public function __construct(
4138
*/
4239
public function record(SharedBeat $event): void
4340
{
44-
$this->throttle(Interval::seconds(15), $event, function ($event) {
41+
$this->throttle(15, $event, function ($event) {
4542
$server = $this->config->get('pulse.recorders.'.self::class.'.server_name');
4643
$slug = Str::slug($server);
4744

0 commit comments

Comments
 (0)