Merge branch 'main' of github.com:apache/skywalking-booster-ui into feat/profiling

This commit is contained in:
Qiuxia Fan
2022-08-08 10:51:55 +08:00
11 changed files with 45 additions and 12 deletions

View File

@@ -289,4 +289,5 @@ export const CalculationOpts = [
{ label: "Seconds to YYYY-MM-DD HH:mm:ss", value: "convertSeconds" },
{ label: "Precision is 2", value: "precision" },
{ label: "Milliseconds to seconds", value: "msTos" },
{ label: "Seconds to days", value: "secondToDay" },
];

View File

@@ -205,7 +205,7 @@ function searchTraces() {
queryDuration: duration.value,
minTraceDuration: Number(minTraceDuration.value),
maxTraceDuration: Number(maxTraceDuration.value),
queryOrder: "BY_DURATION",
queryOrder: traceStore.conditions.queryOrder || "BY_DURATION",
tags: tagsMap.value.length ? tagsMap.value : undefined,
paging: { pageNum: 1, pageSize: 20 },
});