| 1234567891011121314151617181920 |
- <?php
- namespace UCore\DcatAdmin\Metrics\Sys;
- use UCore\DcatAdmin\Metrics\Examples\Number;
- use Illuminate\Http\Request;
- class JobS3 extends Number
- {
- protected $title='三秒排队';
- public function handle(Request $request)
- {
- $count = \App\Module\System\Services\Model\Job::query()
- ->where('available_at','<',time()+3)
- ->count();
- $this->withContent($count);
- }
- }
|