| 12345678910111213141516171819202122 |
- <?php
- namespace UCore\DcatAdmin\Metrics\Sys;
- use UCore\DcatAdmin\Metrics\Examples\Number;
- use Illuminate\Http\Request;
- class JobS3Run extends Number
- {
- protected $title='三秒运行';
- public function handle(Request $request)
- {
- $count = \App\Module\System\Services\Model\JobRun::query()
- ->where('created_at','>',time()-3)
- ->where('status','=','handle')
- ->count();
- $this->withContent($count);
- }
- }
|