-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathQueueMonitorCommand.php
More file actions
71 lines (57 loc) · 1.69 KB
/
QueueMonitorCommand.php
File metadata and controls
71 lines (57 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
namespace Doppar\Queue\Commands;
use Phaseolies\Console\Schedule\Command;
use Doppar\Queue\Models\QueueJob;
use Doppar\Queue\Models\FailedJob;
class QueueMonitorCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $name = 'queue:monitor';
/**
* The description of the console command.
*
* @var string
*/
protected $description = 'Monitor queue statistics';
/**
* Execute the console command.
*
* @return int
*/
protected function handle(): int
{
$queues = QueueJob::groupBy('queue')->pluck('queue');
// Create table for queue statistics
$table = $this->createTable();
$table->setHeaders(['Queue', 'Pending', 'Processing']);
foreach ($queues ?? [] as $queue) {
$pending = QueueJob::where('queue', $queue)
->whereNull('reserved_at')
->count();
$processing = QueueJob::where('queue', $queue)
->whereNotNull('reserved_at')
->count();
$table->addRow([
$queue,
$pending,
$processing,
]);
}
// Render queue table
$this->newLine();
$this->info("Queue Statistics");
$table->render();
// Failed jobs table
$failedCount = FailedJob::count();
$failedTable = $this->createTable();
$failedTable->setHeaders(['Metric', 'Value']);
$failedTable->addRow(['Failed Jobs', $failedCount]);
$this->info("\nFailed Jobs Summary");
$failedTable->render();
return Command::SUCCESS;
}
}