mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-10-14 20:01:28 +00:00
feat: implement the Status API on Settings page (#470)
This commit is contained in:
@@ -176,7 +176,15 @@ limitations under the License. -->
|
||||
category: { value: "ALL", label: "All" },
|
||||
});
|
||||
const maxRange = computed(() =>
|
||||
getMaxRange(appStore.coldStageMode ? appStore.recordsTTL.coldSuperDataset : appStore.recordsTTL.superDataset),
|
||||
getMaxRange(
|
||||
appStore.coldStageMode
|
||||
? isBrowser.value
|
||||
? appStore.recordsTTL.coldBrowserErrorLog
|
||||
: appStore.recordsTTL.coldLog
|
||||
: isBrowser.value
|
||||
? appStore.recordsTTL.browserErrorLog
|
||||
: appStore.recordsTTL.log,
|
||||
),
|
||||
);
|
||||
if (props.needQuery) {
|
||||
init();
|
||||
|
@@ -132,7 +132,7 @@ limitations under the License. -->
|
||||
});
|
||||
const durationRow = ref<Duration>(InitializationDurationRow);
|
||||
const maxRange = computed(() =>
|
||||
getMaxRange(appStore.coldStageMode ? appStore.recordsTTL.coldSuperDataset : appStore.recordsTTL.superDataset),
|
||||
getMaxRange(appStore.coldStageMode ? appStore.recordsTTL.coldTrace : appStore.recordsTTL.trace),
|
||||
);
|
||||
if (filters.queryOrder) {
|
||||
traceStore.setTraceCondition({
|
||||
|
Reference in New Issue
Block a user