Skip to content

Commit

Permalink
Rename SystemStats recorder
Browse files Browse the repository at this point in the history
  • Loading branch information
jessarcher committed Dec 1, 2023
1 parent d60f11b commit 6471ebe
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions config/pulse.php
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,11 @@
],
],

Recorders\Servers::class => [
'server_name' => env('PULSE_SERVER_NAME', gethostname()),
'directories' => explode(':', env('PULSE_SERVER_DIRECTORIES', '/')),
],

Recorders\SlowJobs::class => [
'enabled' => env('PULSE_SLOW_JOBS_ENABLED', true),
'sample_rate' => env('PULSE_SLOW_JOBS_SAMPLE_RATE', 1),
Expand Down Expand Up @@ -202,11 +207,6 @@
],
],

Recorders\SystemStats::class => [
'server_name' => env('PULSE_SERVER_NAME', gethostname()),
'directories' => explode(':', env('PULSE_DIRECTORIES', '/')),
],

Recorders\UserJobs::class => [
'enabled' => env('PULSE_USER_JOBS_ENABLED', true),
'sample_rate' => env('PULSE_USER_JOBS_SAMPLE_RATE', 1),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/**
* @internal
*/
class SystemStats
class Servers
{
/**
* The events to listen for.
Expand Down

0 comments on commit 6471ebe

Please sign in to comment.