mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-02 18:15:22 +00:00
alert: add view and router
This commit is contained in:
parent
9f316c2892
commit
1cd1e5874b
@ -27,7 +27,10 @@ const msg = {
|
|||||||
dashboardList: "仪表盘列表",
|
dashboardList: "仪表盘列表",
|
||||||
log: "日志",
|
log: "日志",
|
||||||
events: "事件",
|
events: "事件",
|
||||||
|
// 警告
|
||||||
alerts: "警告",
|
alerts: "警告",
|
||||||
|
alertName: "警告名称",
|
||||||
|
startedTime: "开始时间",
|
||||||
settings: "设置",
|
settings: "设置",
|
||||||
dashboards: "仪表盘",
|
dashboards: "仪表盘",
|
||||||
profiles: "性能剖析",
|
profiles: "性能剖析",
|
||||||
|
@ -24,8 +24,8 @@ export const routesAlert: Array<RouteRecordRaw> = [
|
|||||||
meta: {
|
meta: {
|
||||||
title: "alerts",
|
title: "alerts",
|
||||||
icon: "notification_important",
|
icon: "notification_important",
|
||||||
hasGroup: false,
|
hasGroup: true,
|
||||||
exact: false,
|
exact: true,
|
||||||
},
|
},
|
||||||
component: Layout,
|
component: Layout,
|
||||||
children: [
|
children: [
|
||||||
@ -38,7 +38,7 @@ export const routesAlert: Array<RouteRecordRaw> = [
|
|||||||
hasGroup: false,
|
hasGroup: false,
|
||||||
exact: false,
|
exact: false,
|
||||||
},
|
},
|
||||||
component: () => import("@/views/Log.vue"),
|
component: () => import("@/views/Alert.vue"),
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
102
src/views/Alert.vue
Normal file
102
src/views/Alert.vue
Normal file
@ -0,0 +1,102 @@
|
|||||||
|
<!-- 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="alert-table">
|
||||||
|
<el-table :data="tableData" :span-method="objectSpanMethod" border>
|
||||||
|
<el-table-column
|
||||||
|
v-for="(h, index) in tableHeader"
|
||||||
|
:label="t(h)"
|
||||||
|
:key="h + index"
|
||||||
|
>
|
||||||
|
<template #default="scope">
|
||||||
|
<router-link
|
||||||
|
:to="`${state.path}/${scope.row.serviceName}/metrics`"
|
||||||
|
v-if="h === tableHeader[1] && index !== 0"
|
||||||
|
>
|
||||||
|
<span class="alert-name cp">{{ scope.row[h] }}</span>
|
||||||
|
</router-link>
|
||||||
|
<span v-else>{{ scope.row[h] }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import {reactive, watch} from "vue";
|
||||||
|
import {useI18n} from "vue-i18n";
|
||||||
|
import {useRoute} from "vue-router";
|
||||||
|
import {ElTable, ElTableColumn} from "element-plus";
|
||||||
|
|
||||||
|
const route = useRoute();
|
||||||
|
const {t} = useI18n();
|
||||||
|
const tableHeader = [
|
||||||
|
"scope",
|
||||||
|
"alertName",
|
||||||
|
"message",
|
||||||
|
"startedTime"
|
||||||
|
];
|
||||||
|
const tableData = [
|
||||||
|
{
|
||||||
|
scope: "Service",
|
||||||
|
alertName: "xx",
|
||||||
|
message: "Response time of service instance 91629a56afea40e885ab4fae0cbe6e9c@10.170.0.13 of business-zone::projectA is more than 1000ms in last 10 minutes",
|
||||||
|
startedTime: "2021-08-17 23:26:25",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
scope: "Service",
|
||||||
|
alertName: "xx",
|
||||||
|
message: "Response time of service i",
|
||||||
|
startedTime: "2021-08-17 23:26:25",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
const state = reactive({
|
||||||
|
path: route.meta.headPath,
|
||||||
|
});
|
||||||
|
const objectSpanMethod = (item: { columnIndex: number; rowIndex: number }) => {
|
||||||
|
if (item.columnIndex === 0) {
|
||||||
|
if (item.rowIndex % 2 === 0) {
|
||||||
|
return {
|
||||||
|
rowspan: 2,
|
||||||
|
colspan: 1,
|
||||||
|
};
|
||||||
|
} else {
|
||||||
|
return {
|
||||||
|
rowspan: 0,
|
||||||
|
colspan: 0,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
watch(
|
||||||
|
() => route.meta.headPath,
|
||||||
|
(path: unknown) => {
|
||||||
|
if (!path) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
state.path = path;
|
||||||
|
}
|
||||||
|
);
|
||||||
|
</script>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.alert-name {
|
||||||
|
color: #448edf;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.alert-table {
|
||||||
|
padding: 15px;
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in New Issue
Block a user