diff --git a/web/views/@default/clusters/cluster/boards/index.js b/web/views/@default/clusters/cluster/boards/index.js index 6d89bff2..b4365d4a 100644 --- a/web/views/@default/clusters/cluster/boards/index.js +++ b/web/views/@default/clusters/cluster/boards/index.js @@ -193,7 +193,7 @@ Tea.context(function () { attackRatio = Math.round(stats[index].countAttackRequests * 10000 / stats[index].countRequests) / 100 } - return stats[index].day + " " + stats[index].hour + "时
总请求数:" + stats[index].countRequests + "
缓存请求数:" + stats[index].countCachedRequests + "
缓存命中率:" + cachedRatio + "%
拦截攻击数:" + stats[index].countAttackRequests + "
拦截比例:" + attackRatio + "%" + return stats[index].day + " " + stats[index].hour + "时
总请求数:" + teaweb.formatNumber(stats[index].countRequests) + "
缓存请求数:" + teaweb.formatNumber(stats[index].countCachedRequests) + "
缓存命中率:" + cachedRatio + "%
拦截攻击数:" + teaweb.formatNumber(stats[index].countAttackRequests) + "
拦截比例:" + attackRatio + "%" }) } @@ -208,7 +208,7 @@ Tea.context(function () { attackRatio = Math.round(stats[index].countAttackRequests * 10000 / stats[index].countRequests) / 100 } - return stats[index].day + "
总请求数:" + stats[index].countRequests + "
缓存请求数:" + stats[index].countCachedRequests + "
缓存命中率:" + cachedRatio + "%
拦截攻击数:" + stats[index].countAttackRequests + "
拦截比例:" + attackRatio + "%" + return stats[index].day + "
总请求数:" + teaweb.formatNumber(stats[index].countRequests) + "
缓存请求数:" + teaweb.formatNumber(stats[index].countCachedRequests) + "
缓存命中率:" + cachedRatio + "%
拦截攻击数:" + teaweb.formatNumber(stats[index].countAttackRequests) + "
拦截比例:" + attackRatio + "%" }) } diff --git a/web/views/@default/clusters/cluster/node/boards/index.js b/web/views/@default/clusters/cluster/node/boards/index.js index b279d6c2..b7198b6a 100644 --- a/web/views/@default/clusters/cluster/node/boards/index.js +++ b/web/views/@default/clusters/cluster/node/boards/index.js @@ -252,7 +252,7 @@ Tea.context(function () { attackRatio = Math.round(stats[index].countAttackRequests * 10000 / stats[index].countRequests) / 100 } - return stats[index].day + " " + stats[index].hour + "时
总请求数:" + stats[index].countRequests + "
缓存请求数:" + stats[index].countCachedRequests + "
缓存命中率:" + cachedRatio + "%
拦截攻击数:" + stats[index].countAttackRequests + "
拦截比例:" + attackRatio + "%" + return stats[index].day + " " + stats[index].hour + "时
总请求数:" + teaweb.formatNumber(stats[index].countRequests) + "
缓存请求数:" + teaweb.formatNumber(stats[index].countCachedRequests) + "
缓存命中率:" + cachedRatio + "%
拦截攻击数:" + teaweb.formatNumber(stats[index].countAttackRequests) + "
拦截比例:" + attackRatio + "%" }) } @@ -267,7 +267,7 @@ Tea.context(function () { attackRatio = Math.round(stats[index].countAttackRequests * 10000 / stats[index].countRequests) / 100 } - return stats[index].day + "
总请求数:" + stats[index].countRequests + "
缓存请求数:" + stats[index].countCachedRequests + "
缓存命中率:" + cachedRatio + "%
拦截攻击数:" + stats[index].countAttackRequests + "
拦截比例:" + attackRatio + "%" + return stats[index].day + "
总请求数:" + teaweb.formatNumber(stats[index].countRequests) + "
缓存请求数:" + teaweb.formatNumber(stats[index].countCachedRequests) + "
缓存命中率:" + cachedRatio + "%
拦截攻击数:" + teaweb.formatNumber(stats[index].countAttackRequests) + "
拦截比例:" + attackRatio + "%" }) } diff --git a/web/views/@default/servers/server/boards/index.js b/web/views/@default/servers/server/boards/index.js index 6b504ee5..7c2e463f 100644 --- a/web/views/@default/servers/server/boards/index.js +++ b/web/views/@default/servers/server/boards/index.js @@ -203,7 +203,7 @@ Tea.context(function () { attackRatio = Math.round(stats[index].countAttackRequests * 10000 / stats[index].countRequests) / 100 } - return stats[index].day + " " + stats[index].hour + "时
总请求数:" + stats[index].countRequests + "
缓存请求数:" + stats[index].countCachedRequests + "
缓存命中率:" + cachedRatio + "%
拦截攻击数:" + stats[index].countAttackRequests + "
拦截比例:" + attackRatio + "%" + return stats[index].day + " " + stats[index].hour + "时
总请求数:" + teaweb.formatNumber(stats[index].countRequests) + "
缓存请求数:" + teaweb.formatNumber(stats[index].countCachedRequests) + "
缓存命中率:" + cachedRatio + "%
拦截攻击数:" + teaweb.formatNumber(stats[index].countAttackRequests) + "
拦截比例:" + attackRatio + "%" }) } @@ -218,7 +218,7 @@ Tea.context(function () { attackRatio = Math.round(stats[index].countAttackRequests * 10000 / stats[index].countRequests) / 100 } - return stats[index].day + "
总请求数:" + stats[index].countRequests + "
缓存请求数:" + stats[index].countCachedRequests + "
缓存命中率:" + cachedRatio + "%
拦截攻击数:" + stats[index].countAttackRequests + "
拦截比例:" + attackRatio + "%" + return stats[index].day + "
总请求数:" + teaweb.formatNumber(stats[index].countRequests) + "
缓存请求数:" + teaweb.formatNumber(stats[index].countCachedRequests) + "
缓存命中率:" + cachedRatio + "%
拦截攻击数:" + teaweb.formatNumber(stats[index].countAttackRequests) + "
拦截比例:" + attackRatio + "%" }) }