diff --git a/src/locales/lang/en.ts b/src/locales/lang/en.ts
index 6bc4cacf..7dbf950c 100644
--- a/src/locales/lang/en.ts
+++ b/src/locales/lang/en.ts
@@ -399,7 +399,7 @@ const msg = {
uriRegex: "URI Regex",
uriList: "URI List",
processes: "Processes",
- monitorInstances: "Monitor Instances",
+ monitorInstances: "Monitoring Instances",
processDashboards: "Process Dashboards",
instanceDashboards: "Instance Dashboards",
detailLabel: "Detail Label",
diff --git a/src/views/dashboard/configuration/widget/metric/Index.vue b/src/views/dashboard/configuration/widget/metric/Index.vue
index 9a6e486b..d7c34533 100644
--- a/src/views/dashboard/configuration/widget/metric/Index.vue
+++ b/src/views/dashboard/configuration/widget/metric/Index.vue
@@ -26,14 +26,21 @@ limitations under the License. -->
/>
{{ t("metrics") }}
-
+
{{ t("summary") }}
{{ t("detail") }}
@@ -641,4 +648,9 @@ limitations under the License. -->
display: inline-block;
width: 410px;
}
+
+ .link {
+ cursor: pointer;
+ color: #409eff;
+ }
diff --git a/src/views/dashboard/related/continuous-profiling/components/Policy.vue b/src/views/dashboard/related/continuous-profiling/components/Policy.vue
index 231cedc6..09ecc35d 100644
--- a/src/views/dashboard/related/continuous-profiling/components/Policy.vue
+++ b/src/views/dashboard/related/continuous-profiling/components/Policy.vue
@@ -56,7 +56,7 @@ limitations under the License. -->
{{ t("threshold") }}
- ({{ getNotice(item.type) }} )
+ {{ getNotice(item.type) }}
{{ t("count") }}
-
+
+
+ s
+
{{ t("period") }}
-
+
+
+ s
+
{{ t("uriRegex") }}
@@ -196,7 +202,7 @@ limitations under the License. -->
HTTP_AVG_RESPONSE_TIME: "It is a response time in milliseconds",
};
- return map[type];
+ return map[type] ? `(${map[type]})` : "";
}