This is an automated email from the ASF dual-hosted git repository. hanahmily pushed a commit to branch 6.0.0/dev in repository https://gitbox.apache.org/repos/asf/incubator-skywalking-ui.git
commit a78856a7a28778af339ebcb27a56e2a990d33edf Author: Gao Hongtao <[email protected]> AuthorDate: Thu Oct 11 21:39:12 2018 +0800 Fix pxx metirc name from 'service_pxx' to 'all_pxx' --- src/models/dashboard.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/models/dashboard.js b/src/models/dashboard.js index 5fe6df4..b3f8b75 100644 --- a/src/models/dashboard.js +++ b/src/models/dashboard.js @@ -92,35 +92,35 @@ export default base({ value } getP99: getLinearIntValues(metric: { - name: "service_p99" + name: "all_p99" }, duration: $duration) { values { value } } getP95: getLinearIntValues(metric: { - name: "service_p95" + name: "all_p95" }, duration: $duration) { values { value } } getP90: getLinearIntValues(metric: { - name: "service_p90" + name: "all_p90" }, duration: $duration) { values { value } } getP75: getLinearIntValues(metric: { - name: "service_p75" + name: "all_p75" }, duration: $duration) { values { value } } getP50: getLinearIntValues(metric: { - name: "service_p50" + name: "all_p50" }, duration: $duration) { values { value
