mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-07-18 14:45:25 +00:00
implemeted trace duration of min and max to be reflected in trace search
This commit is contained in:
parent
f5b98fea30
commit
8329c0eddb
@ -216,6 +216,18 @@ async function searchEndpoints(keyword: string) {
|
|||||||
ElMessage.error(resp.errors);
|
ElMessage.error(resp.errors);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
watch(
|
||||||
|
() => minTraceDuration.value,
|
||||||
|
() => {
|
||||||
|
appStore.setMinTraceDuration(minTraceDuration.value)
|
||||||
|
}
|
||||||
|
)
|
||||||
|
watch(
|
||||||
|
() => maxTraceDuration.value,
|
||||||
|
() => {
|
||||||
|
appStore.setMaxTraceDuration(maxTraceDuration.value)
|
||||||
|
}
|
||||||
|
)
|
||||||
watch(
|
watch(
|
||||||
() => [selectorStore.currentPod],
|
() => [selectorStore.currentPod],
|
||||||
() => {
|
() => {
|
||||||
|
Loading…
Reference in New Issue
Block a user