|
@@ -1,7 +1,11 @@
|
|
|
<template>
|
|
|
<el-container>
|
|
|
<el-header height="60px" class="content-header">
|
|
|
- <MyHeader :title="'链路监控'" :formData="headerFormData" @submit="handleHeaderFormSubmit"></MyHeader>
|
|
|
+ <MyHeader
|
|
|
+ :title="'链路监控'"
|
|
|
+ :formData="headerFormData"
|
|
|
+ @submit="handleHeaderFormSubmit"
|
|
|
+ ></MyHeader>
|
|
|
</el-header>
|
|
|
<el-container>
|
|
|
<el-main>
|
|
@@ -14,21 +18,60 @@
|
|
|
></MyTableHeader>
|
|
|
|
|
|
<!-- 接口 -->
|
|
|
- <InterfaceMonitorTable v-if="tabActive===1" :tableList="tableData"></InterfaceMonitorTable>
|
|
|
+ <InterfaceMonitorTable
|
|
|
+ ref="interface"
|
|
|
+ v-if="tabActive === 1"
|
|
|
+ :tableList="tableData"
|
|
|
+ :total='tableTotal'
|
|
|
+ @changePage1="changePage1"
|
|
|
+ @changeSize1="changeSize1"
|
|
|
+ ></InterfaceMonitorTable>
|
|
|
<!-- kafka -->
|
|
|
- <KafkaMonitorTable v-if="tabActive===2" :tableList="tableData"></KafkaMonitorTable>
|
|
|
+ <KafkaMonitorTable
|
|
|
+ ref="kafka"
|
|
|
+ v-if="tabActive === 2"
|
|
|
+ :tableList="tableData"
|
|
|
+ :total='tableTotal'
|
|
|
+ @changePage2="changePage2"
|
|
|
+ @changeSize2="changeSize2"
|
|
|
+ @handleSelectionChange="handleSelectionChange"
|
|
|
+ ></KafkaMonitorTable>
|
|
|
<!-- 作业监控 -->
|
|
|
- <JobMonitorTable v-if="tabActive===3" :tableList="tableData"></JobMonitorTable>
|
|
|
+ <JobMonitorTable
|
|
|
+ ref="job"
|
|
|
+ v-if="tabActive === 3"
|
|
|
+ :tableList="tableData"
|
|
|
+ :total='tableTotal'
|
|
|
+ @changePage3="changePage3"
|
|
|
+ @changeSize3="changeSize3"
|
|
|
+ @handleSelectionChange="handleSelectionChange"
|
|
|
+ ></JobMonitorTable>
|
|
|
|
|
|
<!-- 库存容量监控 -->
|
|
|
- <InventoryCapacityMonitorTable v-if="tabActive===4" :tableList="tableData"></InventoryCapacityMonitorTable>
|
|
|
+ <InventoryCapacityMonitorTable
|
|
|
+ ref="inventoryCapacity"
|
|
|
+ v-if="tabActive === 4"
|
|
|
+ :tableList="tableData"
|
|
|
+ :total='tableTotal'
|
|
|
+ @changePage4="changePage4"
|
|
|
+ @changeSize4="changeSize4"
|
|
|
+ @handleSelectionChange="handleSelectionChange"
|
|
|
+ ></InventoryCapacityMonitorTable>
|
|
|
|
|
|
<!-- 心跳监测 -->
|
|
|
- <HeartbeatMonitoringTable v-if="tabActive===6" :tableList="tableData"></HeartbeatMonitoringTable>
|
|
|
+ <HeartbeatMonitoringTable
|
|
|
+ ref="heartbeat"
|
|
|
+ v-if="tabActive === 6"
|
|
|
+ :tableList="tableData"
|
|
|
+ :total='tableTotal'
|
|
|
+ @changePage6="changePage6"
|
|
|
+ @changeSize6="changeSize6"
|
|
|
+ @handleSelectionChange="handleSelectionChange"
|
|
|
+ ></HeartbeatMonitoringTable>
|
|
|
|
|
|
<!-- 监控可视化 -->
|
|
|
<!-- <VisualMonitor v-if="tabActive===8" :tableList="tableData"></VisualMonitor> -->
|
|
|
-
|
|
|
+
|
|
|
<!-- <MyTable
|
|
|
:tableData="tableData"
|
|
|
:formData="formData"
|
|
@@ -67,13 +110,12 @@
|
|
|
</template>
|
|
|
<script>
|
|
|
import {
|
|
|
- getTabAccessConfigList,
|
|
|
- addTabAccessConfig,
|
|
|
- updateTabAccessConfigById,
|
|
|
- viewTabAccessConfigById,
|
|
|
- delTabAccessConfigById,
|
|
|
- exportTabAccessConfig
|
|
|
-} from "@/api/unified-access/access-config";
|
|
|
+ getTabLog2List,
|
|
|
+ getKafkaLogList,
|
|
|
+ getDataLogList,
|
|
|
+ getSpace,
|
|
|
+ getTabIpResultList,
|
|
|
+} from "@/api/unified-resources/link-monitor/link-monitor-center.js";
|
|
|
import MyHeader from "@/components/MyHeader";
|
|
|
import MyTable from "@/components/MyTable";
|
|
|
import MyPagination from "@/components/MyPagination";
|
|
@@ -98,7 +140,7 @@ export default {
|
|
|
JobMonitorTable,
|
|
|
InventoryCapacityMonitorTable,
|
|
|
HeartbeatMonitoringTable,
|
|
|
- VisualMonitor
|
|
|
+ VisualMonitor,
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
@@ -114,7 +156,7 @@ export default {
|
|
|
type: "input",
|
|
|
showInTable: true,
|
|
|
value: "",
|
|
|
- width: ""
|
|
|
+ width: "",
|
|
|
},
|
|
|
{
|
|
|
label: "监控询问时间",
|
|
@@ -122,7 +164,7 @@ export default {
|
|
|
type: "input",
|
|
|
showInTable: true,
|
|
|
value: "",
|
|
|
- width: ""
|
|
|
+ width: "",
|
|
|
},
|
|
|
{
|
|
|
label: "状态",
|
|
@@ -130,7 +172,7 @@ export default {
|
|
|
type: "input",
|
|
|
showInTable: true,
|
|
|
value: "",
|
|
|
- width: ""
|
|
|
+ width: "",
|
|
|
},
|
|
|
{
|
|
|
label: "最近响应时间",
|
|
@@ -138,7 +180,7 @@ export default {
|
|
|
type: "input",
|
|
|
showInTable: true,
|
|
|
value: "",
|
|
|
- width: ""
|
|
|
+ width: "",
|
|
|
},
|
|
|
{
|
|
|
label: "最近监测结果",
|
|
@@ -146,8 +188,8 @@ export default {
|
|
|
type: "input",
|
|
|
showInTable: true,
|
|
|
value: "",
|
|
|
- width: ""
|
|
|
- }
|
|
|
+ width: "",
|
|
|
+ },
|
|
|
],
|
|
|
tableTotal: 0,
|
|
|
pageSize: 10,
|
|
@@ -158,38 +200,38 @@ export default {
|
|
|
tableHeaderTitle: "项目列表",
|
|
|
tabActive: 1,
|
|
|
tabs: [
|
|
|
- { label: "接口箭头监控", value: 1, active: true },
|
|
|
+ { label: "接口监听监控", value: 1, active: true },
|
|
|
{
|
|
|
label: "kafka消费生产监控",
|
|
|
value: 2,
|
|
|
- active: false
|
|
|
+ active: false,
|
|
|
},
|
|
|
{ label: "作业监控", value: 3, active: false },
|
|
|
{ label: "库存容量监控", value: 4, active: false },
|
|
|
{ label: "监测预警", value: 5, active: false },
|
|
|
{ label: "心跳监控", value: 6, active: false },
|
|
|
{ label: "数据对账", value: 7, active: false },
|
|
|
- { label: "监控可视化", value: 8, active: false }
|
|
|
+ { label: "监控可视化", value: 8, active: false },
|
|
|
],
|
|
|
buttons: [
|
|
|
+ // {
|
|
|
+ // label: "启用",
|
|
|
+ // type: "primary",
|
|
|
+ // methodName: "action1",
|
|
|
+ // icon: "el-icon-video-play",
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // label: "停用",
|
|
|
+ // type: "primary",
|
|
|
+ // methodName: "action2",
|
|
|
+ // icon: "el-icon-video-pause",
|
|
|
+ // },
|
|
|
{
|
|
|
- label: "启用",
|
|
|
+ label: "导出",
|
|
|
type: "primary",
|
|
|
methodName: "action1",
|
|
|
- icon: "el-icon-video-play"
|
|
|
- },
|
|
|
- {
|
|
|
- label: "停用",
|
|
|
- type: "primary",
|
|
|
- methodName: "action2",
|
|
|
- icon: "el-icon-video-pause"
|
|
|
+ icon: "el-icon-upload",
|
|
|
},
|
|
|
- {
|
|
|
- label: "导出",
|
|
|
- type: "primary",
|
|
|
- methodName: "action3",
|
|
|
- icon: "el-icon-upload"
|
|
|
- }
|
|
|
],
|
|
|
|
|
|
headerFormData: [
|
|
@@ -198,7 +240,7 @@ export default {
|
|
|
fieldName: "dataManner",
|
|
|
type: "input",
|
|
|
value: "",
|
|
|
- placeholder: "请输入关键字"
|
|
|
+ placeholder: "请输入关键字",
|
|
|
// isRequired: true,
|
|
|
},
|
|
|
{
|
|
@@ -210,9 +252,9 @@ export default {
|
|
|
isRequired: false,
|
|
|
options: [
|
|
|
{ value: 1, label: "正常" },
|
|
|
- { value: 0, label: "停用" }
|
|
|
- ]
|
|
|
- }
|
|
|
+ { value: 0, label: "停用" },
|
|
|
+ ],
|
|
|
+ },
|
|
|
// {
|
|
|
// label: "用户状态",
|
|
|
// fieldName: "gender",
|
|
@@ -233,7 +275,7 @@ export default {
|
|
|
// placeholder: "请选择生日",
|
|
|
// isRequired: false,
|
|
|
// },
|
|
|
- ]
|
|
|
+ ],
|
|
|
};
|
|
|
},
|
|
|
|
|
@@ -247,12 +289,26 @@ export default {
|
|
|
handleNodeClick() {},
|
|
|
// 列表头部
|
|
|
handleTabClick(tab) {
|
|
|
- this.tabs.forEach(item => {
|
|
|
+ this.tabs.forEach((item) => {
|
|
|
if (item.label === tab.label) {
|
|
|
item.active = true;
|
|
|
this.tabActive = item.value;
|
|
|
- if(item.value===8){
|
|
|
- this.$router.push()
|
|
|
+ if (item.value === 1) {
|
|
|
+ this.getList();
|
|
|
+ } else if (item.value === 2) {
|
|
|
+ this.getList2();
|
|
|
+ } else if (item.value === 3) {
|
|
|
+ this.getList3();
|
|
|
+ } else if (item.value === 4) {
|
|
|
+ this.getList4();
|
|
|
+ } else if (item.value === 5) {
|
|
|
+ this.getList5();
|
|
|
+ } else if (item.value === 6) {
|
|
|
+ this.getList6();
|
|
|
+ }
|
|
|
+
|
|
|
+ if (item.value === 8) {
|
|
|
+ this.$router.push();
|
|
|
}
|
|
|
} else {
|
|
|
item.active = false;
|
|
@@ -265,26 +321,17 @@ export default {
|
|
|
|
|
|
switch (methodName) {
|
|
|
case "action1":
|
|
|
- // 新增
|
|
|
- this.rowObj = {};
|
|
|
- this.title = "新增";
|
|
|
- this.showDialog = true;
|
|
|
- break;
|
|
|
- case "action2":
|
|
|
// 导出
|
|
|
- if (this.selectedRows.length > 0) {
|
|
|
- // exportTabAccessConfig().then((res) => {
|
|
|
- // if (+res.code === 200) {
|
|
|
- // }
|
|
|
- // });
|
|
|
+ if (this.tabActive === 1) {
|
|
|
+ if ( this.$refs.interface.selectedRows.length > 0) {
|
|
|
let ids = [];
|
|
|
- ids = this.selectedRows.map(item => item.id);
|
|
|
+ ids = this.selectedRows.map((item) => item.id);
|
|
|
this.download(
|
|
|
- "/web/tab-access-config/export",
|
|
|
+ "/web/tab-log2/export",
|
|
|
{
|
|
|
- ids
|
|
|
+ ids,
|
|
|
},
|
|
|
- `统一接入配置_${new Date().getTime()}.xlsx`
|
|
|
+ `接口监听监控_${new Date().getTime()}.xlsx`
|
|
|
);
|
|
|
} else {
|
|
|
this.$confirm("请选择列表项?", "提示", {
|
|
@@ -293,11 +340,23 @@ export default {
|
|
|
showCancelButton: false,
|
|
|
showConfirmButton: false,
|
|
|
type: "warning",
|
|
|
- center: true
|
|
|
+ center: true,
|
|
|
})
|
|
|
.then(() => {})
|
|
|
.catch(() => {});
|
|
|
}
|
|
|
+ } else if (this.tabActive === 2) {
|
|
|
+ this.getList2();
|
|
|
+ } else if (this.tabActive === 3) {
|
|
|
+ this.getList3();
|
|
|
+ } else if (this.tabActive === 4) {
|
|
|
+ this.getList4();
|
|
|
+ } else if (this.tabActive === 5) {
|
|
|
+ this.getList5();
|
|
|
+ } else if (this.tabActive === 6) {
|
|
|
+ this.getList6();
|
|
|
+ }
|
|
|
+
|
|
|
break;
|
|
|
|
|
|
default:
|
|
@@ -310,25 +369,80 @@ export default {
|
|
|
},
|
|
|
|
|
|
getList() {
|
|
|
- getTabAccessConfigList({
|
|
|
+ getTabLog2List({
|
|
|
pageNum: this.currentPage,
|
|
|
pageSize: this.pageSize,
|
|
|
- ...this.searchForm
|
|
|
- }).then(res => {
|
|
|
+ ...this.searchForm,
|
|
|
+ }).then((res) => {
|
|
|
if (+res.code === 200) {
|
|
|
this.tableData = res.rows;
|
|
|
this.tableTotal = +res.total;
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
- // 列表分页
|
|
|
- pagi_changePage(page) {
|
|
|
- this.currentPage = page;
|
|
|
- this.getList();
|
|
|
+
|
|
|
+ getList2() {
|
|
|
+ getKafkaLogList({
|
|
|
+ pageNum: this.currentPage,
|
|
|
+ pageSize: this.pageSize,
|
|
|
+ ...this.searchForm,
|
|
|
+ }).then((res) => {
|
|
|
+ if (+res.code === 200) {
|
|
|
+ this.tableData = res.rows;
|
|
|
+ this.tableTotal = +res.total;
|
|
|
+ }
|
|
|
+ });
|
|
|
},
|
|
|
- pagi_changeSize(size) {
|
|
|
- this.pageSize = size;
|
|
|
- this.getList();
|
|
|
+ getList3() {
|
|
|
+ getDataLogList({
|
|
|
+ pageNum: this.currentPage,
|
|
|
+ pageSize: this.pageSize,
|
|
|
+ ...this.searchForm,
|
|
|
+ }).then((res) => {
|
|
|
+ if (+res.code === 200) {
|
|
|
+ this.tableData = res.rows;
|
|
|
+ this.tableTotal = +res.total;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+
|
|
|
+ getList4() {
|
|
|
+ getSpace({
|
|
|
+ pageNum: this.currentPage,
|
|
|
+ pageSize: this.pageSize,
|
|
|
+ ...this.searchForm,
|
|
|
+ }).then((res) => {
|
|
|
+ if (+res.code === 200) {
|
|
|
+ this.tableData = res.rows;
|
|
|
+ this.tableTotal = +res.total;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+
|
|
|
+ getList5() {
|
|
|
+ // getSpace({
|
|
|
+ // pageNum: this.currentPage,
|
|
|
+ // pageSize: this.pageSize,
|
|
|
+ // ...this.searchForm
|
|
|
+ // }).then(res => {
|
|
|
+ // if (+res.code === 200) {
|
|
|
+ // this.tableData = res.rows;
|
|
|
+ // this.tableTotal = +res.total;
|
|
|
+ // }
|
|
|
+ // });
|
|
|
+ },
|
|
|
+
|
|
|
+ getList6() {
|
|
|
+ getTabIpResultList({
|
|
|
+ pageNum: this.currentPage,
|
|
|
+ pageSize: this.pageSize,
|
|
|
+ ...this.searchForm,
|
|
|
+ }).then((res) => {
|
|
|
+ if (+res.code === 200) {
|
|
|
+ this.tableData = res.rows;
|
|
|
+ this.tableTotal = +res.total;
|
|
|
+ }
|
|
|
+ });
|
|
|
},
|
|
|
|
|
|
// 弹窗
|
|
@@ -360,11 +474,11 @@ export default {
|
|
|
let pForm = {};
|
|
|
pForm = { ...row };
|
|
|
pForm.status = 1;
|
|
|
- updateTabAccessConfigById({ ...pForm }).then(res => {
|
|
|
+ updateTabAccessConfigById({ ...pForm }).then((res) => {
|
|
|
if (+res.code === 200) {
|
|
|
this.$message({
|
|
|
message: res.msg,
|
|
|
- type: "success"
|
|
|
+ type: "success",
|
|
|
});
|
|
|
this.getList();
|
|
|
} else {
|
|
@@ -376,11 +490,11 @@ export default {
|
|
|
let pForm = {};
|
|
|
pForm = { ...row };
|
|
|
pForm.status = 0;
|
|
|
- updateTabAccessConfigById({ ...pForm }).then(res => {
|
|
|
+ updateTabAccessConfigById({ ...pForm }).then((res) => {
|
|
|
if (+res.code === 200) {
|
|
|
this.$message({
|
|
|
message: res.msg,
|
|
|
- type: "success"
|
|
|
+ type: "success",
|
|
|
});
|
|
|
this.getList();
|
|
|
} else {
|
|
@@ -393,14 +507,14 @@ export default {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
|
center: true,
|
|
|
- type: "warning"
|
|
|
+ type: "warning",
|
|
|
})
|
|
|
.then(() => {
|
|
|
- delTabAccessConfigById(row.id).then(res => {
|
|
|
+ delTabAccessConfigById(row.id).then((res) => {
|
|
|
if (+res.code === 200) {
|
|
|
this.$message({
|
|
|
message: res.msg,
|
|
|
- type: "success"
|
|
|
+ type: "success",
|
|
|
});
|
|
|
this.getList();
|
|
|
} else {
|
|
@@ -411,17 +525,64 @@ export default {
|
|
|
.catch(() => {
|
|
|
this.$message({
|
|
|
type: "info",
|
|
|
- message: "已取消删除"
|
|
|
+ message: "已取消删除",
|
|
|
});
|
|
|
});
|
|
|
console.log(row, "row");
|
|
|
- }
|
|
|
+ },
|
|
|
+ changePage1(page) {
|
|
|
+ this.currentPage = page;
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+ changeSize1(size) {
|
|
|
+ this.pageSize = size;
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+ changePage2(page) {
|
|
|
+ this.currentPage = page;
|
|
|
+ this.getList2();
|
|
|
+ },
|
|
|
+ changeSize2(size) {
|
|
|
+ this.pageSize = size;
|
|
|
+ this.getList2();
|
|
|
+ },
|
|
|
+ changePage3(page) {
|
|
|
+ this.currentPage = page;
|
|
|
+ this.getList3();
|
|
|
+ },
|
|
|
+ changeSize3(size) {
|
|
|
+ this.pageSize = size;
|
|
|
+ this.getList3();
|
|
|
+ },
|
|
|
+ changePage4(page) {
|
|
|
+ this.currentPage = page;
|
|
|
+ this.getList4();
|
|
|
+ },
|
|
|
+ changeSize4(size) {
|
|
|
+ this.pageSize = size;
|
|
|
+ this.getList4();
|
|
|
+ },
|
|
|
+ changePage5(page) {
|
|
|
+ this.currentPage = page;
|
|
|
+ this.getList5();
|
|
|
+ },
|
|
|
+ changeSize5(size) {
|
|
|
+ this.pageSize = size;
|
|
|
+ this.getList5();
|
|
|
+ },
|
|
|
+ changePage6(page) {
|
|
|
+ this.currentPage = page;
|
|
|
+ this.getList6();
|
|
|
+ },
|
|
|
+ changeSize6(size) {
|
|
|
+ this.pageSize = size;
|
|
|
+ this.getList6();
|
|
|
+ },
|
|
|
},
|
|
|
created() {},
|
|
|
mounted() {
|
|
|
- console.log("接入配置");
|
|
|
this.getList();
|
|
|
- }
|
|
|
+ },
|
|
|
};
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
@@ -434,4 +595,4 @@ export default {
|
|
|
font-weight: 700;
|
|
|
color: #1e80e0;
|
|
|
}
|
|
|
-</style>
|
|
|
+</style>
|