mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-14 17:05:10 +00:00
fixed trace duration
This commit is contained in:
parent
0c5a108d20
commit
ae36fefabb
@ -94,6 +94,7 @@ limitations under the License. -->
|
||||
|
||||
<div v-if="activeFilter === 'duration'" class="filter">
|
||||
<span class="sm b grey mr-5">{{ t("duration") }}:</span>
|
||||
<b>{{ minTraceDuration }}</b>
|
||||
<el-input size="small" class="inputs mr-5" v-model="minTraceDuration" />
|
||||
<span class="grey mr-5">-</span>
|
||||
<el-input size="small" class="inputs" v-model="maxTraceDuration" />
|
||||
@ -360,8 +361,8 @@ function searchTraces() {
|
||||
serviceInstanceId: instance || state.instance.id || undefined,
|
||||
traceState: state.status.value || "ALL",
|
||||
queryDuration: appStore.durationTime,
|
||||
minTraceDuration: appStore.minTraceDuration || undefined,
|
||||
maxTraceDuration: appStore.maxTraceDuration || undefined,
|
||||
minTraceDuration: minTraceDuration.value || undefined,
|
||||
maxTraceDuration: maxTraceDuration.value || undefined,
|
||||
queryOrder: "BY_DURATION",
|
||||
tags: tagsMap.value.length ? tagsMap.value : undefined,
|
||||
paging: { pageNum: 1, pageSize: 15, needTotal: true },
|
||||
|
Loading…
Reference in New Issue
Block a user