mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-07-20 01:21:21 +00:00
add tips
This commit is contained in:
parent
f349976c71
commit
94b0288078
@ -134,6 +134,7 @@ const msg = {
|
||||
taskId: "Task ID",
|
||||
triggerType: "Trigger Type",
|
||||
targetType: "Target Type",
|
||||
ebpfTip: "Don't have process could profiling",
|
||||
processSelect: "Click to select processes",
|
||||
hourTip: "Select Hour",
|
||||
minuteTip: "Select Minute",
|
||||
|
@ -133,6 +133,7 @@ const msg = {
|
||||
triggerType: "触发类型",
|
||||
targetType: "目标类型",
|
||||
processSelect: "点击选择进程",
|
||||
ebpfTip: "没有进程可以分析",
|
||||
hourTip: "选择小时",
|
||||
minuteTip: "选择分钟",
|
||||
secondTip: "选择秒数",
|
||||
|
@ -76,7 +76,7 @@ limitations under the License. -->
|
||||
</el-button>
|
||||
</div>
|
||||
</div>
|
||||
<div v-else>Don't have process could profiling</div>
|
||||
<div v-else>{{ t("ebpfTip") }}</div>
|
||||
</template>
|
||||
<script lang="ts" setup>
|
||||
import { ref } from "vue";
|
||||
@ -115,8 +115,7 @@ async function createTask() {
|
||||
ElMessage.warning("no labels");
|
||||
return;
|
||||
}
|
||||
const date =
|
||||
monitorTime.value === "0" ? appStore.durationRow.start : time.value;
|
||||
const date = monitorTime.value === "0" ? new Date() : time.value;
|
||||
const params = {
|
||||
serviceId: selectorStore.currentService.id,
|
||||
processLabels: labels.value,
|
||||
|
Loading…
Reference in New Issue
Block a user