|
@@ -49,7 +49,7 @@ limitations under the License. -->
+ {{ t("task") }}.
@@ -58,33 +58,35 @@ limitations under the License. -->
{{ t("endpoint") }}:
- {{ selectedTask.endpointName }}
+ {{ profileStore.currentTask.endpointName }}
{{ t("monitorTime") }}:
- {{ dateFormat(selectedTask.startTime) }}
+ {{ dateFormat(profileStore.currentTask.startTime) }}
{{ t("monitorDuration") }}:{{ selectedTask.duration }} min
+ >{{ profileStore.currentTask.duration }} min
{{ t("minThreshold") }}:
- {{ selectedTask.minDurationThreshold }} ms
+ {{ profileStore.currentTask.minDurationThreshold }} ms
{{ t("dumpPeriod") }}:
- {{ selectedTask.dumpPeriod }}
+ {{ profileStore.currentTask.dumpPeriod }}
{{ t("maxSamplingCount") }}:
- {{ selectedTask.maxSamplingCount }}
+ {{ profileStore.currentTask.maxSamplingCount }}
- {{ t("logs") }}.++ {{ t("logs") }}. +
{{ t("instance") }}:
@@ -115,12 +117,12 @@ limitations under the License. -->
const selectorStore = useSelectorStore();
const viewDetail = ref |