CN-301 Detection-饼图、柱状图开发
This commit is contained in:
@@ -14,8 +14,8 @@
|
||||
></detection-search>
|
||||
<!-- 内容区 -->
|
||||
<div class="explorer-container" style="height: calc(100% - 20px); flex-direction: column">
|
||||
<div class="detection__event-severity-bar"></div>
|
||||
<div style="display: flex; height: 100%;">
|
||||
<div class="detection__event-severity-bar" id="detectionEventSeverityBar"></div>
|
||||
<div style="display: flex; height: 100%;">
|
||||
<detection-filter
|
||||
:filter-data="filterData"
|
||||
:q="q"
|
||||
@@ -24,7 +24,29 @@
|
||||
></detection-filter>
|
||||
|
||||
<div class="detection__list">
|
||||
<div class="detection__list-statistics"></div>
|
||||
<div class="detection__list-statistics">
|
||||
<div class="statistics__severity" >
|
||||
<div class="chart-header" >
|
||||
<div class="chart-header__title">{{$t('detection.severity')}}</div>
|
||||
</div>
|
||||
<div class="chart-content" id="detectionSeverityPer">
|
||||
</div>
|
||||
</div>
|
||||
<div class="statistics__category" >
|
||||
<div class="chart-header" >
|
||||
<div class="chart-header__title">{{$t('detection.categoryProportion')}}</div>
|
||||
</div>
|
||||
<div class="chart-content" id="detectionCategoryPer">
|
||||
</div>
|
||||
</div>
|
||||
<div class="statistics__active-attack" >
|
||||
<div class="chart-header" >
|
||||
<div class="chart-header__title">{{$t('detection.activeAttacker')}}</div>
|
||||
</div>
|
||||
<div class="chart-content" id="detectionActiveAttacker">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<detection-list
|
||||
:list-data="listData"
|
||||
:pageObj="pageObj"
|
||||
@@ -61,6 +83,12 @@ import Pagination from '@/components/common/Pagination'
|
||||
import { defaultPageSize } from '@/utils/constants'
|
||||
import { getNowTime } from '@/utils/date-util'
|
||||
import { ref } from 'vue'
|
||||
import * as echarts from 'echarts'
|
||||
import { multipleBarOption,pieForSeverity,activeAttackBar,getAttackColor,getSeverityColor } from '@/views/detections/options/detectionOptions'
|
||||
import ChartEchart from '@/views/charts/charts/ChartEchart'
|
||||
import { api } from '@/utils/api'
|
||||
import { get } from '@/utils/http'
|
||||
|
||||
export default {
|
||||
name: 'Index',
|
||||
components: {
|
||||
@@ -69,7 +97,8 @@ export default {
|
||||
TimeRefresh,
|
||||
DetectionFilter,
|
||||
DetectionList,
|
||||
Pagination
|
||||
Pagination,
|
||||
ChartEchart
|
||||
},
|
||||
data () {
|
||||
return {
|
||||
@@ -175,10 +204,219 @@ export default {
|
||||
}
|
||||
],
|
||||
listData: [],
|
||||
listLoading: false
|
||||
listLoading: false,
|
||||
eventSeverityOption: null,
|
||||
eventSeverityData:[],
|
||||
severityPerOption: null,
|
||||
severityPerData:[],
|
||||
categoryPerOption: null,
|
||||
categoryPerData:[],
|
||||
activeAttackOption: null,
|
||||
activeAttackData:[],
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
initEventSeverityData(){
|
||||
const chartDom = document.getElementById('detectionEventSeverityBar');
|
||||
const detectionChart = echarts.init(chartDom);
|
||||
this.eventSeverityOption = this.$_.cloneDeep(multipleBarOption)
|
||||
|
||||
const queryParams = {
|
||||
...this.timeFilter,
|
||||
q:this.q,
|
||||
}
|
||||
get(api.detectionEventSeverity, queryParams).then(response => {
|
||||
response = {
|
||||
"code": 200,
|
||||
"success": true,
|
||||
"msg": "OK",
|
||||
"data": {
|
||||
"resultType": "table",
|
||||
"result": [
|
||||
{
|
||||
"eventSeverity": "Critical",
|
||||
"count": 1048
|
||||
},{
|
||||
"eventSeverity": "High",
|
||||
"count": 735
|
||||
},{
|
||||
"eventSeverity": "Medium",
|
||||
"count": 580
|
||||
},{
|
||||
"eventSeverity": "Low",
|
||||
"count": 484
|
||||
},{
|
||||
"eventSeverity": "Info",
|
||||
"count": 300
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
if (response.code === 200) {
|
||||
this.eventSeverityData = [
|
||||
['time', '2021/11/12 12:00', '2021/11/13 12:00', '2021/11/14 12:00', '2021/11/15 12:00','2021/11/16 12:00','2021/11/17 12:00','2021/11/18 12:00','2021/11/19 12:00','2021/11/20 12:00','2021/11/21 12:00'],
|
||||
['Critical', 5, 0, 2, 0,0,3,3,0,4,2],
|
||||
['High', 5, 7, 3,0, 0,3,3,20,2,2],
|
||||
['Medium', 10, 8, 20, 8,0,5,5,5,5,20],
|
||||
['Low', 18, 6, 5, 0,0,2,20,2,2,2],
|
||||
['Info', 16, 10, 4, 0,7,0,8,5,15,1]
|
||||
]
|
||||
}
|
||||
}).finally(() => {
|
||||
this.$nextTick(() => {
|
||||
this.eventSeverityOption.dataset.source = this.eventSeverityData
|
||||
this.eventSeverityOption && detectionChart.setOption(this.eventSeverityOption);
|
||||
})
|
||||
})
|
||||
},
|
||||
initSeverityPerData(){
|
||||
const chartDom = document.getElementById('detectionSeverityPer');
|
||||
const detectionChart = echarts.init(chartDom);
|
||||
this.severityPerOption = this.$_.cloneDeep(pieForSeverity)
|
||||
|
||||
const queryParams = {
|
||||
...this.timeFilter,
|
||||
q:this.q,
|
||||
}
|
||||
get(api.detectionSeverity, queryParams).then(response => {
|
||||
response = {
|
||||
"code": 200,
|
||||
"success": true,
|
||||
"msg": "OK",
|
||||
"data": {
|
||||
"resultType": "table",
|
||||
"result": [
|
||||
{
|
||||
"eventSeverity": "Critical",
|
||||
"count": 1048
|
||||
},{
|
||||
"eventSeverity": "High",
|
||||
"count": 735
|
||||
},{
|
||||
"eventSeverity": "Medium",
|
||||
"count": 580
|
||||
},{
|
||||
"eventSeverity": "Low",
|
||||
"count": 484
|
||||
},{
|
||||
"eventSeverity": "Info",
|
||||
"count": 300
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
if (response.code === 200) {
|
||||
this.severityPerData = response.data.result.map(d => {
|
||||
return { value: d.count, name: d.eventSeverity,itemStyle:{color:getSeverityColor(d.eventSeverity)}}
|
||||
})
|
||||
}
|
||||
}).finally(() => {
|
||||
this.$nextTick(() => {
|
||||
this.severityPerOption.series[0].data = this.severityPerData
|
||||
this.severityPerOption && detectionChart.setOption(this.severityPerOption);
|
||||
})
|
||||
})
|
||||
},
|
||||
initCategoryPerData(){
|
||||
const chartDom = document.getElementById('detectionCategoryPer');
|
||||
const detectionChart = echarts.init(chartDom);
|
||||
this.categoryPerOption = this.$_.cloneDeep(pieForSeverity)
|
||||
|
||||
const queryParams = {
|
||||
...this.timeFilter,
|
||||
q:this.q,
|
||||
}
|
||||
get(api.detectionAttackType, queryParams).then(response => {
|
||||
response = {
|
||||
"code": 200,
|
||||
"success": true,
|
||||
"msg": "OK",
|
||||
"data": {
|
||||
"resultType": "table",
|
||||
"result": [
|
||||
{
|
||||
"attackType": "Command and control",
|
||||
"count": 1048
|
||||
},{
|
||||
"attackType": "Payload_delivery",
|
||||
"count": 735
|
||||
},{
|
||||
"attackType": "Cryptomining",
|
||||
"count": 580
|
||||
},{
|
||||
"attackType": "phishing",
|
||||
"count": 484
|
||||
},{
|
||||
"attackType": "dga",
|
||||
"count": 300
|
||||
},{
|
||||
"attackType": "ddos",
|
||||
"count": 50
|
||||
},
|
||||
]
|
||||
}
|
||||
}
|
||||
if (response.code === 200) {
|
||||
this.categoryPerData = response.data.result.map(d => {
|
||||
return { value: d.count, name: d.attackType,itemStyle:{color:getAttackColor(d.attackType)}}
|
||||
})
|
||||
}
|
||||
}).finally(() => {
|
||||
this.$nextTick(() => {
|
||||
this.categoryPerOption.series[0].data = this.categoryPerData
|
||||
this.categoryPerOption && detectionChart.setOption(this.categoryPerOption);
|
||||
})
|
||||
})
|
||||
|
||||
},
|
||||
initActiveAttackData(){
|
||||
const chartDom = document.getElementById('detectionActiveAttacker');
|
||||
const detectionChart = echarts.init(chartDom);
|
||||
this.activeAttackOption = this.$_.cloneDeep(activeAttackBar)
|
||||
|
||||
const queryParams = {
|
||||
...this.timeFilter,
|
||||
q:this.q,
|
||||
}
|
||||
get(api.detectionOffenderIp, queryParams).then(response => {
|
||||
response = {
|
||||
"code": 200,
|
||||
"success": true,
|
||||
"msg": "OK",
|
||||
"data": {
|
||||
"resultType": "table",
|
||||
"result": [
|
||||
{
|
||||
"offenderIp": "192.168.12.21",
|
||||
"count": 99999
|
||||
},{
|
||||
"offenderIp": "192.168.22.21",
|
||||
"count": 88888
|
||||
},{
|
||||
"offenderIp": "192.168.32.21",
|
||||
"count": 77777
|
||||
},{
|
||||
"offenderIp": "192.168.42.21",
|
||||
"count": 66666
|
||||
},{
|
||||
"offenderIp": "192.168.52.21",
|
||||
"count": 55555
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
if (response.code === 200) {
|
||||
this.activeAttackData = response.data.result.map(d => {
|
||||
return [d.count,d.offenderIp]
|
||||
})
|
||||
}
|
||||
}).finally(() => {
|
||||
this.$nextTick(() => {
|
||||
this.activeAttackOption.series[0].data = this.activeAttackData.reverse()
|
||||
this.activeAttackOption && detectionChart.setOption(this.activeAttackOption);
|
||||
})
|
||||
})
|
||||
},
|
||||
timeRefreshChange () {
|
||||
if (!this.$refs.dateTimeRange.isCustom) {
|
||||
const value = this.timeFilter.dateRangeValue
|
||||
@@ -226,6 +464,12 @@ export default {
|
||||
})
|
||||
}
|
||||
},
|
||||
mounted () {
|
||||
this.initEventSeverityData()
|
||||
this.initSeverityPerData()
|
||||
this.initCategoryPerData()
|
||||
this.initActiveAttackData()
|
||||
},
|
||||
watch: {
|
||||
timeFilter (n) {
|
||||
this.search(this.metaList, this.q)
|
||||
@@ -236,7 +480,23 @@ export default {
|
||||
const { startTime, endTime } = getNowTime(dateRangeValue)
|
||||
const timeFilter = ref({ startTime, endTime, dateRangeValue })
|
||||
return {
|
||||
timeFilter
|
||||
timeFilter,
|
||||
severityPerChart: {
|
||||
params: {
|
||||
url: '/interface/entity/detail/ip/trafficMap?startTime={{startTime}}&endTime={{endTime}}&country={{country}}&ip={{ip}}',
|
||||
unitType: 'number'
|
||||
},
|
||||
id: 'detectionSeverityPer',
|
||||
type: 32
|
||||
},
|
||||
categoryPerChart: {
|
||||
params: {
|
||||
url: '/interface/entity/detail/ip/trafficMap?startTime={{startTime}}&endTime={{endTime}}&country={{country}}&ip={{ip}}',
|
||||
unitType: 'number'
|
||||
},
|
||||
id: 'detectionCategoryPer',
|
||||
type: 32
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user