JobS3Run.php 505 B

12345678910111213141516171819202122
  1. <?php
  2. namespace UCore\DcatAdmin\Metrics\Sys;
  3. use UCore\DcatAdmin\Metrics\Examples\Number;
  4. use Illuminate\Http\Request;
  5. class JobS3Run extends Number
  6. {
  7. protected $title='三秒运行';
  8. public function handle(Request $request)
  9. {
  10. $count = \App\Module\System\Services\Model\JobRun::query()
  11. ->where('created_at','>',time()-3)
  12. ->where('status','=','handle')
  13. ->count();
  14. $this->withContent($count);
  15. }
  16. }