Skip to content

Commit 1ff6403

Browse files
[1.x] Add Configurable Trim Duration for Pulse Data Storage (#424)
* feat: add command to prune data with suggested before hours * chore: remove prune structure * feat: add environment to keep data in database storage * chore: remove unused DateTimeInterface imports from Storage contracts * Update DatabaseStorage.php --------- Co-authored-by: Taylor Otwell <[email protected]>
1 parent 8e0107f commit 1ff6403

File tree

5 files changed

+40
-4
lines changed

5 files changed

+40
-4
lines changed

config/pulse.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383

8484
'trim' => [
8585
'lottery' => [1, 1_000],
86-
'keep' => '7 days',
86+
'keep' => env('PULSE_INGEST_KEEP', '7 days'),
8787
],
8888

8989
'redis' => [

src/Storage/DatabaseStorage.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -125,14 +125,16 @@ public function trim(): void
125125
{
126126
$now = CarbonImmutable::now();
127127

128+
$keep = $this->config->get('pulse.ingest.trim.keep');
129+
128130
$this->connection()
129131
->table('pulse_values')
130-
->where('timestamp', '<=', $now->subWeek()->getTimestamp())
132+
->where('timestamp', '<=', $now->sub($keep)->getTimestamp())
131133
->delete();
132134

133135
$this->connection()
134136
->table('pulse_entries')
135-
->where('timestamp', '<=', $now->subWeek()->getTimestamp())
137+
->where('timestamp', '<=', $now->sub($keep)->getTimestamp())
136138
->delete();
137139

138140
$this->connection()

tests/Feature/Ingests/DatabaseTest.php

+19
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?php
22

33
use Illuminate\Support\Facades\App;
4+
use Illuminate\Support\Facades\Config;
45
use Illuminate\Support\Facades\Date;
56
use Illuminate\Support\Facades\DB;
67
use Laravel\Pulse\Facades\Pulse;
@@ -121,3 +122,21 @@
121122
App::make(DatabaseStorage::class)->trim();
122123
expect(DB::table('pulse_aggregates')->where('period', 10080)->count())->toBe(1);
123124
});
125+
126+
it('can configure days of data to keep when trimming', function () {
127+
Config::set('pulse.ingest.trim.keep', '14 days');
128+
129+
Date::setTestNow('2000-01-01 00:00:04');
130+
Pulse::record('foo', 'xxxx', 1);
131+
Date::setTestNow('2000-01-01 00:00:05');
132+
Pulse::record('bar', 'xxxx', 1);
133+
Date::setTestNow('2000-01-01 00:00:06');
134+
Pulse::record('baz', 'xxxx', 1);
135+
Pulse::ingest();
136+
137+
Pulse::stopRecording();
138+
Date::setTestNow('2000-01-15 00:00:05');
139+
App::make(DatabaseStorage::class)->trim();
140+
141+
expect(DB::table('pulse_entries')->pluck('type')->all())->toBe(['baz']);
142+
});

tests/Feature/PulseTest.php

+13
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,19 @@
4848
expect($storage->stored)->toHaveCount(1);
4949
});
5050

51+
it('can configure days of data to keep when trimming', function () {
52+
Config::set('pulse.ingest.trim.keep', '30 days');
53+
App::instance(Storage::class, $storage = new StorageFake);
54+
55+
Pulse::record('foo', 'delete', 0, now()->subMonth());
56+
Pulse::record('foo', 'keep', 0, now()->subWeek());
57+
Pulse::record('foo', 'keep', 0);
58+
59+
Pulse::ingest();
60+
61+
expect($storage->stored)->toHaveCount(2);
62+
});
63+
5164
it('can lazily capture entries', function () {
5265
App::instance(Storage::class, $storage = new StorageFake);
5366

tests/StorageFake.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ public function store(Collection $items): void
3131
*/
3232
public function trim(): void
3333
{
34-
$this->stored = $this->stored->reject(fn ($record) => $record->timestamp <= now()->subWeek()->timestamp);
34+
$keep = config('pulse.ingest.trim.keep');
35+
36+
$this->stored = $this->stored->reject(fn ($record) => $record->timestamp <= now()->sub($keep)->timestamp);
3537
}
3638

3739
/**

0 commit comments

Comments
 (0)