2021-04-13 20:33:12 +08:00
|
|
|
<template>
|
|
|
|
|
<el-table
|
|
|
|
|
id="alertRuleTable"
|
|
|
|
|
ref="dataTable"
|
|
|
|
|
:data="tableData"
|
|
|
|
|
:height="height"
|
2021-05-25 16:13:59 +08:00
|
|
|
tooltip-effect="light"
|
2021-04-13 20:33:12 +08:00
|
|
|
border
|
2022-03-04 13:59:25 +08:00
|
|
|
:default-sort="orderBy"
|
2021-04-13 20:33:12 +08:00
|
|
|
@header-dragend="dragend"
|
|
|
|
|
@sort-change="tableDataSort"
|
|
|
|
|
@selection-change="selectionChange"
|
2021-05-25 15:37:33 +08:00
|
|
|
@row-dblclick="(row)=>{queryMessage(row)}"
|
2021-04-13 20:33:12 +08:00
|
|
|
>
|
|
|
|
|
<el-table-column
|
|
|
|
|
:resizable="false"
|
|
|
|
|
align="center"
|
|
|
|
|
type="selection"
|
|
|
|
|
width="55">
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
v-for="(item, index) in customTableTitle"
|
|
|
|
|
v-if="item.show"
|
|
|
|
|
:key="`col-${index}`"
|
|
|
|
|
:fixed="item.fixed"
|
|
|
|
|
:label="item.label"
|
|
|
|
|
:min-width="`${item.minWidth}`"
|
|
|
|
|
:prop="item.prop"
|
|
|
|
|
:resizable="true"
|
|
|
|
|
:sort-orders="['ascending', 'descending']"
|
2021-05-07 19:10:28 +08:00
|
|
|
:sortable="item.sortable"
|
2021-04-13 20:33:12 +08:00
|
|
|
:width="`${item.width}`"
|
2021-05-25 16:13:59 +08:00
|
|
|
:show-overflow-tooltip="item.prop === 'description'"
|
2021-04-13 20:33:12 +08:00
|
|
|
class="data-column"
|
|
|
|
|
>
|
|
|
|
|
<template slot="header">
|
2021-05-25 17:58:38 +08:00
|
|
|
<span class="data-column__span">{{item.label}}</span>
|
2021-04-13 20:33:12 +08:00
|
|
|
<div class="col-resize-area"></div>
|
|
|
|
|
</template>
|
|
|
|
|
<template slot-scope="scope" :column="item">
|
2021-05-07 21:27:47 +08:00
|
|
|
<span v-if="item.prop === 'severity'&&scope.row[item.prop]" class="severity">
|
|
|
|
|
<i class="nz-icon nz-icon-circle" :style="{color:scope.row[item.prop].color,'font-size':'12px','margin-right':'5px'}"></i> {{scope.row[item.prop].name}}
|
2021-04-13 20:33:12 +08:00
|
|
|
</span>
|
|
|
|
|
<template v-else-if="item.prop === 'alertNum'">
|
2022-02-25 14:31:36 +08:00
|
|
|
<span style="cursor: pointer" @click="queryMessage(scope.row)">
|
|
|
|
|
<i :class="scope.row.alertNum ? 'red' : 'green'" class="nz-icon nz-icon-overview-alert vertical-align-top;" @mouseenter="tooltipHover(scope.row,true, $event)" @mouseleave="tooltipHover(scope.row,false, $event)"></i>
|
|
|
|
|
<div v-if="scope.row.alertNumtooltipShow" class="alert-days-info-tooltip" :style="{left: scope.row.left + 'px',top:scope.row.top + 'px'}">
|
2022-06-21 18:14:21 +08:00
|
|
|
<div class="tooltip-title">{{$t('project.topology.alert')}}({{$t('overall.active')}})</div>
|
2022-02-25 14:31:36 +08:00
|
|
|
<div class="severity-info" style='justify-content: space-between'>
|
|
|
|
|
<div class="severity-name">{{$t('overall.result.total')}}</div>
|
|
|
|
|
<div class="severity-value">{{scope.row.alertNum}}</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<alertDaysInfo
|
|
|
|
|
v-show="!scope.row.trendLoading"
|
|
|
|
|
:alertDaysData="scope.row.alertDaysData"
|
|
|
|
|
/>
|
2021-05-08 11:25:05 +08:00
|
|
|
</span>
|
2021-04-13 20:33:12 +08:00
|
|
|
</template>
|
2021-09-03 16:37:11 +08:00
|
|
|
<template v-else-if="item.prop === 'type'">
|
2022-06-21 18:14:21 +08:00
|
|
|
<span v-if="scope.row[item.prop] === 1">{{ $t('overall.metric') }}</span>
|
2021-09-03 16:37:11 +08:00
|
|
|
<span v-else-if="scope.row[item.prop] === 2">{{ $t('overall.logs') }}</span>
|
2021-09-06 18:58:35 +08:00
|
|
|
<span v-else-if="scope.row[item.prop] === 3">SNMP trap</span>
|
2021-09-03 16:37:11 +08:00
|
|
|
<span v-else>-</span>
|
|
|
|
|
</template>
|
2021-04-13 20:33:12 +08:00
|
|
|
<template v-else-if="item.prop === 'threshold'">{{formatThreshold(scope.row[item.prop], scope.row.unit)}}</template>
|
2021-05-11 20:47:22 +08:00
|
|
|
<template v-else-if="item.prop === 'method'">
|
|
|
|
|
<span v-if="scope.row.methods">{{scope.row.methods.map(label=>label.name).join(',')}}</span>
|
|
|
|
|
<span v-else>-</span>
|
|
|
|
|
</template>
|
2021-04-13 20:33:12 +08:00
|
|
|
<template v-else-if="item.prop === 'receivers'">
|
2021-09-24 14:29:19 +08:00
|
|
|
<el-tag v-for="(user, index) in scope.row[item.prop]" v-if="user&&user.username" :key="index" class="alert-rule-tag" effect="dark" size="mini" :title="user.name">{{user.name}} </el-tag>
|
2021-04-13 20:33:12 +08:00
|
|
|
</template>
|
2021-08-30 15:02:44 +08:00
|
|
|
<template v-else-if="item.prop === 'state'">
|
2021-09-08 17:15:59 +08:00
|
|
|
<el-popover
|
|
|
|
|
placement="right"
|
|
|
|
|
trigger="hover"
|
|
|
|
|
:open-delay="300"
|
2021-10-26 17:47:49 +08:00
|
|
|
:width="215"
|
2022-01-07 14:05:18 +08:00
|
|
|
popper-class="schedEnableTitle nz-tooltip-bac"
|
2021-09-08 17:15:59 +08:00
|
|
|
>
|
|
|
|
|
<div>
|
2021-09-10 11:00:37 +08:00
|
|
|
<div class="margin-b-10">
|
2021-10-26 17:47:49 +08:00
|
|
|
{{$t('alert.config.schedEnable')}}
|
2021-09-10 11:00:37 +08:00
|
|
|
<el-switch
|
|
|
|
|
style="margin-left: 14px"
|
|
|
|
|
slot="reference"
|
|
|
|
|
v-model="scope.row.schedEnable"
|
|
|
|
|
:active-value="1"
|
|
|
|
|
:inactive-value="0"
|
|
|
|
|
@change="(val)=>{$emit('statusChange', scope.row)}"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
2021-09-08 17:49:32 +08:00
|
|
|
<div>
|
2021-10-26 17:47:49 +08:00
|
|
|
<div class="margin-b-10">{{$t('alert.config.schedDays')}}</div>
|
2021-09-10 11:00:37 +08:00
|
|
|
<div class="margin-b-5" style="display: flex">
|
2021-10-26 17:47:49 +08:00
|
|
|
<i class="nz-icon nz-icon-a-rilizhou" style="color: #FA901C;"/>
|
2021-09-10 11:00:37 +08:00
|
|
|
<span v-html="weekStr(scope.row.schedDays)"></span>
|
|
|
|
|
</div>
|
2021-10-26 17:47:49 +08:00
|
|
|
<div ><i class="nz-icon nz-icon-dingshishijian" style="color: #FA901C;"/>{{scope.row.schedStime+' - '+scope.row.schedEtime}}</div>
|
2021-09-08 17:49:32 +08:00
|
|
|
</div>
|
2021-09-08 17:15:59 +08:00
|
|
|
</div>
|
2021-10-22 17:47:42 +08:00
|
|
|
<!-- <el-switch-->
|
|
|
|
|
<!-- slot="reference"-->
|
|
|
|
|
<!-- v-model="scope.row.state"-->
|
|
|
|
|
<!-- :disabled="!hasButton('dc_edit') || !hasButton('dc_edit') || !!Number(scope.row.buildIn)"-->
|
|
|
|
|
<!-- active-color="#ee9d3f"-->
|
|
|
|
|
<!-- :active-value="1"-->
|
|
|
|
|
<!-- :inactive-value="0"-->
|
|
|
|
|
<!-- @change="(val)=>{$emit('statusChange', scope.row)}"-->
|
|
|
|
|
<!-- />-->
|
|
|
|
|
<div slot="reference" v-if="scope.row[item.prop] === 1">
|
|
|
|
|
<div class="active-icon green-bg inline-block"></div>
|
|
|
|
|
{{ $t('overall.enabled') }}
|
|
|
|
|
</div>
|
|
|
|
|
<div slot="reference" v-else-if="scope.row[item.prop] === 0">
|
2021-10-22 19:39:49 +08:00
|
|
|
<div class="active-icon gray-bg inline-block"></div>
|
2021-10-22 17:47:42 +08:00
|
|
|
{{ $t('overall.disabled') }}
|
|
|
|
|
</div>
|
2021-09-08 17:15:59 +08:00
|
|
|
</el-popover>
|
2021-08-30 15:02:44 +08:00
|
|
|
</template>
|
2022-06-23 13:40:20 +08:00
|
|
|
<template v-else-if="item.prop === 'name'">
|
2022-07-05 14:06:31 +08:00
|
|
|
<div class="document-copy-block">
|
2022-06-23 13:40:20 +08:00
|
|
|
<span class="document-copy-text">{{scope.row.name ? scope.row.name : '-'}}</span>
|
2022-07-05 14:06:31 +08:00
|
|
|
<i class="nz-icon nz-icon-override" style="visibility: hidden" @click="onCopy(scope.row.name)" :title="$t('overall.copyText')"></i>
|
2022-06-23 13:40:20 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-else-if="item.prop === 'expr'">
|
2022-07-05 14:06:31 +08:00
|
|
|
<div class="document-copy-block">
|
2022-06-23 13:40:20 +08:00
|
|
|
<span class="document-copy-text">{{scope.row[item.prop] ? scope.row[item.prop] : '-'}}</span>
|
2022-07-05 14:06:31 +08:00
|
|
|
<i class="nz-icon nz-icon-override" style="visibility: hidden" @click="onCopy(scope.row[item.prop])" :title="$t('overall.copyText')"></i>
|
2022-06-23 13:40:20 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
2022-01-17 16:32:00 +08:00
|
|
|
<span v-else-if="item.prop === 'id'" :id="'globalSearch' + scope.row.id">{{scope.row[item.prop]}}</span>
|
2021-04-13 20:33:12 +08:00
|
|
|
<span v-else-if="scope.row[item.prop]">{{scope.row[item.prop]}}</span>
|
|
|
|
|
<template v-else>-</template>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column
|
|
|
|
|
:resizable="false"
|
|
|
|
|
:width="operationWidth"
|
|
|
|
|
fixed="right">
|
|
|
|
|
<div slot="header" class="table-operation-title">{{$t('overall.option')}}</div>
|
|
|
|
|
<div slot-scope="scope" class="table-operation-items">
|
2022-07-01 09:39:20 +08:00
|
|
|
<button class="table-operation-item" @click="queryMessage(scope.row)" :title="$t('overall.view')"><i class="nz-icon nz-icon-view1"></i></button>
|
2021-11-10 18:09:05 +08:00
|
|
|
<el-dropdown size="medium" v-has="['alertRule_edit','alertRule_delete', 'alertSilence_add']" trigger="click" @command="tableOperation">
|
2022-07-01 09:39:20 +08:00
|
|
|
<div class="table-operation-item table-operation-item--more" :title="$t('overall.moreOperations')">
|
2021-05-27 13:53:42 +08:00
|
|
|
<i class="nz-icon nz-icon-more3"></i>
|
2021-04-13 20:33:12 +08:00
|
|
|
</div>
|
2021-10-29 12:02:34 +08:00
|
|
|
<el-dropdown-menu slot="dropdown" class="right-box-select-top right-public-box-dropdown-top">
|
2021-08-30 15:02:44 +08:00
|
|
|
<el-dropdown-item v-if="!scope.row.buildIn" v-has="'alertRule_edit'" :command="['edit', scope.row]"><i class="nz-icon nz-icon-edit"></i><span class="operation-dropdown-text">{{$t('overall.edit')}}</span></el-dropdown-item>
|
|
|
|
|
<el-dropdown-item v-if="!scope.row.buildIn" v-has="'alertRule_delete'" :command="['delete', scope.row]"><i class="nz-icon nz-icon-delete"></i><span class="operation-dropdown-text">{{$t('overall.delete')}}</span></el-dropdown-item>
|
2021-08-31 10:08:14 +08:00
|
|
|
<el-dropdown-item v-if="!scope.row.buildIn" v-has="'alertRule_edit'" :command="['copy', scope.row]"><i class="nz-icon nz-icon-override"></i><span class="operation-dropdown-text">{{$t('overall.duplicate')}}</span></el-dropdown-item>
|
2021-06-01 14:26:09 +08:00
|
|
|
<el-dropdown-item v-has="'alertSilence_add'" :command="['fastSilence', scope.row, 'alertRule']"><i class="nz-icon nz-icon-fast-silence"></i><span class="operation-dropdown-text">{{$t('overall.silenceAlert')}}</span></el-dropdown-item>
|
2021-04-13 20:33:12 +08:00
|
|
|
</el-dropdown-menu>
|
|
|
|
|
</el-dropdown>
|
|
|
|
|
</div>
|
|
|
|
|
</el-table-column>
|
2021-10-22 19:39:49 +08:00
|
|
|
<template slot="empty">
|
2021-10-25 14:45:28 +08:00
|
|
|
<div v-if="!loading" class="table-no-data">
|
2021-10-22 17:47:42 +08:00
|
|
|
<svg class="icon" aria-hidden="true">
|
|
|
|
|
<use xlink:href="#nz-icon-no-data-list"></use>
|
|
|
|
|
</svg>
|
2021-10-28 17:53:27 +08:00
|
|
|
<div class="table-no-data__title">No results found</div>
|
2021-10-22 17:47:42 +08:00
|
|
|
</div>
|
2021-10-22 19:39:49 +08:00
|
|
|
<div v-else> </div>
|
2021-10-22 17:47:42 +08:00
|
|
|
</template>
|
2021-04-13 20:33:12 +08:00
|
|
|
</el-table>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import table from '@/components/common/mixin/table'
|
2022-04-12 10:30:33 +08:00
|
|
|
import chartDataFormat from '@/components/chart/chartDataFormat'
|
2021-04-13 20:33:12 +08:00
|
|
|
export default {
|
2021-06-17 11:24:38 +08:00
|
|
|
name: 'alertRuleTable',
|
2021-04-13 20:33:12 +08:00
|
|
|
mixins: [table],
|
2021-10-22 17:47:42 +08:00
|
|
|
props: {
|
|
|
|
|
loading: Boolean
|
|
|
|
|
},
|
2021-04-13 20:33:12 +08:00
|
|
|
data () {
|
|
|
|
|
return {
|
2022-02-25 14:31:36 +08:00
|
|
|
needAlertDaysData: true,
|
|
|
|
|
trendKey: 'ruleId',
|
2021-04-13 20:33:12 +08:00
|
|
|
tableTitle: [
|
|
|
|
|
{
|
|
|
|
|
label: 'ID',
|
|
|
|
|
prop: 'id',
|
|
|
|
|
show: true,
|
2021-05-07 19:10:28 +08:00
|
|
|
width: 80,
|
2021-05-07 21:27:47 +08:00
|
|
|
sortable: 'custom'
|
2021-04-13 20:33:12 +08:00
|
|
|
}, {
|
|
|
|
|
label: this.$t('alert.alertName'),
|
|
|
|
|
prop: 'name',
|
2021-05-07 19:10:28 +08:00
|
|
|
show: true,
|
2021-07-22 10:00:29 +08:00
|
|
|
minWidth: 200,
|
2021-05-07 21:27:47 +08:00
|
|
|
sortable: 'custom'
|
2021-09-03 16:37:11 +08:00
|
|
|
}, {
|
|
|
|
|
label: this.$t('overall.type'),
|
|
|
|
|
prop: 'type',
|
|
|
|
|
show: true,
|
|
|
|
|
minWidth: 200,
|
|
|
|
|
sortable: 'custom'
|
|
|
|
|
}, {
|
2021-04-13 20:33:12 +08:00
|
|
|
label: this.$t('alert.config.expr'),
|
|
|
|
|
prop: 'expr',
|
2021-07-22 10:00:29 +08:00
|
|
|
minWidth: 200,
|
2021-04-13 20:33:12 +08:00
|
|
|
show: true
|
|
|
|
|
}, {
|
|
|
|
|
label: this.$t('alert.config.operator'),
|
|
|
|
|
prop: 'operator',
|
2021-07-22 10:00:29 +08:00
|
|
|
minWidth: 100,
|
2021-04-13 20:33:12 +08:00
|
|
|
show: true
|
|
|
|
|
}, {
|
|
|
|
|
label: this.$t('alert.config.threshold'),
|
|
|
|
|
prop: 'threshold',
|
2021-07-22 10:00:29 +08:00
|
|
|
minWidth: 100,
|
2021-04-13 20:33:12 +08:00
|
|
|
show: true
|
|
|
|
|
}, {
|
|
|
|
|
label: this.$t('alert.config.for'),
|
|
|
|
|
prop: 'last',
|
2021-07-22 10:00:29 +08:00
|
|
|
minWidth: 100,
|
2021-04-13 20:33:12 +08:00
|
|
|
show: true
|
|
|
|
|
}, {
|
|
|
|
|
label: this.$t('alert.severity'),
|
|
|
|
|
prop: 'severity',
|
2021-05-07 19:10:28 +08:00
|
|
|
show: true,
|
2021-07-22 10:00:29 +08:00
|
|
|
minWidth: 100,
|
2021-05-07 21:27:47 +08:00
|
|
|
sortable: 'custom'
|
2021-04-13 20:33:12 +08:00
|
|
|
}, {
|
|
|
|
|
label: this.$t('alert.summary'),
|
|
|
|
|
prop: 'summary',
|
2021-07-22 10:00:29 +08:00
|
|
|
minWidth: 200,
|
2021-04-13 20:33:12 +08:00
|
|
|
show: true
|
|
|
|
|
}, {
|
2021-06-07 18:28:07 +08:00
|
|
|
label: this.$t('overall.remark'),
|
2021-04-13 20:33:12 +08:00
|
|
|
prop: 'description',
|
2021-07-22 10:00:29 +08:00
|
|
|
minWidth: 200,
|
2021-04-13 20:33:12 +08:00
|
|
|
show: true
|
|
|
|
|
}, {
|
2021-05-11 20:47:22 +08:00
|
|
|
label: this.$t('alert.alert'),
|
2021-04-13 20:33:12 +08:00
|
|
|
prop: 'alertNum',
|
|
|
|
|
show: true,
|
2022-03-28 12:30:51 +08:00
|
|
|
width: 120,
|
2021-05-07 21:27:47 +08:00
|
|
|
sortable: 'custom'
|
2021-04-13 20:33:12 +08:00
|
|
|
}, {
|
2022-06-23 16:39:20 +08:00
|
|
|
label: this.$t('alert.receiver'),
|
2021-04-13 20:33:12 +08:00
|
|
|
prop: 'receivers',
|
2021-08-02 15:41:43 +08:00
|
|
|
show: false,
|
|
|
|
|
minWidth: 100
|
2021-05-11 19:43:59 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
label: this.$t('alert.notify'),
|
|
|
|
|
prop: 'method',
|
2021-08-02 15:41:43 +08:00
|
|
|
show: false,
|
|
|
|
|
minWidth: 100
|
2021-08-30 15:02:44 +08:00
|
|
|
}, {
|
2022-06-16 15:58:17 +08:00
|
|
|
label: this.$t('overall.state'),
|
2021-08-30 15:02:44 +08:00
|
|
|
prop: 'state',
|
|
|
|
|
show: true,
|
|
|
|
|
minWidth: 100,
|
|
|
|
|
sortable: 'custom'
|
2021-04-13 20:33:12 +08:00
|
|
|
}
|
2021-09-08 17:15:59 +08:00
|
|
|
],
|
|
|
|
|
weekList: [
|
|
|
|
|
{
|
|
|
|
|
value: 1,
|
2022-06-21 18:14:21 +08:00
|
|
|
label: this.$t('week.Sun')
|
2021-09-08 17:15:59 +08:00
|
|
|
}, {
|
|
|
|
|
value: 2,
|
2022-06-21 18:14:21 +08:00
|
|
|
label: this.$t('week.Mon')
|
2021-09-08 17:15:59 +08:00
|
|
|
}, {
|
|
|
|
|
value: 3,
|
2022-06-21 18:14:21 +08:00
|
|
|
label: this.$t('week.Tue')
|
2021-09-08 17:15:59 +08:00
|
|
|
}, {
|
|
|
|
|
value: 4,
|
2022-06-21 18:14:21 +08:00
|
|
|
label: this.$t('week.Wed')
|
2021-09-08 17:15:59 +08:00
|
|
|
}, {
|
|
|
|
|
value: 5,
|
2022-06-21 18:14:21 +08:00
|
|
|
label: this.$t('week.Thu')
|
2021-09-08 17:15:59 +08:00
|
|
|
}, {
|
|
|
|
|
value: 6,
|
2022-06-21 18:14:21 +08:00
|
|
|
label: this.$t('week.Fri')
|
2021-09-08 17:15:59 +08:00
|
|
|
}, {
|
|
|
|
|
value: 7,
|
2022-06-21 18:14:21 +08:00
|
|
|
label: this.$t('week.Sat')
|
2021-09-08 17:15:59 +08:00
|
|
|
}
|
2021-04-13 20:33:12 +08:00
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
queryMessage (row) {
|
|
|
|
|
this.$emit('queryMessage', row)
|
|
|
|
|
},
|
|
|
|
|
formatThreshold (value, unit) {
|
|
|
|
|
const unitMethod = chartDataFormat.getUnit(unit)
|
|
|
|
|
if (unitMethod && value) {
|
|
|
|
|
return unitMethod.compute(value, null, 2)
|
|
|
|
|
} else {
|
|
|
|
|
return value
|
|
|
|
|
}
|
2021-09-08 17:15:59 +08:00
|
|
|
},
|
|
|
|
|
weekStr (weekstr) {
|
|
|
|
|
const arr = weekstr.split(',')
|
|
|
|
|
let str = ''
|
|
|
|
|
arr.forEach((item, index) => {
|
2021-09-09 10:30:03 +08:00
|
|
|
if (!item) return
|
2021-09-10 11:00:37 +08:00
|
|
|
str += `<span class="week-item">${this.weekList[item - 1].label}</span>`
|
2021-09-08 17:15:59 +08:00
|
|
|
})
|
|
|
|
|
return str
|
2021-04-13 20:33:12 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
2021-05-08 11:25:05 +08:00
|
|
|
<style scoped>
|
2021-09-08 17:49:32 +08:00
|
|
|
/deep/ .active-icon {
|
|
|
|
|
margin-left: 5px;
|
|
|
|
|
}
|
2021-05-08 11:25:05 +08:00
|
|
|
</style>
|