mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-07-02 18:25:25 +00:00
77 lines
2.5 KiB
Vue
77 lines
2.5 KiB
Vue
<!-- Licensed to the Apache Software Foundation (ASF) under one or more
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
this work for additional information regarding copyright ownership.
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
(the "License"); you may not use this file except in compliance with
|
|
the License. You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License. -->
|
|
<template>
|
|
<div class="ttl">
|
|
<div class="label">{{ t("metricsTTL") }}</div>
|
|
<el-table
|
|
:data="[settingsStore.configTTL.metrics]"
|
|
class="mb-5"
|
|
:row-style="{ backgroundColor: 'var(--layout-background)' }"
|
|
>
|
|
<el-table-column v-for="item in MetricsTTLRow" :prop="item.value" :label="item.label" :key="item.value">
|
|
{{
|
|
settingsStore.configTTL?.metrics
|
|
? settingsStore.configTTL.metrics[item.value] < 0
|
|
? "N/A"
|
|
: (settingsStore.configTTL?.metrics ?? {})[item.value]
|
|
: "N/A"
|
|
}}
|
|
</el-table-column>
|
|
</el-table>
|
|
<div class="label">{{ t("recordsTTL") }}</div>
|
|
<el-table
|
|
:data="[settingsStore.configTTL.records]"
|
|
class="mb-5"
|
|
:row-style="{ backgroundColor: 'var(--layout-background)' }"
|
|
>
|
|
<el-table-column v-for="item in RecordsTTLRow" :prop="item.value" :label="item.label" :key="item.value">
|
|
{{
|
|
settingsStore.configTTL?.records
|
|
? settingsStore.configTTL?.records[item.value] < 0
|
|
? "N/A"
|
|
: (settingsStore.configTTL?.records || {})[item.value]
|
|
: "N/A"
|
|
}}
|
|
</el-table-column>
|
|
</el-table>
|
|
</div>
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { onMounted } from "vue";
|
|
import { useI18n } from "vue-i18n";
|
|
import { useSettingsStore } from "@/store/modules/settings";
|
|
import { MetricsTTLRow, RecordsTTLRow } from "../data";
|
|
|
|
const { t } = useI18n();
|
|
const settingsStore = useSettingsStore();
|
|
|
|
onMounted(() => {
|
|
settingsStore.getConfigTTL();
|
|
});
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.ttl {
|
|
color: var(--sw-setting-color);
|
|
font-size: 13px;
|
|
|
|
.label {
|
|
margin: 15px 0;
|
|
display: inline-block;
|
|
font-weight: 600;
|
|
color: $font-color;
|
|
}
|
|
}
|
|
</style>
|