diff --git a/sentinel-dashboard/src/main/webapp/resources/app/scripts/controllers/metric.js b/sentinel-dashboard/src/main/webapp/resources/app/scripts/controllers/metric.js index 7986d2f6ff..2fa4b92fb1 100755 --- a/sentinel-dashboard/src/main/webapp/resources/app/scripts/controllers/metric.js +++ b/sentinel-dashboard/src/main/webapp/resources/app/scripts/controllers/metric.js @@ -131,10 +131,10 @@ app.controller('MetricCtl', ['$scope', '$stateParams', 'MetricService', '$interv allowAllCanceled: true, itemFormatter: function (val) { if ('passQps' === val) { - return 'p_qps'; + return 'p_qps(通过 QPS)'; } if ('blockQps' === val) { - return 'b_qps'; + return 'b_qps(拒绝 QPS)'; } return val; }, diff --git a/sentinel-dashboard/src/main/webapp/resources/app/views/metric.html b/sentinel-dashboard/src/main/webapp/resources/app/views/metric.html index a77b895f0a..d248bebf5f 100755 --- a/sentinel-dashboard/src/main/webapp/resources/app/views/metric.html +++ b/sentinel-dashboard/src/main/webapp/resources/app/views/metric.html @@ -51,9 +51,9 @@ 时间 - p_qps - b_qps - rt(ms) + 通过QPS + 拒绝QPS + 响应时间(ms)