Commit ab534521a394ced450594672e52921289f38b695
1 parent
afe2925c
update...
Showing
2 changed files
with
6 additions
and
0 deletions
src/main/java/com/bsth/controller/realcontrol/AdminUtilsController.java
| ... | ... | @@ -2,6 +2,7 @@ package com.bsth.controller.realcontrol; |
| 2 | 2 | |
| 3 | 3 | import com.bsth.data.directive.DayOfDirectives; |
| 4 | 4 | import com.bsth.data.gpsdata_v2.cache.GeoCacheData; |
| 5 | +import com.bsth.data.gpsdata_v2.handlers.overspeed.OverspeedProcess; | |
| 5 | 6 | import com.bsth.data.gpsdata_v2.thread.GpsDataLoaderThread; |
| 6 | 7 | import com.bsth.data.msg_queue.DirectivePushQueue; |
| 7 | 8 | import com.bsth.data.msg_queue.WebSocketPushQueue; |
| ... | ... | @@ -141,6 +142,7 @@ public class AdminUtilsController { |
| 141 | 142 | rs.put("lp_sch_size", dayOfSchedule.findAllByLpContainer().size()); |
| 142 | 143 | rs.put("id_sch_size", dayOfSchedule.findAllByIdContainer().size()); |
| 143 | 144 | rs.put("pst_sch_size", dayOfSchedule.getPstSize()); |
| 145 | + rs.put("speeds_size", OverspeedProcess.size()); | |
| 144 | 146 | return rs; |
| 145 | 147 | } |
| 146 | 148 | ... | ... |
src/main/java/com/bsth/data/gpsdata_v2/handlers/overspeed/OverspeedProcess.java