We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29ed712 commit fbe6755Copy full SHA for fbe6755
src/main/webapp/modules/home.html
@@ -72,7 +72,13 @@
72
{title: "失败数", data: "errorCount", name: "errorCount"},
73
{title: "最小时长", data: "minDuration", name: "minDuration"},
74
{title: "最大时长", data: "maxDuration", name: "maxDuration"},
75
- {title: "总时长", data: "totalDuration", name: "totalDuration"}
+ {title: "总时长", data: "totalDuration", name: "totalDuration"},
76
+ {
77
+ title: "平均时长",
78
+ render: function (data, type, row, meta) {
79
+ return Math.round(row.totalDuration / (row.successCount + row.errorCount));
80
+ }
81
82
],
83
84
autoWidth: false,
0 commit comments