调度报表

v1.6
xueli.xue 8 years ago
parent 92a124f4d6
commit 783f4d5b98

@ -12,6 +12,7 @@ import com.xxl.job.core.registry.RegistHelper;
import org.apache.commons.collections.CollectionUtils;
import org.apache.commons.lang.StringUtils;
import org.apache.commons.lang.time.DateUtils;
import org.apache.commons.lang.time.FastDateFormat;
import org.quartz.CronExpression;
import org.quartz.SchedulerException;
import org.slf4j.Logger;
@ -329,7 +330,11 @@ public class XxlJobServiceImpl implements IXxlJobService {
triggerCountFailTotal += dayFailCount;
}
} else {
return new ReturnT<Map<String, Object>>(ReturnT.FAIL_CODE, null);
for (int i = 4; i > -1; i--) {
triggerDayList.add(FastDateFormat.getInstance("yyyy-MM-dd").format(DateUtils.addDays(new Date(), -i)));
triggerDayCountSucList.add(0);
triggerDayCountFailList.add(0);
}
}
Map<String, Object> result = new HashMap<String, Object>();

@ -58,10 +58,12 @@
<span class="info-box-number">${jobLogCount}</span>
<div class="progress">
<div class="progress-bar" style="width: ${(jobLogSuccessCount*100/jobLogCount)?string("0.00")}%"></div>
<div class="progress-bar" <#if jobLogCount gt 0> style="width: ${(jobLogSuccessCount*100/jobLogCount)?string("0.00")}%" </#if> ></div>
</div>
<span class="progress-description">
${(jobLogSuccessCount*100/jobLogCount)?string("0.00")}<small>%</small>
<#if jobLogCount gt 0>
${(jobLogSuccessCount*100/jobLogCount)?string("0.00")}<small>%</small>
</#if>
</span>
</div>
</div>

@ -47,7 +47,7 @@ $(function () {
},
toolbox: {
feature: {
saveAsImage: {}
/*saveAsImage: {}*/
}
},
grid: {

Loading…
Cancel
Save