diff --git a/src/views/charts2/charts/npm/NpmAppCategoryScore.vue b/src/views/charts2/charts/npm/NpmAppCategoryScore.vue index 2d7e7448..38e2c58c 100644 --- a/src/views/charts2/charts/npm/NpmAppCategoryScore.vue +++ b/src/views/charts2/charts/npm/NpmAppCategoryScore.vue @@ -260,9 +260,9 @@ export default { } t.score = computeScore(data) }) - this.tableData = tableData + // this.tableData = tableData // todo 当前版本,voip没数据,暂时隐藏,后续记得删除该段 - this.tableData = this.tableData.filter(item => item.appSubcategory !== 'voip-video') + this.tableData = tableData.filter(item => item.appSubcategory !== 'voip-video') }).finally(() => { this.toggleLoading(false) }) diff --git a/src/views/charts2/charts/npm/NpmEventsByType.vue b/src/views/charts2/charts/npm/NpmEventsByType.vue index ebe5d7dc..f4389aa6 100644 --- a/src/views/charts2/charts/npm/NpmEventsByType.vue +++ b/src/views/charts2/charts/npm/NpmEventsByType.vue @@ -74,34 +74,36 @@ export default { }, methods: { init () { - const _this = this - const dom = document.getElementById('chart') - !this.myChart && (this.myChart = echarts.init(dom)) - this.chartOption = pieChartOption3 - this.chartOption.series[0].data = this.chartData - this.chartOption.series[0].label = { - show: true, - position: 'center', - fontFamily: 'NotoSansHans-Medium', - fontSize: 20, - fontWeight: 500, - formatter: function () { - let num = 0 - _this.chartData.forEach(t => { - num += t.value - }) - return num + if (!this.isUnitTesting) { + const _this = this + const dom = document.getElementById('chart') + !this.myChart && (this.myChart = echarts.init(dom)) + this.chartOption = pieChartOption3 + this.chartOption.series[0].data = this.chartData + this.chartOption.series[0].label = { + show: true, + position: 'center', + fontFamily: 'NotoSansHans-Medium', + fontSize: 20, + fontWeight: 500, + formatter: function () { + let num = 0 + _this.chartData.forEach(t => { + num += t.value + }) + return num + } } + this.myChart.on('mouseover', function () { + _this.chartOption.series[0].label.show = false + _this.myChart.setOption(_this.chartOption) + }) + this.myChart.on('mouseout', function () { + _this.chartOption.series[0].label.show = true + _this.myChart.setOption(_this.chartOption) + }) + this.myChart.setOption(this.chartOption) } - this.myChart.on('mouseover', function () { - _this.chartOption.series[0].label.show = false - _this.myChart.setOption(_this.chartOption) - }) - this.myChart.on('mouseout', function () { - _this.chartOption.series[0].label.show = true - _this.myChart.setOption(_this.chartOption) - }) - this.myChart.setOption(this.chartOption) }, eventsByTypeData () { const params = { diff --git a/test/views/charts2/charts/entityDetail/EntityDetailLine.test.js b/test/views/charts2/charts/entityDetail/EntityDetailLine.test.js index f8b52032..fac5b9f8 100644 --- a/test/views/charts2/charts/entityDetail/EntityDetailLine.test.js +++ b/test/views/charts2/charts/entityDetail/EntityDetailLine.test.js @@ -2,6 +2,8 @@ import EntityDetailLine from '@/views/charts2/charts/entityDetail/EntityDetailLi import { mount } from '@vue/test-utils' import axios from 'axios' import mockData from './mockData/EntityDetailLine' +import common from '@/mixins/common' +import chartMixin from '@/views/charts2/chart-mixin' const timeFilter = { dateRangeValue: -1, @@ -47,7 +49,13 @@ describe('views/charts2/charts/entityDetail/EntityDetailLine.vue测试', () => { entity, timeFilter, chart - } + }, + data () { + return { + isUnitTesting: true + } + }, + mixins: [common, chartMixin] }) // 延迟等待渲染。使用wrapper.vm.$nextTick有时不管用(例如组件中使用了setTimeout的时候) await new Promise(resolve => setTimeout(async () => { @@ -74,7 +82,13 @@ describe('views/charts2/charts/entityDetail/EntityDetailLine.vue测试', () => { entity, timeFilter, chart - } + }, + data () { + return { + isUnitTesting: true + } + }, + mixins: [common, chartMixin] }) // 延迟等待渲染。使用wrapper.vm.$nextTick有时不管用(例如组件中使用了setTimeout的时候) await new Promise(resolve => setTimeout(async () => { @@ -104,7 +118,13 @@ describe('views/charts2/charts/entityDetail/EntityDetailLine.vue测试', () => { entity, timeFilter, chart - } + }, + data () { + return { + isUnitTesting: true + } + }, + mixins: [common, chartMixin] }) // 延迟等待渲染。使用wrapper.vm.$nextTick有时不管用(例如组件中使用了setTimeout的时候) @@ -135,7 +155,13 @@ describe('views/charts2/charts/entityDetail/EntityDetailLine.vue测试', () => { timeFilter, chart, metric: 'Packets/s' - } + }, + data () { + return { + isUnitTesting: true + } + }, + mixins: [common, chartMixin] }) await new Promise(resolve => setTimeout(async () => { @@ -160,7 +186,13 @@ describe('views/charts2/charts/entityDetail/EntityDetailLine.vue测试', () => { timeFilter, chart, metric: 'Sessions/s' - } + }, + data () { + return { + isUnitTesting: true + } + }, + mixins: [common, chartMixin] }) await new Promise(resolve => setTimeout(async () => { diff --git a/test/views/charts2/charts/entityDetail/SecurityEvent.test.js b/test/views/charts2/charts/entityDetail/SecurityEvent.test.js index 9ed0a648..b3dc4071 100644 --- a/test/views/charts2/charts/entityDetail/SecurityEvent.test.js +++ b/test/views/charts2/charts/entityDetail/SecurityEvent.test.js @@ -2,6 +2,8 @@ import SecurityEvent from '@/views/charts2/charts/entityDetail/tabs/SecurityEven import { mount } from '@vue/test-utils' import axios from 'axios' import mockData from './mockData/SecurityEvent' +import chartMixin from '@/views/charts2/chart-mixin' +import common from '@/mixins/common' const timeFilter = { dateRangeValue: -1, @@ -28,7 +30,8 @@ describe('views/charts2/charts/entityDetail/tabs/SecurityEvent.vue测试', () => propsData: { entity, timeFilter - } + }, + mixins: [chartMixin, common] }) // 延迟等待渲染。使用wrapper.vm.$nextTick有时不管用(例如组件中使用了setTimeout的时候) await new Promise(resolve => setTimeout(async () => { @@ -63,7 +66,8 @@ describe('views/charts2/charts/entityDetail/tabs/SecurityEvent.vue测试', () => propsData: { entity, timeFilter - } + }, + mixins: [chartMixin, common] }) // 延迟等待渲染。使用wrapper.vm.$nextTick有时不管用(例如组件中使用了setTimeout的时候) await new Promise(resolve => setTimeout(async () => { diff --git a/test/views/charts2/charts/entityDetail/mockData/EntityDetailLine.js b/test/views/charts2/charts/entityDetail/mockData/EntityDetailLine.js index c811e2b1..129ce1bc 100644 --- a/test/views/charts2/charts/entityDetail/mockData/EntityDetailLine.js +++ b/test/views/charts2/charts/entityDetail/mockData/EntityDetailLine.js @@ -1,6 +1,7 @@ const mockData = { // 空 empty: { + status: 200, data: { status: 200, code: 200, @@ -13,6 +14,7 @@ const mockData = { bytes: { // 边界 boundary: { + status: 200, data: { status: 200, code: 200, @@ -66,6 +68,7 @@ const mockData = { }, // 正常数据 common: { + status: 200, data: { status: 200, code: 200, diff --git a/test/views/charts2/charts/entityDetail/mockData/InformationAggregation.js b/test/views/charts2/charts/entityDetail/mockData/InformationAggregation.js index 48970cad..6fd14bf1 100644 --- a/test/views/charts2/charts/entityDetail/mockData/InformationAggregation.js +++ b/test/views/charts2/charts/entityDetail/mockData/InformationAggregation.js @@ -1,8 +1,8 @@ const mockData = { // 空 empty: { + status: 200, data: { - status: 200, code: 200, data: { resultType: 'object', @@ -13,8 +13,8 @@ const mockData = { bytes: { // 边界 boundary: { + status: 200, data: { - status: 200, code: 200, data: { resultType: 'object', @@ -26,8 +26,8 @@ const mockData = { }, // 正常数据 common: { + status: 200, data: { - status: 200, code: 200, data: { resultType: 'object', diff --git a/test/views/charts2/charts/entityDetail/mockData/SecurityEvent.js b/test/views/charts2/charts/entityDetail/mockData/SecurityEvent.js index c7e8fb48..48c56c02 100644 --- a/test/views/charts2/charts/entityDetail/mockData/SecurityEvent.js +++ b/test/views/charts2/charts/entityDetail/mockData/SecurityEvent.js @@ -1,6 +1,7 @@ const mockData = { // 空 empty: { + status: 200, data: { status: 200, code: 200, @@ -13,6 +14,7 @@ const mockData = { bytes: { // 边界 boundary: { + status: 200, data: { status: 200, code: 200, @@ -26,6 +28,7 @@ const mockData = { }, // 正常数据 common: { + status: 200, data: { status: 200, code: 200, diff --git a/test/views/charts2/charts/linkMonitor/LinkBlock.test.js b/test/views/charts2/charts/linkMonitor/LinkBlock.test.js index 58deea6d..1d577216 100644 --- a/test/views/charts2/charts/linkMonitor/LinkBlock.test.js +++ b/test/views/charts2/charts/linkMonitor/LinkBlock.test.js @@ -1,7 +1,9 @@ import linkBlock from '@/views/charts2/charts/linkMonitor/LinkBlock' import { mount } from '@vue/test-utils' import axios from 'axios' +import chartMixin from '@/views/charts2/chart-mixin' import { mockData, linkInfoData } from './MockData/LinkBlock' +import common from '@/mixins/common' const mockGet1 = mockData.common.data1 const mockGet2 = mockData.common.data2 @@ -42,7 +44,8 @@ function axiosPostAndMounted (list1, list2) { wrapper = mount(linkBlock, { propsData: { timeFilter - } + }, + mixins: [common, chartMixin] }) } diff --git a/test/views/charts2/charts/linkMonitor/LinkTrafficLine.test.js b/test/views/charts2/charts/linkMonitor/LinkTrafficLine.test.js index c789ddfa..e1be4432 100644 --- a/test/views/charts2/charts/linkMonitor/LinkTrafficLine.test.js +++ b/test/views/charts2/charts/linkMonitor/LinkTrafficLine.test.js @@ -3,6 +3,8 @@ import { mount } from '@vue/test-utils' import axios from 'axios' import { mockData } from './MockData/LinkTrafficLine' import { linkInfoData } from './MockData/LinkBlock' +import common from '@/mixins/common' +import chartMixin from '@/views/charts2/chart-mixin' const mockGet = mockData.common.data1 const mockGet1 = mockData.common.data2 @@ -47,7 +49,13 @@ function axiosPostAndMounted (query, data1, data2) { wrapper = mount(LinkTrafficLine, { propsData: { timeFilter - } + }, + data () { + return { + isUnitTesting: true + } + }, + mixins: [common, chartMixin] }) } diff --git a/test/views/charts2/charts/linkMonitor/MockData/LinkBlock.js b/test/views/charts2/charts/linkMonitor/MockData/LinkBlock.js index 8ab25315..c3799265 100644 --- a/test/views/charts2/charts/linkMonitor/MockData/LinkBlock.js +++ b/test/views/charts2/charts/linkMonitor/MockData/LinkBlock.js @@ -1,24 +1,28 @@ export const mockData = { common: { data1: { - data: { status: 200, code: 200, queryKey: '549b4c3bcabf0feee193b834671879de', success: true, message: null, statistics: { elapsed: 3, rows_read: 11480, bytes_read: 459200, result_size: 1214, result_rows: 21 }, job: null, formatType: 'json', meta: [{ name: 'link_id', type: 'string', category: 'Dimension' }, { name: 'egress_bytes', type: 'long', category: 'Metric' }, { name: 'ingress_bytes', type: 'long', category: 'Metric' }], data: { resultType: 'table', result: [{ linkId: '257', egressBytes: '0', egressBitsRate: 0, ingressBytes: '493739879', ingressBitsRate: 1097199.76 }, { linkId: '256', egressBytes: '4147998874', egressBitsRate: 9217775.28, ingressBytes: '0', ingressBitsRate: 0 }, { linkId: '1024', egressBytes: '4229808296', egressBitsRate: 9399574, ingressBytes: '0', ingressBitsRate: 0 }, { linkId: '1793', egressBytes: '0', egressBitsRate: 0, ingressBytes: '604840505', ingressBitsRate: 1344090 }, { linkId: '2817', egressBytes: '0', egressBitsRate: 0, ingressBytes: '430811638', ingressBitsRate: 957359.2 }, { linkId: '0', egressBytes: '819878366014', egressBitsRate: 1821951924.48, ingressBytes: '140774357362', ingressBitsRate: 312831905.28 }, { linkId: '1281', egressBytes: '0', egressBitsRate: 0, ingressBytes: '544675122', ingressBitsRate: 1210389.12 }, { linkId: '2049', egressBytes: '0', egressBitsRate: 0, ingressBytes: '711346274', ingressBitsRate: 1580769.52 }, { linkId: '1536', egressBytes: '4195896971', egressBitsRate: 9324215.52, ingressBytes: '0', ingressBitsRate: 0 }, { linkId: '2305', egressBytes: '0', egressBitsRate: 0, ingressBytes: '524865003', ingressBitsRate: 1166366.64 }, { linkId: '1792', egressBytes: '4145790227', egressBitsRate: 9212867.2, ingressBytes: '0', ingressBitsRate: 0 }, { linkId: '1025', egressBytes: '0', egressBitsRate: 0, ingressBytes: '492227445', ingressBitsRate: 1093838.8 }, { linkId: '2816', egressBytes: '4000074817', egressBitsRate: 8889055.12, ingressBytes: '0', ingressBitsRate: 0 }, { linkId: '513', egressBytes: '0', egressBitsRate: 0, ingressBytes: '1444814826', ingressBitsRate: 3210699.6 }, { linkId: '768', egressBytes: '4370006099', egressBitsRate: 9711124.64, ingressBytes: '0', ingressBitsRate: 0 }, { linkId: '512', egressBytes: '3894190397', egressBitsRate: 8653756.4, ingressBytes: '0', ingressBitsRate: 0 }, { linkId: '769', egressBytes: '0', egressBitsRate: 0, ingressBytes: '1877580759', ingressBitsRate: 4172401.68 }, { linkId: '2304', egressBytes: '3767761711', egressBitsRate: 8372803.84, ingressBytes: '0', ingressBitsRate: 0 }, { linkId: '1537', egressBytes: '0', egressBitsRate: 0, ingressBytes: '367986916', ingressBitsRate: 817748.72 }, { linkId: '1280', egressBytes: '4040444894', egressBitsRate: 8978766.4, ingressBytes: '0', ingressBitsRate: 0 }, { linkId: '2048', egressBytes: '4682050724', egressBitsRate: 10404557.2, ingressBytes: '0', ingressBitsRate: 0 }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20arrayJoin%28splitByChar%28%27_%27%2C%20concat%28toString%28common_egress_link_id%29%2C%20%27_%27%2C%20toString%28common_ingress_link_id%29%29%29%29%20AS%20link_id%2CSUM%28IF%28toString%28common_egress_link_id%29%20%3D%20link_id%2C%20traffic_outbound_byte%2C%200%29%29%20AS%20egress_bytes%2CSUM%28IF%28toString%28common_ingress_link_id%29%20%3D%20link_id%2C%20traffic_inbound_byte%2C%200%29%29%20AS%20ingress_bytes%20FROM%20metric_link%20WHERE%20stat_time%20%3E%3D%201675303793%20AND%20stat_time%20%3C%201675307393%20GROUP%20BY%20link_id&format=json&option=real-time', msg: 'OK' } + status: 200, + data: { code: 200, queryKey: '549b4c3bcabf0feee193b834671879de', success: true, message: null, statistics: { elapsed: 3, rows_read: 11480, bytes_read: 459200, result_size: 1214, result_rows: 21 }, job: null, formatType: 'json', meta: [{ name: 'link_id', type: 'string', category: 'Dimension' }, { name: 'egress_bytes', type: 'long', category: 'Metric' }, { name: 'ingress_bytes', type: 'long', category: 'Metric' }], data: { resultType: 'table', result: [{ linkId: '257', egressBytes: '0', egressBitsRate: 0, ingressBytes: '493739879', ingressBitsRate: 1097199.76 }, { linkId: '256', egressBytes: '4147998874', egressBitsRate: 9217775.28, ingressBytes: '0', ingressBitsRate: 0 }, { linkId: '1024', egressBytes: '4229808296', egressBitsRate: 9399574, ingressBytes: '0', ingressBitsRate: 0 }, { linkId: '1793', egressBytes: '0', egressBitsRate: 0, ingressBytes: '604840505', ingressBitsRate: 1344090 }, { linkId: '2817', egressBytes: '0', egressBitsRate: 0, ingressBytes: '430811638', ingressBitsRate: 957359.2 }, { linkId: '0', egressBytes: '819878366014', egressBitsRate: 1821951924.48, ingressBytes: '140774357362', ingressBitsRate: 312831905.28 }, { linkId: '1281', egressBytes: '0', egressBitsRate: 0, ingressBytes: '544675122', ingressBitsRate: 1210389.12 }, { linkId: '2049', egressBytes: '0', egressBitsRate: 0, ingressBytes: '711346274', ingressBitsRate: 1580769.52 }, { linkId: '1536', egressBytes: '4195896971', egressBitsRate: 9324215.52, ingressBytes: '0', ingressBitsRate: 0 }, { linkId: '2305', egressBytes: '0', egressBitsRate: 0, ingressBytes: '524865003', ingressBitsRate: 1166366.64 }, { linkId: '1792', egressBytes: '4145790227', egressBitsRate: 9212867.2, ingressBytes: '0', ingressBitsRate: 0 }, { linkId: '1025', egressBytes: '0', egressBitsRate: 0, ingressBytes: '492227445', ingressBitsRate: 1093838.8 }, { linkId: '2816', egressBytes: '4000074817', egressBitsRate: 8889055.12, ingressBytes: '0', ingressBitsRate: 0 }, { linkId: '513', egressBytes: '0', egressBitsRate: 0, ingressBytes: '1444814826', ingressBitsRate: 3210699.6 }, { linkId: '768', egressBytes: '4370006099', egressBitsRate: 9711124.64, ingressBytes: '0', ingressBitsRate: 0 }, { linkId: '512', egressBytes: '3894190397', egressBitsRate: 8653756.4, ingressBytes: '0', ingressBitsRate: 0 }, { linkId: '769', egressBytes: '0', egressBitsRate: 0, ingressBytes: '1877580759', ingressBitsRate: 4172401.68 }, { linkId: '2304', egressBytes: '3767761711', egressBitsRate: 8372803.84, ingressBytes: '0', ingressBitsRate: 0 }, { linkId: '1537', egressBytes: '0', egressBitsRate: 0, ingressBytes: '367986916', ingressBitsRate: 817748.72 }, { linkId: '1280', egressBytes: '4040444894', egressBitsRate: 8978766.4, ingressBytes: '0', ingressBitsRate: 0 }, { linkId: '2048', egressBytes: '4682050724', egressBitsRate: 10404557.2, ingressBytes: '0', ingressBitsRate: 0 }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20arrayJoin%28splitByChar%28%27_%27%2C%20concat%28toString%28common_egress_link_id%29%2C%20%27_%27%2C%20toString%28common_ingress_link_id%29%29%29%29%20AS%20link_id%2CSUM%28IF%28toString%28common_egress_link_id%29%20%3D%20link_id%2C%20traffic_outbound_byte%2C%200%29%29%20AS%20egress_bytes%2CSUM%28IF%28toString%28common_ingress_link_id%29%20%3D%20link_id%2C%20traffic_inbound_byte%2C%200%29%29%20AS%20ingress_bytes%20FROM%20metric_link%20WHERE%20stat_time%20%3E%3D%201675303793%20AND%20stat_time%20%3C%201675307393%20GROUP%20BY%20link_id&format=json&option=real-time', msg: 'OK' } }, data2: { - data: { status: 200, code: 200, queryKey: 'ee2e820b1275748167cdee82b2b4ea40', success: true, message: null, statistics: { elapsed: 3, rows_read: 11480, bytes_read: 618564, result_size: 1053, result_rows: 10 }, job: null, formatType: 'json', meta: [{ name: 'egress_link_direction', type: 'string', category: 'Dimension' }, { name: 'ingress_link_direction', type: 'string', category: 'Dimension' }, { name: 'egress_bytes', type: 'long', category: 'Metric' }, { name: 'ingress_bytes', type: 'long', category: 'Metric' }], data: { resultType: 'table', result: [{ egressLinkDirection: '太原', ingressLinkDirection: '西宁', egressBytes: '2407509269', egressBitsRate: 5350020.56, ingressBytes: '193368911', ingressBitsRate: 429708.72 }, { egressLinkDirection: '西安', ingressLinkDirection: '西安', egressBytes: '3609358392', egressBitsRate: 8020796.4, ingressBytes: '345009143', ingressBitsRate: 766686.96 }, { egressLinkDirection: '西宁', ingressLinkDirection: '西安', egressBytes: '1273508499', egressBitsRate: 2830018.88, ingressBytes: '122646511', ingressBitsRate: 272547.84 }, { egressLinkDirection: '太原', ingressLinkDirection: '太原', egressBytes: '14840136119', egressBitsRate: 32978080.24, ingressBytes: '3386427658', ingressBitsRate: 7525394.8 }, { egressLinkDirection: '西安', ingressLinkDirection: '太原', egressBytes: '7070361369', egressBitsRate: 15711914.16, ingressBytes: '1853445429', ingressBitsRate: 4118767.6 }, { egressLinkDirection: '西宁', ingressLinkDirection: '太原', egressBytes: '2619231460', egressBitsRate: 5820514.32, ingressBytes: '291561196', ingressBitsRate: 647913.76 }, { egressLinkDirection: '', ingressLinkDirection: '', egressBytes: '409939183007', egressBitsRate: 910975962.24, ingressBytes: '70387178681', ingressBitsRate: 156415952.64 }, { egressLinkDirection: '太原', ingressLinkDirection: '西安', egressBytes: '7808050741', egressBitsRate: 17351223.84, ingressBytes: '1001570985', ingressBitsRate: 2225713.28 }, { egressLinkDirection: '西宁', ingressLinkDirection: '西宁', egressBytes: '337068337', egressBitsRate: 749040.72, ingressBytes: '165230290', ingressBitsRate: 367178.4 }, { egressLinkDirection: '西安', ingressLinkDirection: '西宁', egressBytes: '1508798824', egressBitsRate: 3352886.24, ingressBytes: '133628244', ingressBitsRate: 296951.68 }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20egress_link_direction%20AS%20egress_link_direction%2C%20ingress_link_direction%20AS%20ingress_link_direction%2C%20SUM%28traffic_outbound_byte%29%20AS%20egress_bytes%2C%20SUM%28traffic_inbound_byte%29%20AS%20ingress_bytes%20FROM%20metric_link%20WHERE%20stat_time%20%3E%3D%201675303793%20AND%20stat_time%20%3C%201675307393%20GROUP%20BY%20egress_link_direction%2C%20ingress_link_direction&format=json&option=real-time', msg: 'OK' } + status: 200, + data: { code: 200, queryKey: 'ee2e820b1275748167cdee82b2b4ea40', success: true, message: null, statistics: { elapsed: 3, rows_read: 11480, bytes_read: 618564, result_size: 1053, result_rows: 10 }, job: null, formatType: 'json', meta: [{ name: 'egress_link_direction', type: 'string', category: 'Dimension' }, { name: 'ingress_link_direction', type: 'string', category: 'Dimension' }, { name: 'egress_bytes', type: 'long', category: 'Metric' }, { name: 'ingress_bytes', type: 'long', category: 'Metric' }], data: { resultType: 'table', result: [{ egressLinkDirection: '太原', ingressLinkDirection: '西宁', egressBytes: '2407509269', egressBitsRate: 5350020.56, ingressBytes: '193368911', ingressBitsRate: 429708.72 }, { egressLinkDirection: '西安', ingressLinkDirection: '西安', egressBytes: '3609358392', egressBitsRate: 8020796.4, ingressBytes: '345009143', ingressBitsRate: 766686.96 }, { egressLinkDirection: '西宁', ingressLinkDirection: '西安', egressBytes: '1273508499', egressBitsRate: 2830018.88, ingressBytes: '122646511', ingressBitsRate: 272547.84 }, { egressLinkDirection: '太原', ingressLinkDirection: '太原', egressBytes: '14840136119', egressBitsRate: 32978080.24, ingressBytes: '3386427658', ingressBitsRate: 7525394.8 }, { egressLinkDirection: '西安', ingressLinkDirection: '太原', egressBytes: '7070361369', egressBitsRate: 15711914.16, ingressBytes: '1853445429', ingressBitsRate: 4118767.6 }, { egressLinkDirection: '西宁', ingressLinkDirection: '太原', egressBytes: '2619231460', egressBitsRate: 5820514.32, ingressBytes: '291561196', ingressBitsRate: 647913.76 }, { egressLinkDirection: '', ingressLinkDirection: '', egressBytes: '409939183007', egressBitsRate: 910975962.24, ingressBytes: '70387178681', ingressBitsRate: 156415952.64 }, { egressLinkDirection: '太原', ingressLinkDirection: '西安', egressBytes: '7808050741', egressBitsRate: 17351223.84, ingressBytes: '1001570985', ingressBitsRate: 2225713.28 }, { egressLinkDirection: '西宁', ingressLinkDirection: '西宁', egressBytes: '337068337', egressBitsRate: 749040.72, ingressBytes: '165230290', ingressBitsRate: 367178.4 }, { egressLinkDirection: '西安', ingressLinkDirection: '西宁', egressBytes: '1508798824', egressBitsRate: 3352886.24, ingressBytes: '133628244', ingressBitsRate: 296951.68 }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20egress_link_direction%20AS%20egress_link_direction%2C%20ingress_link_direction%20AS%20ingress_link_direction%2C%20SUM%28traffic_outbound_byte%29%20AS%20egress_bytes%2C%20SUM%28traffic_inbound_byte%29%20AS%20ingress_bytes%20FROM%20metric_link%20WHERE%20stat_time%20%3E%3D%201675303793%20AND%20stat_time%20%3C%201675307393%20GROUP%20BY%20egress_link_direction%2C%20ingress_link_direction&format=json&option=real-time', msg: 'OK' } } }, empty: { data1: { - data: { status: 200, code: 200, data: { resultType: 'table', result: [] }, msg: 'OK' } + status: 200, + data: { code: 200, data: { resultType: 'table', result: [] }, msg: 'OK' } }, data2: { - data: { status: 200, code: 200, data: { resultType: 'table', result: [] }, msg: 'OK' } + status: 200, + data: { code: 200, data: { resultType: 'table', result: [] }, msg: 'OK' } } }, boundary: { data1: { + status: 200, data: { - status: 200, code: 200, queryKey: '549b4c3bcabf0feee193b834671879de', data: { @@ -154,8 +158,8 @@ export const mockData = { } }, data2: { + status: 200, data: { - status: 200, code: 200, data: { resultType: 'table', diff --git a/test/views/charts2/charts/linkMonitor/MockData/LinkDirectionGrid.js b/test/views/charts2/charts/linkMonitor/MockData/LinkDirectionGrid.js index 875f7953..0cab722f 100644 --- a/test/views/charts2/charts/linkMonitor/MockData/LinkDirectionGrid.js +++ b/test/views/charts2/charts/linkMonitor/MockData/LinkDirectionGrid.js @@ -1,25 +1,31 @@ export const mockData = { common: { data1: { - data: { status: 200, code: 200, queryKey: '610b4a743fa62b58cf5d70dab84b8b6f', success: true, message: null, statistics: { elapsed: 5, rows_read: 14027, bytes_read: 1416727, result_size: 25460, result_rows: 101 }, job: null, formatType: 'json', meta: [{ name: 'egress_link_id', type: 'long', category: 'Dimension' }, { name: 'ingress_link_id', type: 'long', category: 'Dimension' }, { name: 'total_bytes', type: 'long', category: 'Metric' }, { name: 'egress_bytes', type: 'long', category: 'Metric' }, { name: 'ingress_bytes', type: 'long', category: 'Metric' }, { name: 'establish_latency_ms', type: 'double', category: 'Metric' }, { name: 'http_response_latency', type: 'double', category: 'Metric' }, { name: 'ssl_con_latency', type: 'double', category: 'Metric' }, { name: 'tcp_lostlen_percent', type: 'double', category: 'Metric' }, { name: 'pkt_retrans_percent', type: 'double', category: 'Metric' }], data: { resultType: 'table', result: [{ egressLinkId: '0', ingressLinkId: '0', totalBytes: '434765502450', totalBitsRate: 966145560.96, egressBytes: '363544351329', egressBitsRate: 807876336.32, ingressBytes: '41292202303', ingressBitsRate: 91760449.6, establishLatencyMs: 90.0669, httpResponseLatency: 184.3881, sslConLatency: 0, tcpLostlenPercent: 0.0101, pktRetransPercent: 0.0226 }, { egressLinkId: '256', ingressLinkId: '257', totalBytes: '534995002', totalBitsRate: 1188877.76, egressBytes: '447206140', egressBitsRate: 993791.44, ingressBytes: '36435444', ingressBitsRate: 80967.68, establishLatencyMs: 75.5612, httpResponseLatency: 240.396, sslConLatency: 0, tcpLostlenPercent: 0.0029, pktRetransPercent: 0.0111, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '512', ingressLinkId: '257', totalBytes: '382047632', totalBitsRate: 848994.72, egressBytes: '352856271', egressBitsRate: 784125.04, ingressBytes: '18385230', ingressBitsRate: 40856.08, establishLatencyMs: 98.59, httpResponseLatency: 100.5516, sslConLatency: 0, tcpLostlenPercent: 0.0127, pktRetransPercent: 0.0137, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '768', ingressLinkId: '257', totalBytes: '301459240', totalBitsRate: 669909.44, egressBytes: '245480754', egressBitsRate: 545512.8, ingressBytes: '34220091', ingressBitsRate: 76044.64, establishLatencyMs: 108.9343, httpResponseLatency: 160.9725, sslConLatency: 0, tcpLostlenPercent: 0.0022, pktRetransPercent: 0.0173, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1024', ingressLinkId: '257', totalBytes: '428032397', totalBitsRate: 951183.12, egressBytes: '376399588', egressBitsRate: 836443.52, ingressBytes: '37870336', ingressBitsRate: 84156.32, establishLatencyMs: 88.6706, httpResponseLatency: 131.524, sslConLatency: 0, tcpLostlenPercent: 0.0019, pktRetransPercent: 0.0126, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1280', ingressLinkId: '257', totalBytes: '593122664', totalBitsRate: 1318050.4, egressBytes: '555791176', egressBitsRate: 1235091.52, ingressBytes: '18981210', ingressBitsRate: 42180.48, establishLatencyMs: 101.3537, httpResponseLatency: 254.3362, sslConLatency: 0, tcpLostlenPercent: 0.0044, pktRetransPercent: 0.0135, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1536', ingressLinkId: '257', totalBytes: '377183386', totalBitsRate: 838185.28, egressBytes: '327968719', egressBitsRate: 728819.36, ingressBytes: '24566904', ingressBitsRate: 54593.12, establishLatencyMs: 79.7386, httpResponseLatency: 95.8814, sslConLatency: 0, tcpLostlenPercent: 0.012, pktRetransPercent: 0.0086, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1792', ingressLinkId: '257', totalBytes: '301778612', totalBitsRate: 670619.12, egressBytes: '280107213', egressBitsRate: 622460.48, ingressBytes: '10638455', ingressBitsRate: 23641.04, establishLatencyMs: 91.1497, httpResponseLatency: 152.3226, sslConLatency: 0, tcpLostlenPercent: 0.0013, pktRetransPercent: 0.0181, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '2048', ingressLinkId: '257', totalBytes: '412927429', totalBitsRate: 917616.48, egressBytes: '367353610', egressBitsRate: 816341.36, ingressBytes: '29730481', ingressBitsRate: 66067.76, establishLatencyMs: 76.6838, httpResponseLatency: 94.3495, sslConLatency: 0, tcpLostlenPercent: 0.0053, pktRetransPercent: 0.0198, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2304', ingressLinkId: '257', totalBytes: '257255077', totalBitsRate: 571677.92, egressBytes: '233167830', egressBitsRate: 518150.72, ingressBytes: '11320646', ingressBitsRate: 25156.96, establishLatencyMs: 78.8745, httpResponseLatency: 241.5664, sslConLatency: 0, tcpLostlenPercent: 0.0037, pktRetransPercent: 0.0113, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2816', ingressLinkId: '257', totalBytes: '391380150', totalBitsRate: 869733.68, egressBytes: '358497570', egressBitsRate: 796661.28, ingressBytes: '20314164', ingressBitsRate: 45142.56, establishLatencyMs: 104.9262, httpResponseLatency: 137.3243, sslConLatency: 0, tcpLostlenPercent: 0.0097, pktRetransPercent: 0.0107, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '256', ingressLinkId: '513', totalBytes: '517401256', totalBitsRate: 1149780.56, egressBytes: '468690408', egressBitsRate: 1041534.24, ingressBytes: '31206282', ingressBitsRate: 69347.28, establishLatencyMs: 95.7474, httpResponseLatency: 117.9447, sslConLatency: 0, tcpLostlenPercent: 0.0035, pktRetransPercent: 0.0108, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '512', ingressLinkId: '513', totalBytes: '286609222', totalBitsRate: 636909.36, egressBytes: '253449086', egressBitsRate: 563220.16, ingressBytes: '6606987', ingressBitsRate: 14682.16, establishLatencyMs: 111.8724, httpResponseLatency: 151.1935, sslConLatency: 0, tcpLostlenPercent: 0.0064, pktRetransPercent: 0.0181, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '768', ingressLinkId: '513', totalBytes: '427290221', totalBitsRate: 949533.84, egressBytes: '288163262', egressBitsRate: 640362.8, ingressBytes: '124378803', ingressBitsRate: 276397.36, establishLatencyMs: 84.4296, httpResponseLatency: 107.7755, sslConLatency: 0, tcpLostlenPercent: 0.0042, pktRetransPercent: 0.0136, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1024', ingressLinkId: '513', totalBytes: '426123014', totalBitsRate: 946940, egressBytes: '378583688', egressBitsRate: 841297.12, ingressBytes: '34027267', ingressBitsRate: 75616.16, establishLatencyMs: 129.1622, httpResponseLatency: 135.7024, sslConLatency: 0, tcpLostlenPercent: 0.0024, pktRetransPercent: 0.0293, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1280', ingressLinkId: '513', totalBytes: '480617318', totalBitsRate: 1068038.48, egressBytes: '355592692', egressBitsRate: 790206, ingressBytes: '107451059', ingressBitsRate: 238780.16, establishLatencyMs: 81.3479, httpResponseLatency: 110.0703, sslConLatency: 0, tcpLostlenPercent: 0.001, pktRetransPercent: 0.0122, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1536', ingressLinkId: '513', totalBytes: '378829607', totalBitsRate: 841843.6, egressBytes: '340354481', egressBitsRate: 756343.28, ingressBytes: '23667236', ingressBitsRate: 52593.84, establishLatencyMs: 72.8997, httpResponseLatency: 155.1332, sslConLatency: 0, tcpLostlenPercent: 0.0055, pktRetransPercent: 0.0192, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1792', ingressLinkId: '513', totalBytes: '262609018', totalBitsRate: 583575.6, egressBytes: '214741913', egressBitsRate: 477204.24, ingressBytes: '36558657', ingressBitsRate: 81241.44, establishLatencyMs: 107.3446, httpResponseLatency: 128.785, sslConLatency: 0, tcpLostlenPercent: 0.0024, pktRetransPercent: 0.021, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '2048', ingressLinkId: '513', totalBytes: '836277105', totalBitsRate: 1858393.6, egressBytes: '762938193', egressBitsRate: 1695418.24, ingressBytes: '51506746', ingressBitsRate: 114459.44, establishLatencyMs: 106.0485, httpResponseLatency: 101.236, sslConLatency: 0, tcpLostlenPercent: 0.005, pktRetransPercent: 0.0195, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '2304', ingressLinkId: '513', totalBytes: '463632587', totalBitsRate: 1030294.64, egressBytes: '399024852', egressBitsRate: 886721.92, ingressBytes: '54635227', ingressBitsRate: 121411.6, establishLatencyMs: 70.067, httpResponseLatency: 82.2698, sslConLatency: 0, tcpLostlenPercent: 0.0105, pktRetransPercent: 0.016, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2816', ingressLinkId: '513', totalBytes: '375090527', totalBitsRate: 833534.48, egressBytes: '337080747', egressBitsRate: 749068.32, ingressBytes: '19278792', ingressBitsRate: 42841.76, establishLatencyMs: 78.1834, httpResponseLatency: 140.8154, sslConLatency: 0, tcpLostlenPercent: 0.0026, pktRetransPercent: 0.013, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '256', ingressLinkId: '769', totalBytes: '394768512', totalBitsRate: 877263.36, egressBytes: '359885579', egressBitsRate: 799745.76, ingressBytes: '20504968', ingressBitsRate: 45566.56, establishLatencyMs: 122.3644, httpResponseLatency: 206.5775, sslConLatency: 0, tcpLostlenPercent: 0.0042, pktRetransPercent: 0.0242, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '512', ingressLinkId: '769', totalBytes: '364786783', totalBitsRate: 810637.28, egressBytes: '325142570', egressBitsRate: 722539.04, ingressBytes: '29059460', ingressBitsRate: 64576.56, establishLatencyMs: 72.3282, httpResponseLatency: 115.4195, sslConLatency: 0, tcpLostlenPercent: 0.0076, pktRetransPercent: 0.0103, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '768', ingressLinkId: '769', totalBytes: '569429971', totalBitsRate: 1265399.92, egressBytes: '397984191', egressBitsRate: 884409.28, ingressBytes: '157860292', ingressBitsRate: 350800.64, establishLatencyMs: 71.1193, httpResponseLatency: 169.7063, sslConLatency: 0, tcpLostlenPercent: 0.0048, pktRetransPercent: 0.0225, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1024', ingressLinkId: '769', totalBytes: '579478002', totalBitsRate: 1287728.88, egressBytes: '214792325', egressBitsRate: 477316.24, ingressBytes: '94103478', ingressBitsRate: 209118.8, establishLatencyMs: 91.5207, httpResponseLatency: 165.092, sslConLatency: 0, tcpLostlenPercent: 0.006, pktRetransPercent: 0.0105, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1280', ingressLinkId: '769', totalBytes: '496892965', totalBitsRate: 1104206.56, egressBytes: '457600850', egressBitsRate: 1016890.8, ingressBytes: '24748500', ingressBitsRate: 54996.64, establishLatencyMs: 74.9958, httpResponseLatency: 584.5813, sslConLatency: 0, tcpLostlenPercent: 0.0025, pktRetransPercent: 0.014, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1536', ingressLinkId: '769', totalBytes: '623165485', totalBitsRate: 1384812.16, egressBytes: '526692235', egressBitsRate: 1170427.2, ingressBytes: '70998403', ingressBitsRate: 157774.24, establishLatencyMs: 80.2485, httpResponseLatency: 1100.2457, sslConLatency: 0, tcpLostlenPercent: 0.0057, pktRetransPercent: 0.0165, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1792', ingressLinkId: '769', totalBytes: '376219195', totalBitsRate: 836042.64, egressBytes: '320229891', egressBitsRate: 711622, ingressBytes: '42082573', ingressBitsRate: 93516.8, establishLatencyMs: 89.2396, httpResponseLatency: 176.6074, sslConLatency: 0, tcpLostlenPercent: 0.0017, pktRetransPercent: 0.0129, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2048', ingressLinkId: '769', totalBytes: '537023143', totalBitsRate: 1193384.8, egressBytes: '485285786', egressBitsRate: 1078412.88, ingressBytes: '33957352', ingressBitsRate: 75460.8, establishLatencyMs: 161.714, httpResponseLatency: 299.7771, sslConLatency: 0, tcpLostlenPercent: 0.009, pktRetransPercent: 0.0205, usageMore90: false, score: 4, scoreLow3: false }, { egressLinkId: '2304', ingressLinkId: '769', totalBytes: '408668842', totalBitsRate: 908152.96, egressBytes: '364103470', egressBitsRate: 809118.8, ingressBytes: '27943863', ingressBitsRate: 62097.44, establishLatencyMs: 84.474, httpResponseLatency: 233.6678, sslConLatency: 0, tcpLostlenPercent: 0.0019, pktRetransPercent: 0.0191, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '2816', ingressLinkId: '769', totalBytes: '281357790', totalBitsRate: 625239.52, egressBytes: '246576400', egressBitsRate: 547947.52, ingressBytes: '22861043', ingressBitsRate: 50802.32, establishLatencyMs: 73.8313, httpResponseLatency: 101.7295, sslConLatency: 0, tcpLostlenPercent: 0.0026, pktRetransPercent: 0.0161, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '256', ingressLinkId: '1025', totalBytes: '298043232', totalBitsRate: 662318.32, egressBytes: '277239595', egressBitsRate: 616088, ingressBytes: '9157756', ingressBitsRate: 20350.56, establishLatencyMs: 76.5483, httpResponseLatency: 107.388, sslConLatency: 0, tcpLostlenPercent: 0.0029, pktRetransPercent: 0.012, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '512', ingressLinkId: '1025', totalBytes: '437964797', totalBitsRate: 973255.12, egressBytes: '392328303', egressBitsRate: 871840.64, ingressBytes: '25486621', ingressBitsRate: 56636.96, establishLatencyMs: 73.2709, httpResponseLatency: 124.8192, sslConLatency: 0, tcpLostlenPercent: 0.0047, pktRetransPercent: 0.0243, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '768', ingressLinkId: '1025', totalBytes: '464792996', totalBitsRate: 1032873.36, egressBytes: '429292974', egressBitsRate: 953984.4, ingressBytes: '24968412', ingressBitsRate: 55485.36, establishLatencyMs: 73.624, httpResponseLatency: 143.2992, sslConLatency: 0, tcpLostlenPercent: 0.0028, pktRetransPercent: 0.0327, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1024', ingressLinkId: '1025', totalBytes: '309813302', totalBitsRate: 688474, egressBytes: '275012816', egressBitsRate: 611139.6, ingressBytes: '14787925', ingressBitsRate: 32862.08, establishLatencyMs: 69.9228, httpResponseLatency: 224.0711, sslConLatency: 0, tcpLostlenPercent: 0.0071, pktRetransPercent: 0.0086, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1280', ingressLinkId: '1025', totalBytes: '625851341', totalBitsRate: 1390780.72, egressBytes: '533489719', egressBitsRate: 1185532.72, ingressBytes: '77867845', ingressBitsRate: 173039.68, establishLatencyMs: 117.7443, httpResponseLatency: 234.0509, sslConLatency: 0, tcpLostlenPercent: 0.008, pktRetransPercent: 0.0153, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1536', ingressLinkId: '1025', totalBytes: '511034764', totalBitsRate: 1135632.8, egressBytes: '464176598', egressBitsRate: 1031503.52, ingressBytes: '31537941', ingressBitsRate: 70084.32, establishLatencyMs: 79.7973, httpResponseLatency: 108.2308, sslConLatency: 0, tcpLostlenPercent: 0.0097, pktRetransPercent: 0.0127, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1792', ingressLinkId: '1025', totalBytes: '510497154', totalBitsRate: 1134438.16, egressBytes: '477831366', egressBitsRate: 1061847.44, ingressBytes: '12705069', ingressBitsRate: 28233.52, establishLatencyMs: 90.772, httpResponseLatency: 138.007, sslConLatency: 0, tcpLostlenPercent: 0.0073, pktRetransPercent: 0.0289, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '2048', ingressLinkId: '1025', totalBytes: '705186479', totalBitsRate: 1567081.04, egressBytes: '609149182', egressBitsRate: 1353664.88, ingressBytes: '61214875', ingressBitsRate: 136033.04, establishLatencyMs: 68.2169, httpResponseLatency: 159.491, sslConLatency: 0, tcpLostlenPercent: 0.0041, pktRetransPercent: 0.0182, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2304', ingressLinkId: '1025', totalBytes: '295233728', totalBitsRate: 656074.96, egressBytes: '211230066', egressBitsRate: 469400.16, ingressBytes: '25660250', ingressBitsRate: 57022.8, establishLatencyMs: 151.2545, httpResponseLatency: 228.9587, sslConLatency: 0, tcpLostlenPercent: 0.0031, pktRetransPercent: 0.0173, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '2816', ingressLinkId: '1025', totalBytes: '304032381', totalBitsRate: 675627.52, egressBytes: '275012404', egressBitsRate: 611138.64, ingressBytes: '15041391', ingressBitsRate: 33425.28, establishLatencyMs: 87.4599, httpResponseLatency: 163.9644, sslConLatency: 0, tcpLostlenPercent: 0.0036, pktRetransPercent: 0.0142, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '256', ingressLinkId: '1281', totalBytes: '417367176', totalBitsRate: 927482.64, egressBytes: '367204335', egressBitsRate: 816009.6, ingressBytes: '34011146', ingressBitsRate: 75580.32, establishLatencyMs: 76.0439, httpResponseLatency: 133.8785, sslConLatency: 0, tcpLostlenPercent: 0.0026, pktRetransPercent: 0.0066, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '512', ingressLinkId: '1281', totalBytes: '383696444', totalBitsRate: 852658.8, egressBytes: '333439743', egressBitsRate: 740977.2, ingressBytes: '41316879', ingressBitsRate: 91815.28, establishLatencyMs: 74.6806, httpResponseLatency: 252.2572, sslConLatency: 0, tcpLostlenPercent: 0.0059, pktRetransPercent: 0.011, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '768', ingressLinkId: '1281', totalBytes: '259621097', totalBitsRate: 576935.76, egressBytes: '232771102', egressBitsRate: 517269.12, ingressBytes: '16746429', ingressBitsRate: 37214.32, establishLatencyMs: 82.902, httpResponseLatency: 107.0519, sslConLatency: 0, tcpLostlenPercent: 0.0038, pktRetransPercent: 0.0091, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1024', ingressLinkId: '1281', totalBytes: '393383026', totalBitsRate: 874184.48, egressBytes: '351396318', egressBitsRate: 780880.72, ingressBytes: '31340065', ingressBitsRate: 69644.56, establishLatencyMs: 64.413, httpResponseLatency: 85.3855, sslConLatency: 0, tcpLostlenPercent: 0.0025, pktRetransPercent: 0.0114, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1280', ingressLinkId: '1281', totalBytes: '387129909', totalBitsRate: 860288.72, egressBytes: '302488556', egressBitsRate: 672196.8, ingressBytes: '72455586', ingressBitsRate: 161012.4, establishLatencyMs: 76.4561, httpResponseLatency: 192.1006, sslConLatency: 0, tcpLostlenPercent: 0.0052, pktRetransPercent: 0.0168, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1536', ingressLinkId: '1281', totalBytes: '425879588', totalBitsRate: 946399.12, egressBytes: '263435832', egressBitsRate: 585412.96, ingressBytes: '146140145', ingressBitsRate: 324755.84, establishLatencyMs: 144.9736, httpResponseLatency: 145.7219, sslConLatency: 0, tcpLostlenPercent: 0.0054, pktRetransPercent: 0.019, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1792', ingressLinkId: '1281', totalBytes: '287483397', totalBitsRate: 638852, egressBytes: '257365122', egressBitsRate: 571922.48, ingressBytes: '20811515', ingressBitsRate: 46247.84, establishLatencyMs: 115.147, httpResponseLatency: 190.5346, sslConLatency: 0, tcpLostlenPercent: 0.0117, pktRetransPercent: 0.0218, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '2048', ingressLinkId: '1281', totalBytes: '261944760', totalBitsRate: 582099.44, egressBytes: '224739060', egressBitsRate: 499420.16, ingressBytes: '22733255', ingressBitsRate: 50518.32, establishLatencyMs: 70.5032, httpResponseLatency: 88.7246, sslConLatency: 0, tcpLostlenPercent: 0.0026, pktRetransPercent: 0.0119, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2304', ingressLinkId: '1281', totalBytes: '384921036', totalBitsRate: 855380.08, egressBytes: '287289027', egressBitsRate: 638420.08, ingressBytes: '85851016', ingressBitsRate: 190780, establishLatencyMs: 77.1338, httpResponseLatency: 119.3661, sslConLatency: 0, tcpLostlenPercent: 0.0038, pktRetransPercent: 0.0157, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2816', ingressLinkId: '1281', totalBytes: '747219384', totalBitsRate: 1660487.52, egressBytes: '711493451', egressBitsRate: 1581096.56, ingressBytes: '19888607', ingressBitsRate: 44196.88, establishLatencyMs: 94.9185, httpResponseLatency: 174.1762, sslConLatency: 0, tcpLostlenPercent: 0.0033, pktRetransPercent: 0.0225, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '256', ingressLinkId: '1537', totalBytes: '314181123', totalBitsRate: 698180.24, egressBytes: '290716163', egressBitsRate: 646035.92, ingressBytes: '12528086', ingressBitsRate: 27840.16, establishLatencyMs: 64.4391, httpResponseLatency: 83.7041, sslConLatency: 0, tcpLostlenPercent: 0.0119, pktRetransPercent: 0.0142, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '512', ingressLinkId: '1537', totalBytes: '491448414', totalBitsRate: 1092107.6, egressBytes: '373279539', egressBitsRate: 829510.08, ingressBytes: '58058567', ingressBitsRate: 129019.04, establishLatencyMs: 118.2363, httpResponseLatency: 117.7304, sslConLatency: 0, tcpLostlenPercent: 0.0072, pktRetransPercent: 0.0116, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '768', ingressLinkId: '1537', totalBytes: '398005843', totalBitsRate: 884457.44, egressBytes: '267392714', egressBitsRate: 594206, ingressBytes: '101268761', ingressBitsRate: 225041.68, establishLatencyMs: 83.3056, httpResponseLatency: 147.8219, sslConLatency: 0, tcpLostlenPercent: 0.0032, pktRetransPercent: 0.0151, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1024', ingressLinkId: '1537', totalBytes: '344047174', totalBitsRate: 764549.28, egressBytes: '318533531', egressBitsRate: 707852.32, ingressBytes: '16906918', ingressBitsRate: 37570.96, establishLatencyMs: 121.1739, httpResponseLatency: 126.4862, sslConLatency: 0, tcpLostlenPercent: 0.0073, pktRetransPercent: 0.0186, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1280', ingressLinkId: '1537', totalBytes: '471587736', totalBitsRate: 1047972.72, egressBytes: '410880816', egressBitsRate: 913068.48, ingressBytes: '28281853', ingressBitsRate: 62848.56, establishLatencyMs: 70.9806, httpResponseLatency: 185.4856, sslConLatency: 0, tcpLostlenPercent: 0.0035, pktRetransPercent: 0.0125, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1536', ingressLinkId: '1537', totalBytes: '435477272', totalBitsRate: 967727.28, egressBytes: '354445790', egressBitsRate: 787657.28, ingressBytes: '57547816', ingressBitsRate: 127884, establishLatencyMs: 77.2037, httpResponseLatency: 120.3639, sslConLatency: 0, tcpLostlenPercent: 0.0058, pktRetransPercent: 0.0211, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1792', ingressLinkId: '1537', totalBytes: '421275299', totalBitsRate: 936167.36, egressBytes: '394027515', egressBitsRate: 875616.72, ingressBytes: '11330580', ingressBitsRate: 25179.04, establishLatencyMs: 87.0062, httpResponseLatency: 185.6153, sslConLatency: 0, tcpLostlenPercent: 0.0065, pktRetransPercent: 0.0141, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2048', ingressLinkId: '1537', totalBytes: '753697278', totalBitsRate: 1674882.88, egressBytes: '671374082', egressBitsRate: 1491942.4, ingressBytes: '62801227', ingressBitsRate: 139558.32, establishLatencyMs: 89.8664, httpResponseLatency: 117.8758, sslConLatency: 0, tcpLostlenPercent: 0.0032, pktRetransPercent: 0.0144, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2304', ingressLinkId: '1537', totalBytes: '460044320', totalBitsRate: 1022320.72, egressBytes: '389631794', egressBitsRate: 865848.4, ingressBytes: '51549641', ingressBitsRate: 114554.72, establishLatencyMs: 88.5266, httpResponseLatency: 126.5988, sslConLatency: 0, tcpLostlenPercent: 0.0012, pktRetransPercent: 0.0203, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '2816', ingressLinkId: '1537', totalBytes: '350106467', totalBitsRate: 778014.4, egressBytes: '273295970', egressBitsRate: 607324.4, ingressBytes: '68060771', ingressBitsRate: 151246.16, establishLatencyMs: 73.7358, httpResponseLatency: 116.135, sslConLatency: 0, tcpLostlenPercent: 0.0045, pktRetransPercent: 0.0341, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '256', ingressLinkId: '1793', totalBytes: '452268295', totalBitsRate: 1005040.64, egressBytes: '379485980', egressBitsRate: 843302.16, ingressBytes: '55074312', ingressBitsRate: 122387.36, establishLatencyMs: 78.7998, httpResponseLatency: 93.5587, sslConLatency: 0, tcpLostlenPercent: 0.003, pktRetransPercent: 0.021, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '512', ingressLinkId: '1793', totalBytes: '700042073', totalBitsRate: 1555649.04, egressBytes: '673088759', egressBitsRate: 1495752.8, ingressBytes: '10410544', ingressBitsRate: 23134.56, establishLatencyMs: 85.8763, httpResponseLatency: 159.1093, sslConLatency: 0, tcpLostlenPercent: 0.0041, pktRetransPercent: 0.0157, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '768', ingressLinkId: '1793', totalBytes: '271912982', totalBitsRate: 604251.04, egressBytes: '227792078', egressBitsRate: 506204.64, ingressBytes: '31821353', ingressBitsRate: 70714.08, establishLatencyMs: 73.8296, httpResponseLatency: 84.6696, sslConLatency: 0, tcpLostlenPercent: 0.0054, pktRetransPercent: 0.0084, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1024', ingressLinkId: '1793', totalBytes: '502977380', totalBitsRate: 1117727.52, egressBytes: '324437335', egressBitsRate: 720971.84, ingressBytes: '167435918', ingressBitsRate: 372079.84, establishLatencyMs: 68.3019, httpResponseLatency: 120.6175, sslConLatency: 0, tcpLostlenPercent: 0.0083, pktRetransPercent: 0.0086, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1280', ingressLinkId: '1793', totalBytes: '473709275', totalBitsRate: 1052687.28, egressBytes: '408981966', egressBitsRate: 908848.8, ingressBytes: '50085555', ingressBitsRate: 111301.2, establishLatencyMs: 80.0523, httpResponseLatency: 138.3115, sslConLatency: 0, tcpLostlenPercent: 0.0029, pktRetransPercent: 0.0205, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1536', ingressLinkId: '1793', totalBytes: '419864446', totalBitsRate: 933032.08, egressBytes: '365874375', egressBitsRate: 813054.16, ingressBytes: '37465965', ingressBitsRate: 83257.68, establishLatencyMs: 71.3478, httpResponseLatency: 77.8483, sslConLatency: 0, tcpLostlenPercent: 0.0013, pktRetransPercent: 0.0116, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1792', ingressLinkId: '1793', totalBytes: '339160607', totalBitsRate: 753690.24, egressBytes: '301992422', egressBitsRate: 671094.24, ingressBytes: '23961274', ingressBitsRate: 53247.28, establishLatencyMs: 87.9845, httpResponseLatency: 135.7731, sslConLatency: 0, tcpLostlenPercent: 0.0036, pktRetransPercent: 0.013, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2048', ingressLinkId: '1793', totalBytes: '616101903', totalBitsRate: 1369115.36, egressBytes: '522679143', egressBitsRate: 1161509.2, ingressBytes: '74691412', ingressBitsRate: 165980.88, establishLatencyMs: 146.3266, httpResponseLatency: 382.936, sslConLatency: 0, tcpLostlenPercent: 0.011, pktRetransPercent: 0.0218, usageMore90: false, score: 4, scoreLow3: false }, { egressLinkId: '2304', ingressLinkId: '1793', totalBytes: '353905850', totalBitsRate: 786457.44, egressBytes: '303343002', egressBitsRate: 674095.6, ingressBytes: '35558267', ingressBitsRate: 79018.4, establishLatencyMs: 65.5383, httpResponseLatency: 182.1653, sslConLatency: 0, tcpLostlenPercent: 0.0025, pktRetransPercent: 0.0176, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2816', ingressLinkId: '1793', totalBytes: '310621344', totalBitsRate: 690269.68, egressBytes: '270045410', egressBitsRate: 600100.88, ingressBytes: '25119191', ingressBitsRate: 55820.4, establishLatencyMs: 77.1911, httpResponseLatency: 100.1092, sslConLatency: 0, tcpLostlenPercent: 0.0034, pktRetransPercent: 0.0123, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '256', ingressLinkId: '2049', totalBytes: '388093577', totalBitsRate: 862430.16, egressBytes: '348827067', egressBitsRate: 775171.28, ingressBytes: '20464561', ingressBitsRate: 45476.8, establishLatencyMs: 77.5916, httpResponseLatency: 147.349, sslConLatency: 0, tcpLostlenPercent: 0.0111, pktRetransPercent: 0.011, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '512', ingressLinkId: '2049', totalBytes: '711311059', totalBitsRate: 1580691.28, egressBytes: '653169387', egressBitsRate: 1451487.52, ingressBytes: '23736470', ingressBitsRate: 52747.68, establishLatencyMs: 88.1133, httpResponseLatency: 442.7744, sslConLatency: 0, tcpLostlenPercent: 0.0037, pktRetransPercent: 0.0282, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '768', ingressLinkId: '2049', totalBytes: '544169365', totalBitsRate: 1209265.28, egressBytes: '480502970', egressBitsRate: 1067784.4, ingressBytes: '42064720', ingressBitsRate: 93477.12, establishLatencyMs: 86.859, httpResponseLatency: 96.2626, sslConLatency: 0, tcpLostlenPercent: 0.0041, pktRetransPercent: 0.0188, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1024', ingressLinkId: '2049', totalBytes: '511188364', totalBitsRate: 1135974.16, egressBytes: '439810340', egressBitsRate: 977356.32, ingressBytes: '60103971', ingressBitsRate: 133564.4, establishLatencyMs: 100.5463, httpResponseLatency: 183.6345, sslConLatency: 0, tcpLostlenPercent: 0.0094, pktRetransPercent: 0.0087, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1280', ingressLinkId: '2049', totalBytes: '666928930', totalBitsRate: 1482064.32, egressBytes: '626185114', egressBitsRate: 1391522.48, ingressBytes: '23926270', ingressBitsRate: 53169.52, establishLatencyMs: 119.9707, httpResponseLatency: 205.3038, sslConLatency: 0, tcpLostlenPercent: 0.0052, pktRetransPercent: 0.0272, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1536', ingressLinkId: '2049', totalBytes: '329173462', totalBitsRate: 731496.56, egressBytes: '255905021', egressBitsRate: 568677.84, ingressBytes: '57317526', ingressBitsRate: 127372.24, establishLatencyMs: 66.6872, httpResponseLatency: 286.5033, sslConLatency: 0, tcpLostlenPercent: 0.0047, pktRetransPercent: 0.0227, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1792', ingressLinkId: '2049', totalBytes: '308368988', totalBitsRate: 685264.4, egressBytes: '237340865', egressBitsRate: 527424.16, ingressBytes: '60510292', ingressBitsRate: 134467.28, establishLatencyMs: 72.5769, httpResponseLatency: 255.8301, sslConLatency: 0, tcpLostlenPercent: 0.0083, pktRetransPercent: 0.014, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2048', ingressLinkId: '2049', totalBytes: '321568878', totalBitsRate: 714597.52, egressBytes: '273035831', egressBitsRate: 606746.32, ingressBytes: '28038175', ingressBitsRate: 62307.04, establishLatencyMs: 66.0751, httpResponseLatency: 312.7351, sslConLatency: 0, tcpLostlenPercent: 0.0042, pktRetransPercent: 0.0156, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2304', ingressLinkId: '2049', totalBytes: '380061893', totalBitsRate: 844582, egressBytes: '315061822', egressBitsRate: 700137.36, ingressBytes: '52657744', ingressBitsRate: 117017.2, establishLatencyMs: 75.8593, httpResponseLatency: 132.0823, sslConLatency: 0, tcpLostlenPercent: 0.0047, pktRetransPercent: 0.0101, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2816', ingressLinkId: '2049', totalBytes: '433349564', totalBitsRate: 962999.04, egressBytes: '310273265', egressBitsRate: 689496.16, ingressBytes: '107419516', ingressBitsRate: 238710, establishLatencyMs: 79.7628, httpResponseLatency: 127.4814, sslConLatency: 0, tcpLostlenPercent: 0.0031, pktRetransPercent: 0.0137, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '256', ingressLinkId: '2305', totalBytes: '441740953', totalBitsRate: 981646.56, egressBytes: '344031397', egressBitsRate: 764514.24, ingressBytes: '89500725', ingressBitsRate: 198890.48, establishLatencyMs: 83.4651, httpResponseLatency: 184.2666, sslConLatency: 0, tcpLostlenPercent: 0.006, pktRetransPercent: 0.0132, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '512', ingressLinkId: '2305', totalBytes: '492163025', totalBitsRate: 1093695.6, egressBytes: '452782283', egressBitsRate: 1006182.88, ingressBytes: '24458788', ingressBitsRate: 54352.88, establishLatencyMs: 75.3955, httpResponseLatency: 120.5217, sslConLatency: 0, tcpLostlenPercent: 0.0062, pktRetransPercent: 0.0091, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '768', ingressLinkId: '2305', totalBytes: '412085678', totalBitsRate: 915745.92, egressBytes: '386711916', egressBitsRate: 859359.84, ingressBytes: '16901737', ingressBitsRate: 37559.44, establishLatencyMs: 89.1835, httpResponseLatency: 188.111, sslConLatency: 0, tcpLostlenPercent: 0.0147, pktRetransPercent: 0.0127, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1024', ingressLinkId: '2305', totalBytes: '493492790', totalBitsRate: 1096650.64, egressBytes: '452074866', egressBitsRate: 1004610.8, ingressBytes: '31521658', ingressBitsRate: 70048.16, establishLatencyMs: 82.6305, httpResponseLatency: 83.2076, sslConLatency: 0, tcpLostlenPercent: 0.0075, pktRetransPercent: 0.0123, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1280', ingressLinkId: '2305', totalBytes: '512733888', totalBitsRate: 1139408.64, egressBytes: '471200897', egressBitsRate: 1047113.12, ingressBytes: '28133375', ingressBitsRate: 62518.64, establishLatencyMs: 70.762, httpResponseLatency: 101.5263, sslConLatency: 0, tcpLostlenPercent: 0.0046, pktRetransPercent: 0.0214, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1536', ingressLinkId: '2305', totalBytes: '747694085', totalBitsRate: 1661542.4, egressBytes: '691510780', egressBitsRate: 1536690.64, ingressBytes: '25897699', ingressBitsRate: 57550.48, establishLatencyMs: 83.79, httpResponseLatency: 90.0623, sslConLatency: 0, tcpLostlenPercent: 0.0091, pktRetransPercent: 0.0242, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1792', ingressLinkId: '2305', totalBytes: '376892219', totalBitsRate: 837538.24, egressBytes: '336286147', egressBitsRate: 747302.56, ingressBytes: '25717104', ingressBitsRate: 57149.12, establishLatencyMs: 104.1186, httpResponseLatency: 134.8195, sslConLatency: 0, tcpLostlenPercent: 0.0051, pktRetransPercent: 0.018, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '2048', ingressLinkId: '2305', totalBytes: '350689016', totalBitsRate: 779308.96, egressBytes: '324109790', egressBitsRate: 720244, ingressBytes: '14540455', ingressBitsRate: 32312.16, establishLatencyMs: 77.1332, httpResponseLatency: 497.0389, sslConLatency: 0, tcpLostlenPercent: 0.0063, pktRetransPercent: 0.0111, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2304', ingressLinkId: '2305', totalBytes: '365450281', totalBitsRate: 812111.76, egressBytes: '254568603', egressBitsRate: 565708, ingressBytes: '101035884', ingressBitsRate: 224524.16, establishLatencyMs: 96.1349, httpResponseLatency: 127.3401, sslConLatency: 0, tcpLostlenPercent: 0.0043, pktRetransPercent: 0.0178, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '2816', ingressLinkId: '2305', totalBytes: '582756711', totalBitsRate: 1295014.88, egressBytes: '418332040', egressBitsRate: 929626.72, ingressBytes: '151309467', ingressBitsRate: 336243.28, establishLatencyMs: 92.9852, httpResponseLatency: 92.9446, sslConLatency: 0, tcpLostlenPercent: 0.0071, pktRetransPercent: 0.0201, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '256', ingressLinkId: '2817', totalBytes: '297004684', totalBitsRate: 660010.4, egressBytes: '237149513', egressBitsRate: 526998.88, ingressBytes: '52715080', ingressBitsRate: 117144.64, establishLatencyMs: 75.9443, httpResponseLatency: 100.3348, sslConLatency: 0, tcpLostlenPercent: 0.025, pktRetransPercent: 0.0149, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '512', ingressLinkId: '2817', totalBytes: '244871384', totalBitsRate: 544158.64, egressBytes: '182387351', egressBitsRate: 405305.2, ingressBytes: '52813649', ingressBitsRate: 117363.68, establishLatencyMs: 90.5676, httpResponseLatency: 87.4456, sslConLatency: 0, tcpLostlenPercent: 0.0054, pktRetransPercent: 0.0174, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '768', ingressLinkId: '2817', totalBytes: '529048700', totalBitsRate: 1175663.76, egressBytes: '385067667', egressBitsRate: 855705.92, ingressBytes: '80988511', ingressBitsRate: 179974.48, establishLatencyMs: 146.6385, httpResponseLatency: 139.8804, sslConLatency: 0, tcpLostlenPercent: 0.0019, pktRetransPercent: 0.0126, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1024', ingressLinkId: '2817', totalBytes: '361792234', totalBitsRate: 803982.72, egressBytes: '330465149', egressBitsRate: 734366.96, ingressBytes: '17966232', ingressBitsRate: 39924.96, establishLatencyMs: 122.4222, httpResponseLatency: 136.6981, sslConLatency: 0, tcpLostlenPercent: 0.0027, pktRetransPercent: 0.0072, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1280', ingressLinkId: '2817', totalBytes: '421038470', totalBitsRate: 935641.04, egressBytes: '324989968', egressBitsRate: 722199.92, ingressBytes: '84806395', ingressBitsRate: 188458.64, establishLatencyMs: 92.1301, httpResponseLatency: 114.9592, sslConLatency: 0, tcpLostlenPercent: 0.0039, pktRetransPercent: 0.0172, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1536', ingressLinkId: '2817', totalBytes: '362980681', totalBitsRate: 806623.76, egressBytes: '311642328', egressBitsRate: 692538.48, ingressBytes: '38988231', ingressBitsRate: 86640.48, establishLatencyMs: 97.0047, httpResponseLatency: 155.4382, sslConLatency: 0, tcpLostlenPercent: 0.0069, pktRetransPercent: 0.0197, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1792', ingressLinkId: '2817', totalBytes: '621237185', totalBitsRate: 1380527.04, egressBytes: '568359927', egressBitsRate: 1263022.08, ingressBytes: '41110785', ingressBitsRate: 91357.28, establishLatencyMs: 64.7608, httpResponseLatency: 119.7391, sslConLatency: 0, tcpLostlenPercent: 0.0044, pktRetransPercent: 0.0252, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '2048', ingressLinkId: '2817', totalBytes: '260368736', totalBitsRate: 578597.2, egressBytes: '205185994', egressBitsRate: 455968.88, ingressBytes: '46626869', ingressBitsRate: 103615.28, establishLatencyMs: 99.6428, httpResponseLatency: 99.8736, sslConLatency: 0, tcpLostlenPercent: 0.003, pktRetransPercent: 0.0126, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2304', ingressLinkId: '2817', totalBytes: '318716905', totalBitsRate: 708259.76, egressBytes: '295082544', egressBitsRate: 655738.96, ingressBytes: '11859656', ingressBitsRate: 26354.8, establishLatencyMs: 70.4628, httpResponseLatency: 110.3507, sslConLatency: 0, tcpLostlenPercent: 0.0107, pktRetransPercent: 0.0272, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '2816', ingressLinkId: '2817', totalBytes: '314302936', totalBitsRate: 698450.96, egressBytes: '266218480', egressBitsRate: 591596.64, ingressBytes: '37481378', ingressBitsRate: 83291.92, establishLatencyMs: 73.5813, httpResponseLatency: 479.376, sslConLatency: 0, tcpLostlenPercent: 0.0054, pktRetransPercent: 0.0163, usageMore90: false, score: 6, scoreLow3: false }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20common_egress_link_id%20AS%20egress_link_id%2Ccommon_ingress_link_id%20AS%20ingress_link_id%2CSUM%28common_c2s_byte_num%20%2B%20common_s2c_byte_num%29%20AS%20total_bytes%2CSUM%28traffic_outbound_byte%29%20AS%20egress_bytes%2CSUM%28traffic_inbound_byte%29%20AS%20ingress_bytes%2CROUND%28AVG%28avg_establish_latency_ms%29%2C%204%29%20AS%20establish_latency_ms%2CROUND%28AVG%28avg_http_response_latency_ms%29%2C%204%29%20AS%20http_response_latency%2CROUND%28AVG%28avg_ssl_con_latency_ms%29%2C%204%29%20AS%20ssl_con_latency%2CROUND%28AVG%28tcp_lostlen_ratio%29%2C%204%29%20AS%20tcp_lostlen_percent%2CROUND%28AVG%28pkt_retrans_ratio%29%2C%204%29%20AS%20pkt_retrans_percent%20FROM%20metric_link%20WHERE%20stat_time%20%3E%3D%201675387137%20AND%20stat_time%20%3C%201675390737%20GROUP%20BY%20egress_link_id%2Cingress_link_id&format=json&option=real-time', msg: 'OK' } + status: 200, + data: { code: 200, queryKey: '610b4a743fa62b58cf5d70dab84b8b6f', success: true, message: null, statistics: { elapsed: 5, rows_read: 14027, bytes_read: 1416727, result_size: 25460, result_rows: 101 }, job: null, formatType: 'json', meta: [{ name: 'egress_link_id', type: 'long', category: 'Dimension' }, { name: 'ingress_link_id', type: 'long', category: 'Dimension' }, { name: 'total_bytes', type: 'long', category: 'Metric' }, { name: 'egress_bytes', type: 'long', category: 'Metric' }, { name: 'ingress_bytes', type: 'long', category: 'Metric' }, { name: 'establish_latency_ms', type: 'double', category: 'Metric' }, { name: 'http_response_latency', type: 'double', category: 'Metric' }, { name: 'ssl_con_latency', type: 'double', category: 'Metric' }, { name: 'tcp_lostlen_percent', type: 'double', category: 'Metric' }, { name: 'pkt_retrans_percent', type: 'double', category: 'Metric' }], data: { resultType: 'table', result: [{ egressLinkId: '0', ingressLinkId: '0', totalBytes: '434765502450', totalBitsRate: 966145560.96, egressBytes: '363544351329', egressBitsRate: 807876336.32, ingressBytes: '41292202303', ingressBitsRate: 91760449.6, establishLatencyMs: 90.0669, httpResponseLatency: 184.3881, sslConLatency: 0, tcpLostlenPercent: 0.0101, pktRetransPercent: 0.0226 }, { egressLinkId: '256', ingressLinkId: '257', totalBytes: '534995002', totalBitsRate: 1188877.76, egressBytes: '447206140', egressBitsRate: 993791.44, ingressBytes: '36435444', ingressBitsRate: 80967.68, establishLatencyMs: 75.5612, httpResponseLatency: 240.396, sslConLatency: 0, tcpLostlenPercent: 0.0029, pktRetransPercent: 0.0111, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '512', ingressLinkId: '257', totalBytes: '382047632', totalBitsRate: 848994.72, egressBytes: '352856271', egressBitsRate: 784125.04, ingressBytes: '18385230', ingressBitsRate: 40856.08, establishLatencyMs: 98.59, httpResponseLatency: 100.5516, sslConLatency: 0, tcpLostlenPercent: 0.0127, pktRetransPercent: 0.0137, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '768', ingressLinkId: '257', totalBytes: '301459240', totalBitsRate: 669909.44, egressBytes: '245480754', egressBitsRate: 545512.8, ingressBytes: '34220091', ingressBitsRate: 76044.64, establishLatencyMs: 108.9343, httpResponseLatency: 160.9725, sslConLatency: 0, tcpLostlenPercent: 0.0022, pktRetransPercent: 0.0173, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1024', ingressLinkId: '257', totalBytes: '428032397', totalBitsRate: 951183.12, egressBytes: '376399588', egressBitsRate: 836443.52, ingressBytes: '37870336', ingressBitsRate: 84156.32, establishLatencyMs: 88.6706, httpResponseLatency: 131.524, sslConLatency: 0, tcpLostlenPercent: 0.0019, pktRetransPercent: 0.0126, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1280', ingressLinkId: '257', totalBytes: '593122664', totalBitsRate: 1318050.4, egressBytes: '555791176', egressBitsRate: 1235091.52, ingressBytes: '18981210', ingressBitsRate: 42180.48, establishLatencyMs: 101.3537, httpResponseLatency: 254.3362, sslConLatency: 0, tcpLostlenPercent: 0.0044, pktRetransPercent: 0.0135, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1536', ingressLinkId: '257', totalBytes: '377183386', totalBitsRate: 838185.28, egressBytes: '327968719', egressBitsRate: 728819.36, ingressBytes: '24566904', ingressBitsRate: 54593.12, establishLatencyMs: 79.7386, httpResponseLatency: 95.8814, sslConLatency: 0, tcpLostlenPercent: 0.012, pktRetransPercent: 0.0086, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1792', ingressLinkId: '257', totalBytes: '301778612', totalBitsRate: 670619.12, egressBytes: '280107213', egressBitsRate: 622460.48, ingressBytes: '10638455', ingressBitsRate: 23641.04, establishLatencyMs: 91.1497, httpResponseLatency: 152.3226, sslConLatency: 0, tcpLostlenPercent: 0.0013, pktRetransPercent: 0.0181, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '2048', ingressLinkId: '257', totalBytes: '412927429', totalBitsRate: 917616.48, egressBytes: '367353610', egressBitsRate: 816341.36, ingressBytes: '29730481', ingressBitsRate: 66067.76, establishLatencyMs: 76.6838, httpResponseLatency: 94.3495, sslConLatency: 0, tcpLostlenPercent: 0.0053, pktRetransPercent: 0.0198, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2304', ingressLinkId: '257', totalBytes: '257255077', totalBitsRate: 571677.92, egressBytes: '233167830', egressBitsRate: 518150.72, ingressBytes: '11320646', ingressBitsRate: 25156.96, establishLatencyMs: 78.8745, httpResponseLatency: 241.5664, sslConLatency: 0, tcpLostlenPercent: 0.0037, pktRetransPercent: 0.0113, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2816', ingressLinkId: '257', totalBytes: '391380150', totalBitsRate: 869733.68, egressBytes: '358497570', egressBitsRate: 796661.28, ingressBytes: '20314164', ingressBitsRate: 45142.56, establishLatencyMs: 104.9262, httpResponseLatency: 137.3243, sslConLatency: 0, tcpLostlenPercent: 0.0097, pktRetransPercent: 0.0107, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '256', ingressLinkId: '513', totalBytes: '517401256', totalBitsRate: 1149780.56, egressBytes: '468690408', egressBitsRate: 1041534.24, ingressBytes: '31206282', ingressBitsRate: 69347.28, establishLatencyMs: 95.7474, httpResponseLatency: 117.9447, sslConLatency: 0, tcpLostlenPercent: 0.0035, pktRetransPercent: 0.0108, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '512', ingressLinkId: '513', totalBytes: '286609222', totalBitsRate: 636909.36, egressBytes: '253449086', egressBitsRate: 563220.16, ingressBytes: '6606987', ingressBitsRate: 14682.16, establishLatencyMs: 111.8724, httpResponseLatency: 151.1935, sslConLatency: 0, tcpLostlenPercent: 0.0064, pktRetransPercent: 0.0181, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '768', ingressLinkId: '513', totalBytes: '427290221', totalBitsRate: 949533.84, egressBytes: '288163262', egressBitsRate: 640362.8, ingressBytes: '124378803', ingressBitsRate: 276397.36, establishLatencyMs: 84.4296, httpResponseLatency: 107.7755, sslConLatency: 0, tcpLostlenPercent: 0.0042, pktRetransPercent: 0.0136, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1024', ingressLinkId: '513', totalBytes: '426123014', totalBitsRate: 946940, egressBytes: '378583688', egressBitsRate: 841297.12, ingressBytes: '34027267', ingressBitsRate: 75616.16, establishLatencyMs: 129.1622, httpResponseLatency: 135.7024, sslConLatency: 0, tcpLostlenPercent: 0.0024, pktRetransPercent: 0.0293, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1280', ingressLinkId: '513', totalBytes: '480617318', totalBitsRate: 1068038.48, egressBytes: '355592692', egressBitsRate: 790206, ingressBytes: '107451059', ingressBitsRate: 238780.16, establishLatencyMs: 81.3479, httpResponseLatency: 110.0703, sslConLatency: 0, tcpLostlenPercent: 0.001, pktRetransPercent: 0.0122, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1536', ingressLinkId: '513', totalBytes: '378829607', totalBitsRate: 841843.6, egressBytes: '340354481', egressBitsRate: 756343.28, ingressBytes: '23667236', ingressBitsRate: 52593.84, establishLatencyMs: 72.8997, httpResponseLatency: 155.1332, sslConLatency: 0, tcpLostlenPercent: 0.0055, pktRetransPercent: 0.0192, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1792', ingressLinkId: '513', totalBytes: '262609018', totalBitsRate: 583575.6, egressBytes: '214741913', egressBitsRate: 477204.24, ingressBytes: '36558657', ingressBitsRate: 81241.44, establishLatencyMs: 107.3446, httpResponseLatency: 128.785, sslConLatency: 0, tcpLostlenPercent: 0.0024, pktRetransPercent: 0.021, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '2048', ingressLinkId: '513', totalBytes: '836277105', totalBitsRate: 1858393.6, egressBytes: '762938193', egressBitsRate: 1695418.24, ingressBytes: '51506746', ingressBitsRate: 114459.44, establishLatencyMs: 106.0485, httpResponseLatency: 101.236, sslConLatency: 0, tcpLostlenPercent: 0.005, pktRetransPercent: 0.0195, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '2304', ingressLinkId: '513', totalBytes: '463632587', totalBitsRate: 1030294.64, egressBytes: '399024852', egressBitsRate: 886721.92, ingressBytes: '54635227', ingressBitsRate: 121411.6, establishLatencyMs: 70.067, httpResponseLatency: 82.2698, sslConLatency: 0, tcpLostlenPercent: 0.0105, pktRetransPercent: 0.016, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2816', ingressLinkId: '513', totalBytes: '375090527', totalBitsRate: 833534.48, egressBytes: '337080747', egressBitsRate: 749068.32, ingressBytes: '19278792', ingressBitsRate: 42841.76, establishLatencyMs: 78.1834, httpResponseLatency: 140.8154, sslConLatency: 0, tcpLostlenPercent: 0.0026, pktRetransPercent: 0.013, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '256', ingressLinkId: '769', totalBytes: '394768512', totalBitsRate: 877263.36, egressBytes: '359885579', egressBitsRate: 799745.76, ingressBytes: '20504968', ingressBitsRate: 45566.56, establishLatencyMs: 122.3644, httpResponseLatency: 206.5775, sslConLatency: 0, tcpLostlenPercent: 0.0042, pktRetransPercent: 0.0242, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '512', ingressLinkId: '769', totalBytes: '364786783', totalBitsRate: 810637.28, egressBytes: '325142570', egressBitsRate: 722539.04, ingressBytes: '29059460', ingressBitsRate: 64576.56, establishLatencyMs: 72.3282, httpResponseLatency: 115.4195, sslConLatency: 0, tcpLostlenPercent: 0.0076, pktRetransPercent: 0.0103, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '768', ingressLinkId: '769', totalBytes: '569429971', totalBitsRate: 1265399.92, egressBytes: '397984191', egressBitsRate: 884409.28, ingressBytes: '157860292', ingressBitsRate: 350800.64, establishLatencyMs: 71.1193, httpResponseLatency: 169.7063, sslConLatency: 0, tcpLostlenPercent: 0.0048, pktRetransPercent: 0.0225, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1024', ingressLinkId: '769', totalBytes: '579478002', totalBitsRate: 1287728.88, egressBytes: '214792325', egressBitsRate: 477316.24, ingressBytes: '94103478', ingressBitsRate: 209118.8, establishLatencyMs: 91.5207, httpResponseLatency: 165.092, sslConLatency: 0, tcpLostlenPercent: 0.006, pktRetransPercent: 0.0105, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1280', ingressLinkId: '769', totalBytes: '496892965', totalBitsRate: 1104206.56, egressBytes: '457600850', egressBitsRate: 1016890.8, ingressBytes: '24748500', ingressBitsRate: 54996.64, establishLatencyMs: 74.9958, httpResponseLatency: 584.5813, sslConLatency: 0, tcpLostlenPercent: 0.0025, pktRetransPercent: 0.014, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1536', ingressLinkId: '769', totalBytes: '623165485', totalBitsRate: 1384812.16, egressBytes: '526692235', egressBitsRate: 1170427.2, ingressBytes: '70998403', ingressBitsRate: 157774.24, establishLatencyMs: 80.2485, httpResponseLatency: 1100.2457, sslConLatency: 0, tcpLostlenPercent: 0.0057, pktRetransPercent: 0.0165, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1792', ingressLinkId: '769', totalBytes: '376219195', totalBitsRate: 836042.64, egressBytes: '320229891', egressBitsRate: 711622, ingressBytes: '42082573', ingressBitsRate: 93516.8, establishLatencyMs: 89.2396, httpResponseLatency: 176.6074, sslConLatency: 0, tcpLostlenPercent: 0.0017, pktRetransPercent: 0.0129, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2048', ingressLinkId: '769', totalBytes: '537023143', totalBitsRate: 1193384.8, egressBytes: '485285786', egressBitsRate: 1078412.88, ingressBytes: '33957352', ingressBitsRate: 75460.8, establishLatencyMs: 161.714, httpResponseLatency: 299.7771, sslConLatency: 0, tcpLostlenPercent: 0.009, pktRetransPercent: 0.0205, usageMore90: false, score: 4, scoreLow3: false }, { egressLinkId: '2304', ingressLinkId: '769', totalBytes: '408668842', totalBitsRate: 908152.96, egressBytes: '364103470', egressBitsRate: 809118.8, ingressBytes: '27943863', ingressBitsRate: 62097.44, establishLatencyMs: 84.474, httpResponseLatency: 233.6678, sslConLatency: 0, tcpLostlenPercent: 0.0019, pktRetransPercent: 0.0191, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '2816', ingressLinkId: '769', totalBytes: '281357790', totalBitsRate: 625239.52, egressBytes: '246576400', egressBitsRate: 547947.52, ingressBytes: '22861043', ingressBitsRate: 50802.32, establishLatencyMs: 73.8313, httpResponseLatency: 101.7295, sslConLatency: 0, tcpLostlenPercent: 0.0026, pktRetransPercent: 0.0161, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '256', ingressLinkId: '1025', totalBytes: '298043232', totalBitsRate: 662318.32, egressBytes: '277239595', egressBitsRate: 616088, ingressBytes: '9157756', ingressBitsRate: 20350.56, establishLatencyMs: 76.5483, httpResponseLatency: 107.388, sslConLatency: 0, tcpLostlenPercent: 0.0029, pktRetransPercent: 0.012, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '512', ingressLinkId: '1025', totalBytes: '437964797', totalBitsRate: 973255.12, egressBytes: '392328303', egressBitsRate: 871840.64, ingressBytes: '25486621', ingressBitsRate: 56636.96, establishLatencyMs: 73.2709, httpResponseLatency: 124.8192, sslConLatency: 0, tcpLostlenPercent: 0.0047, pktRetransPercent: 0.0243, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '768', ingressLinkId: '1025', totalBytes: '464792996', totalBitsRate: 1032873.36, egressBytes: '429292974', egressBitsRate: 953984.4, ingressBytes: '24968412', ingressBitsRate: 55485.36, establishLatencyMs: 73.624, httpResponseLatency: 143.2992, sslConLatency: 0, tcpLostlenPercent: 0.0028, pktRetransPercent: 0.0327, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1024', ingressLinkId: '1025', totalBytes: '309813302', totalBitsRate: 688474, egressBytes: '275012816', egressBitsRate: 611139.6, ingressBytes: '14787925', ingressBitsRate: 32862.08, establishLatencyMs: 69.9228, httpResponseLatency: 224.0711, sslConLatency: 0, tcpLostlenPercent: 0.0071, pktRetransPercent: 0.0086, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1280', ingressLinkId: '1025', totalBytes: '625851341', totalBitsRate: 1390780.72, egressBytes: '533489719', egressBitsRate: 1185532.72, ingressBytes: '77867845', ingressBitsRate: 173039.68, establishLatencyMs: 117.7443, httpResponseLatency: 234.0509, sslConLatency: 0, tcpLostlenPercent: 0.008, pktRetransPercent: 0.0153, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1536', ingressLinkId: '1025', totalBytes: '511034764', totalBitsRate: 1135632.8, egressBytes: '464176598', egressBitsRate: 1031503.52, ingressBytes: '31537941', ingressBitsRate: 70084.32, establishLatencyMs: 79.7973, httpResponseLatency: 108.2308, sslConLatency: 0, tcpLostlenPercent: 0.0097, pktRetransPercent: 0.0127, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1792', ingressLinkId: '1025', totalBytes: '510497154', totalBitsRate: 1134438.16, egressBytes: '477831366', egressBitsRate: 1061847.44, ingressBytes: '12705069', ingressBitsRate: 28233.52, establishLatencyMs: 90.772, httpResponseLatency: 138.007, sslConLatency: 0, tcpLostlenPercent: 0.0073, pktRetransPercent: 0.0289, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '2048', ingressLinkId: '1025', totalBytes: '705186479', totalBitsRate: 1567081.04, egressBytes: '609149182', egressBitsRate: 1353664.88, ingressBytes: '61214875', ingressBitsRate: 136033.04, establishLatencyMs: 68.2169, httpResponseLatency: 159.491, sslConLatency: 0, tcpLostlenPercent: 0.0041, pktRetransPercent: 0.0182, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2304', ingressLinkId: '1025', totalBytes: '295233728', totalBitsRate: 656074.96, egressBytes: '211230066', egressBitsRate: 469400.16, ingressBytes: '25660250', ingressBitsRate: 57022.8, establishLatencyMs: 151.2545, httpResponseLatency: 228.9587, sslConLatency: 0, tcpLostlenPercent: 0.0031, pktRetransPercent: 0.0173, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '2816', ingressLinkId: '1025', totalBytes: '304032381', totalBitsRate: 675627.52, egressBytes: '275012404', egressBitsRate: 611138.64, ingressBytes: '15041391', ingressBitsRate: 33425.28, establishLatencyMs: 87.4599, httpResponseLatency: 163.9644, sslConLatency: 0, tcpLostlenPercent: 0.0036, pktRetransPercent: 0.0142, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '256', ingressLinkId: '1281', totalBytes: '417367176', totalBitsRate: 927482.64, egressBytes: '367204335', egressBitsRate: 816009.6, ingressBytes: '34011146', ingressBitsRate: 75580.32, establishLatencyMs: 76.0439, httpResponseLatency: 133.8785, sslConLatency: 0, tcpLostlenPercent: 0.0026, pktRetransPercent: 0.0066, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '512', ingressLinkId: '1281', totalBytes: '383696444', totalBitsRate: 852658.8, egressBytes: '333439743', egressBitsRate: 740977.2, ingressBytes: '41316879', ingressBitsRate: 91815.28, establishLatencyMs: 74.6806, httpResponseLatency: 252.2572, sslConLatency: 0, tcpLostlenPercent: 0.0059, pktRetransPercent: 0.011, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '768', ingressLinkId: '1281', totalBytes: '259621097', totalBitsRate: 576935.76, egressBytes: '232771102', egressBitsRate: 517269.12, ingressBytes: '16746429', ingressBitsRate: 37214.32, establishLatencyMs: 82.902, httpResponseLatency: 107.0519, sslConLatency: 0, tcpLostlenPercent: 0.0038, pktRetransPercent: 0.0091, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1024', ingressLinkId: '1281', totalBytes: '393383026', totalBitsRate: 874184.48, egressBytes: '351396318', egressBitsRate: 780880.72, ingressBytes: '31340065', ingressBitsRate: 69644.56, establishLatencyMs: 64.413, httpResponseLatency: 85.3855, sslConLatency: 0, tcpLostlenPercent: 0.0025, pktRetransPercent: 0.0114, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1280', ingressLinkId: '1281', totalBytes: '387129909', totalBitsRate: 860288.72, egressBytes: '302488556', egressBitsRate: 672196.8, ingressBytes: '72455586', ingressBitsRate: 161012.4, establishLatencyMs: 76.4561, httpResponseLatency: 192.1006, sslConLatency: 0, tcpLostlenPercent: 0.0052, pktRetransPercent: 0.0168, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1536', ingressLinkId: '1281', totalBytes: '425879588', totalBitsRate: 946399.12, egressBytes: '263435832', egressBitsRate: 585412.96, ingressBytes: '146140145', ingressBitsRate: 324755.84, establishLatencyMs: 144.9736, httpResponseLatency: 145.7219, sslConLatency: 0, tcpLostlenPercent: 0.0054, pktRetransPercent: 0.019, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1792', ingressLinkId: '1281', totalBytes: '287483397', totalBitsRate: 638852, egressBytes: '257365122', egressBitsRate: 571922.48, ingressBytes: '20811515', ingressBitsRate: 46247.84, establishLatencyMs: 115.147, httpResponseLatency: 190.5346, sslConLatency: 0, tcpLostlenPercent: 0.0117, pktRetransPercent: 0.0218, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '2048', ingressLinkId: '1281', totalBytes: '261944760', totalBitsRate: 582099.44, egressBytes: '224739060', egressBitsRate: 499420.16, ingressBytes: '22733255', ingressBitsRate: 50518.32, establishLatencyMs: 70.5032, httpResponseLatency: 88.7246, sslConLatency: 0, tcpLostlenPercent: 0.0026, pktRetransPercent: 0.0119, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2304', ingressLinkId: '1281', totalBytes: '384921036', totalBitsRate: 855380.08, egressBytes: '287289027', egressBitsRate: 638420.08, ingressBytes: '85851016', ingressBitsRate: 190780, establishLatencyMs: 77.1338, httpResponseLatency: 119.3661, sslConLatency: 0, tcpLostlenPercent: 0.0038, pktRetransPercent: 0.0157, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2816', ingressLinkId: '1281', totalBytes: '747219384', totalBitsRate: 1660487.52, egressBytes: '711493451', egressBitsRate: 1581096.56, ingressBytes: '19888607', ingressBitsRate: 44196.88, establishLatencyMs: 94.9185, httpResponseLatency: 174.1762, sslConLatency: 0, tcpLostlenPercent: 0.0033, pktRetransPercent: 0.0225, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '256', ingressLinkId: '1537', totalBytes: '314181123', totalBitsRate: 698180.24, egressBytes: '290716163', egressBitsRate: 646035.92, ingressBytes: '12528086', ingressBitsRate: 27840.16, establishLatencyMs: 64.4391, httpResponseLatency: 83.7041, sslConLatency: 0, tcpLostlenPercent: 0.0119, pktRetransPercent: 0.0142, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '512', ingressLinkId: '1537', totalBytes: '491448414', totalBitsRate: 1092107.6, egressBytes: '373279539', egressBitsRate: 829510.08, ingressBytes: '58058567', ingressBitsRate: 129019.04, establishLatencyMs: 118.2363, httpResponseLatency: 117.7304, sslConLatency: 0, tcpLostlenPercent: 0.0072, pktRetransPercent: 0.0116, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '768', ingressLinkId: '1537', totalBytes: '398005843', totalBitsRate: 884457.44, egressBytes: '267392714', egressBitsRate: 594206, ingressBytes: '101268761', ingressBitsRate: 225041.68, establishLatencyMs: 83.3056, httpResponseLatency: 147.8219, sslConLatency: 0, tcpLostlenPercent: 0.0032, pktRetransPercent: 0.0151, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1024', ingressLinkId: '1537', totalBytes: '344047174', totalBitsRate: 764549.28, egressBytes: '318533531', egressBitsRate: 707852.32, ingressBytes: '16906918', ingressBitsRate: 37570.96, establishLatencyMs: 121.1739, httpResponseLatency: 126.4862, sslConLatency: 0, tcpLostlenPercent: 0.0073, pktRetransPercent: 0.0186, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1280', ingressLinkId: '1537', totalBytes: '471587736', totalBitsRate: 1047972.72, egressBytes: '410880816', egressBitsRate: 913068.48, ingressBytes: '28281853', ingressBitsRate: 62848.56, establishLatencyMs: 70.9806, httpResponseLatency: 185.4856, sslConLatency: 0, tcpLostlenPercent: 0.0035, pktRetransPercent: 0.0125, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1536', ingressLinkId: '1537', totalBytes: '435477272', totalBitsRate: 967727.28, egressBytes: '354445790', egressBitsRate: 787657.28, ingressBytes: '57547816', ingressBitsRate: 127884, establishLatencyMs: 77.2037, httpResponseLatency: 120.3639, sslConLatency: 0, tcpLostlenPercent: 0.0058, pktRetransPercent: 0.0211, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1792', ingressLinkId: '1537', totalBytes: '421275299', totalBitsRate: 936167.36, egressBytes: '394027515', egressBitsRate: 875616.72, ingressBytes: '11330580', ingressBitsRate: 25179.04, establishLatencyMs: 87.0062, httpResponseLatency: 185.6153, sslConLatency: 0, tcpLostlenPercent: 0.0065, pktRetransPercent: 0.0141, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2048', ingressLinkId: '1537', totalBytes: '753697278', totalBitsRate: 1674882.88, egressBytes: '671374082', egressBitsRate: 1491942.4, ingressBytes: '62801227', ingressBitsRate: 139558.32, establishLatencyMs: 89.8664, httpResponseLatency: 117.8758, sslConLatency: 0, tcpLostlenPercent: 0.0032, pktRetransPercent: 0.0144, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2304', ingressLinkId: '1537', totalBytes: '460044320', totalBitsRate: 1022320.72, egressBytes: '389631794', egressBitsRate: 865848.4, ingressBytes: '51549641', ingressBitsRate: 114554.72, establishLatencyMs: 88.5266, httpResponseLatency: 126.5988, sslConLatency: 0, tcpLostlenPercent: 0.0012, pktRetransPercent: 0.0203, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '2816', ingressLinkId: '1537', totalBytes: '350106467', totalBitsRate: 778014.4, egressBytes: '273295970', egressBitsRate: 607324.4, ingressBytes: '68060771', ingressBitsRate: 151246.16, establishLatencyMs: 73.7358, httpResponseLatency: 116.135, sslConLatency: 0, tcpLostlenPercent: 0.0045, pktRetransPercent: 0.0341, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '256', ingressLinkId: '1793', totalBytes: '452268295', totalBitsRate: 1005040.64, egressBytes: '379485980', egressBitsRate: 843302.16, ingressBytes: '55074312', ingressBitsRate: 122387.36, establishLatencyMs: 78.7998, httpResponseLatency: 93.5587, sslConLatency: 0, tcpLostlenPercent: 0.003, pktRetransPercent: 0.021, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '512', ingressLinkId: '1793', totalBytes: '700042073', totalBitsRate: 1555649.04, egressBytes: '673088759', egressBitsRate: 1495752.8, ingressBytes: '10410544', ingressBitsRate: 23134.56, establishLatencyMs: 85.8763, httpResponseLatency: 159.1093, sslConLatency: 0, tcpLostlenPercent: 0.0041, pktRetransPercent: 0.0157, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '768', ingressLinkId: '1793', totalBytes: '271912982', totalBitsRate: 604251.04, egressBytes: '227792078', egressBitsRate: 506204.64, ingressBytes: '31821353', ingressBitsRate: 70714.08, establishLatencyMs: 73.8296, httpResponseLatency: 84.6696, sslConLatency: 0, tcpLostlenPercent: 0.0054, pktRetransPercent: 0.0084, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1024', ingressLinkId: '1793', totalBytes: '502977380', totalBitsRate: 1117727.52, egressBytes: '324437335', egressBitsRate: 720971.84, ingressBytes: '167435918', ingressBitsRate: 372079.84, establishLatencyMs: 68.3019, httpResponseLatency: 120.6175, sslConLatency: 0, tcpLostlenPercent: 0.0083, pktRetransPercent: 0.0086, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1280', ingressLinkId: '1793', totalBytes: '473709275', totalBitsRate: 1052687.28, egressBytes: '408981966', egressBitsRate: 908848.8, ingressBytes: '50085555', ingressBitsRate: 111301.2, establishLatencyMs: 80.0523, httpResponseLatency: 138.3115, sslConLatency: 0, tcpLostlenPercent: 0.0029, pktRetransPercent: 0.0205, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1536', ingressLinkId: '1793', totalBytes: '419864446', totalBitsRate: 933032.08, egressBytes: '365874375', egressBitsRate: 813054.16, ingressBytes: '37465965', ingressBitsRate: 83257.68, establishLatencyMs: 71.3478, httpResponseLatency: 77.8483, sslConLatency: 0, tcpLostlenPercent: 0.0013, pktRetransPercent: 0.0116, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1792', ingressLinkId: '1793', totalBytes: '339160607', totalBitsRate: 753690.24, egressBytes: '301992422', egressBitsRate: 671094.24, ingressBytes: '23961274', ingressBitsRate: 53247.28, establishLatencyMs: 87.9845, httpResponseLatency: 135.7731, sslConLatency: 0, tcpLostlenPercent: 0.0036, pktRetransPercent: 0.013, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2048', ingressLinkId: '1793', totalBytes: '616101903', totalBitsRate: 1369115.36, egressBytes: '522679143', egressBitsRate: 1161509.2, ingressBytes: '74691412', ingressBitsRate: 165980.88, establishLatencyMs: 146.3266, httpResponseLatency: 382.936, sslConLatency: 0, tcpLostlenPercent: 0.011, pktRetransPercent: 0.0218, usageMore90: false, score: 4, scoreLow3: false }, { egressLinkId: '2304', ingressLinkId: '1793', totalBytes: '353905850', totalBitsRate: 786457.44, egressBytes: '303343002', egressBitsRate: 674095.6, ingressBytes: '35558267', ingressBitsRate: 79018.4, establishLatencyMs: 65.5383, httpResponseLatency: 182.1653, sslConLatency: 0, tcpLostlenPercent: 0.0025, pktRetransPercent: 0.0176, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2816', ingressLinkId: '1793', totalBytes: '310621344', totalBitsRate: 690269.68, egressBytes: '270045410', egressBitsRate: 600100.88, ingressBytes: '25119191', ingressBitsRate: 55820.4, establishLatencyMs: 77.1911, httpResponseLatency: 100.1092, sslConLatency: 0, tcpLostlenPercent: 0.0034, pktRetransPercent: 0.0123, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '256', ingressLinkId: '2049', totalBytes: '388093577', totalBitsRate: 862430.16, egressBytes: '348827067', egressBitsRate: 775171.28, ingressBytes: '20464561', ingressBitsRate: 45476.8, establishLatencyMs: 77.5916, httpResponseLatency: 147.349, sslConLatency: 0, tcpLostlenPercent: 0.0111, pktRetransPercent: 0.011, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '512', ingressLinkId: '2049', totalBytes: '711311059', totalBitsRate: 1580691.28, egressBytes: '653169387', egressBitsRate: 1451487.52, ingressBytes: '23736470', ingressBitsRate: 52747.68, establishLatencyMs: 88.1133, httpResponseLatency: 442.7744, sslConLatency: 0, tcpLostlenPercent: 0.0037, pktRetransPercent: 0.0282, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '768', ingressLinkId: '2049', totalBytes: '544169365', totalBitsRate: 1209265.28, egressBytes: '480502970', egressBitsRate: 1067784.4, ingressBytes: '42064720', ingressBitsRate: 93477.12, establishLatencyMs: 86.859, httpResponseLatency: 96.2626, sslConLatency: 0, tcpLostlenPercent: 0.0041, pktRetransPercent: 0.0188, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1024', ingressLinkId: '2049', totalBytes: '511188364', totalBitsRate: 1135974.16, egressBytes: '439810340', egressBitsRate: 977356.32, ingressBytes: '60103971', ingressBitsRate: 133564.4, establishLatencyMs: 100.5463, httpResponseLatency: 183.6345, sslConLatency: 0, tcpLostlenPercent: 0.0094, pktRetransPercent: 0.0087, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1280', ingressLinkId: '2049', totalBytes: '666928930', totalBitsRate: 1482064.32, egressBytes: '626185114', egressBitsRate: 1391522.48, ingressBytes: '23926270', ingressBitsRate: 53169.52, establishLatencyMs: 119.9707, httpResponseLatency: 205.3038, sslConLatency: 0, tcpLostlenPercent: 0.0052, pktRetransPercent: 0.0272, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1536', ingressLinkId: '2049', totalBytes: '329173462', totalBitsRate: 731496.56, egressBytes: '255905021', egressBitsRate: 568677.84, ingressBytes: '57317526', ingressBitsRate: 127372.24, establishLatencyMs: 66.6872, httpResponseLatency: 286.5033, sslConLatency: 0, tcpLostlenPercent: 0.0047, pktRetransPercent: 0.0227, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1792', ingressLinkId: '2049', totalBytes: '308368988', totalBitsRate: 685264.4, egressBytes: '237340865', egressBitsRate: 527424.16, ingressBytes: '60510292', ingressBitsRate: 134467.28, establishLatencyMs: 72.5769, httpResponseLatency: 255.8301, sslConLatency: 0, tcpLostlenPercent: 0.0083, pktRetransPercent: 0.014, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2048', ingressLinkId: '2049', totalBytes: '321568878', totalBitsRate: 714597.52, egressBytes: '273035831', egressBitsRate: 606746.32, ingressBytes: '28038175', ingressBitsRate: 62307.04, establishLatencyMs: 66.0751, httpResponseLatency: 312.7351, sslConLatency: 0, tcpLostlenPercent: 0.0042, pktRetransPercent: 0.0156, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2304', ingressLinkId: '2049', totalBytes: '380061893', totalBitsRate: 844582, egressBytes: '315061822', egressBitsRate: 700137.36, ingressBytes: '52657744', ingressBitsRate: 117017.2, establishLatencyMs: 75.8593, httpResponseLatency: 132.0823, sslConLatency: 0, tcpLostlenPercent: 0.0047, pktRetransPercent: 0.0101, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2816', ingressLinkId: '2049', totalBytes: '433349564', totalBitsRate: 962999.04, egressBytes: '310273265', egressBitsRate: 689496.16, ingressBytes: '107419516', ingressBitsRate: 238710, establishLatencyMs: 79.7628, httpResponseLatency: 127.4814, sslConLatency: 0, tcpLostlenPercent: 0.0031, pktRetransPercent: 0.0137, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '256', ingressLinkId: '2305', totalBytes: '441740953', totalBitsRate: 981646.56, egressBytes: '344031397', egressBitsRate: 764514.24, ingressBytes: '89500725', ingressBitsRate: 198890.48, establishLatencyMs: 83.4651, httpResponseLatency: 184.2666, sslConLatency: 0, tcpLostlenPercent: 0.006, pktRetransPercent: 0.0132, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '512', ingressLinkId: '2305', totalBytes: '492163025', totalBitsRate: 1093695.6, egressBytes: '452782283', egressBitsRate: 1006182.88, ingressBytes: '24458788', ingressBitsRate: 54352.88, establishLatencyMs: 75.3955, httpResponseLatency: 120.5217, sslConLatency: 0, tcpLostlenPercent: 0.0062, pktRetransPercent: 0.0091, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '768', ingressLinkId: '2305', totalBytes: '412085678', totalBitsRate: 915745.92, egressBytes: '386711916', egressBitsRate: 859359.84, ingressBytes: '16901737', ingressBitsRate: 37559.44, establishLatencyMs: 89.1835, httpResponseLatency: 188.111, sslConLatency: 0, tcpLostlenPercent: 0.0147, pktRetransPercent: 0.0127, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1024', ingressLinkId: '2305', totalBytes: '493492790', totalBitsRate: 1096650.64, egressBytes: '452074866', egressBitsRate: 1004610.8, ingressBytes: '31521658', ingressBitsRate: 70048.16, establishLatencyMs: 82.6305, httpResponseLatency: 83.2076, sslConLatency: 0, tcpLostlenPercent: 0.0075, pktRetransPercent: 0.0123, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1280', ingressLinkId: '2305', totalBytes: '512733888', totalBitsRate: 1139408.64, egressBytes: '471200897', egressBitsRate: 1047113.12, ingressBytes: '28133375', ingressBitsRate: 62518.64, establishLatencyMs: 70.762, httpResponseLatency: 101.5263, sslConLatency: 0, tcpLostlenPercent: 0.0046, pktRetransPercent: 0.0214, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1536', ingressLinkId: '2305', totalBytes: '747694085', totalBitsRate: 1661542.4, egressBytes: '691510780', egressBitsRate: 1536690.64, ingressBytes: '25897699', ingressBitsRate: 57550.48, establishLatencyMs: 83.79, httpResponseLatency: 90.0623, sslConLatency: 0, tcpLostlenPercent: 0.0091, pktRetransPercent: 0.0242, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1792', ingressLinkId: '2305', totalBytes: '376892219', totalBitsRate: 837538.24, egressBytes: '336286147', egressBitsRate: 747302.56, ingressBytes: '25717104', ingressBitsRate: 57149.12, establishLatencyMs: 104.1186, httpResponseLatency: 134.8195, sslConLatency: 0, tcpLostlenPercent: 0.0051, pktRetransPercent: 0.018, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '2048', ingressLinkId: '2305', totalBytes: '350689016', totalBitsRate: 779308.96, egressBytes: '324109790', egressBitsRate: 720244, ingressBytes: '14540455', ingressBitsRate: 32312.16, establishLatencyMs: 77.1332, httpResponseLatency: 497.0389, sslConLatency: 0, tcpLostlenPercent: 0.0063, pktRetransPercent: 0.0111, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2304', ingressLinkId: '2305', totalBytes: '365450281', totalBitsRate: 812111.76, egressBytes: '254568603', egressBitsRate: 565708, ingressBytes: '101035884', ingressBitsRate: 224524.16, establishLatencyMs: 96.1349, httpResponseLatency: 127.3401, sslConLatency: 0, tcpLostlenPercent: 0.0043, pktRetransPercent: 0.0178, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '2816', ingressLinkId: '2305', totalBytes: '582756711', totalBitsRate: 1295014.88, egressBytes: '418332040', egressBitsRate: 929626.72, ingressBytes: '151309467', ingressBitsRate: 336243.28, establishLatencyMs: 92.9852, httpResponseLatency: 92.9446, sslConLatency: 0, tcpLostlenPercent: 0.0071, pktRetransPercent: 0.0201, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '256', ingressLinkId: '2817', totalBytes: '297004684', totalBitsRate: 660010.4, egressBytes: '237149513', egressBitsRate: 526998.88, ingressBytes: '52715080', ingressBitsRate: 117144.64, establishLatencyMs: 75.9443, httpResponseLatency: 100.3348, sslConLatency: 0, tcpLostlenPercent: 0.025, pktRetransPercent: 0.0149, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '512', ingressLinkId: '2817', totalBytes: '244871384', totalBitsRate: 544158.64, egressBytes: '182387351', egressBitsRate: 405305.2, ingressBytes: '52813649', ingressBitsRate: 117363.68, establishLatencyMs: 90.5676, httpResponseLatency: 87.4456, sslConLatency: 0, tcpLostlenPercent: 0.0054, pktRetransPercent: 0.0174, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '768', ingressLinkId: '2817', totalBytes: '529048700', totalBitsRate: 1175663.76, egressBytes: '385067667', egressBitsRate: 855705.92, ingressBytes: '80988511', ingressBitsRate: 179974.48, establishLatencyMs: 146.6385, httpResponseLatency: 139.8804, sslConLatency: 0, tcpLostlenPercent: 0.0019, pktRetransPercent: 0.0126, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1024', ingressLinkId: '2817', totalBytes: '361792234', totalBitsRate: 803982.72, egressBytes: '330465149', egressBitsRate: 734366.96, ingressBytes: '17966232', ingressBitsRate: 39924.96, establishLatencyMs: 122.4222, httpResponseLatency: 136.6981, sslConLatency: 0, tcpLostlenPercent: 0.0027, pktRetransPercent: 0.0072, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1280', ingressLinkId: '2817', totalBytes: '421038470', totalBitsRate: 935641.04, egressBytes: '324989968', egressBitsRate: 722199.92, ingressBytes: '84806395', ingressBitsRate: 188458.64, establishLatencyMs: 92.1301, httpResponseLatency: 114.9592, sslConLatency: 0, tcpLostlenPercent: 0.0039, pktRetransPercent: 0.0172, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '1536', ingressLinkId: '2817', totalBytes: '362980681', totalBitsRate: 806623.76, egressBytes: '311642328', egressBitsRate: 692538.48, ingressBytes: '38988231', ingressBitsRate: 86640.48, establishLatencyMs: 97.0047, httpResponseLatency: 155.4382, sslConLatency: 0, tcpLostlenPercent: 0.0069, pktRetransPercent: 0.0197, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '1792', ingressLinkId: '2817', totalBytes: '621237185', totalBitsRate: 1380527.04, egressBytes: '568359927', egressBitsRate: 1263022.08, ingressBytes: '41110785', ingressBitsRate: 91357.28, establishLatencyMs: 64.7608, httpResponseLatency: 119.7391, sslConLatency: 0, tcpLostlenPercent: 0.0044, pktRetransPercent: 0.0252, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '2048', ingressLinkId: '2817', totalBytes: '260368736', totalBitsRate: 578597.2, egressBytes: '205185994', egressBitsRate: 455968.88, ingressBytes: '46626869', ingressBitsRate: 103615.28, establishLatencyMs: 99.6428, httpResponseLatency: 99.8736, sslConLatency: 0, tcpLostlenPercent: 0.003, pktRetransPercent: 0.0126, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkId: '2304', ingressLinkId: '2817', totalBytes: '318716905', totalBitsRate: 708259.76, egressBytes: '295082544', egressBitsRate: 655738.96, ingressBytes: '11859656', ingressBitsRate: 26354.8, establishLatencyMs: 70.4628, httpResponseLatency: 110.3507, sslConLatency: 0, tcpLostlenPercent: 0.0107, pktRetransPercent: 0.0272, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkId: '2816', ingressLinkId: '2817', totalBytes: '314302936', totalBitsRate: 698450.96, egressBytes: '266218480', egressBitsRate: 591596.64, ingressBytes: '37481378', ingressBitsRate: 83291.92, establishLatencyMs: 73.5813, httpResponseLatency: 479.376, sslConLatency: 0, tcpLostlenPercent: 0.0054, pktRetransPercent: 0.0163, usageMore90: false, score: 6, scoreLow3: false }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20common_egress_link_id%20AS%20egress_link_id%2Ccommon_ingress_link_id%20AS%20ingress_link_id%2CSUM%28common_c2s_byte_num%20%2B%20common_s2c_byte_num%29%20AS%20total_bytes%2CSUM%28traffic_outbound_byte%29%20AS%20egress_bytes%2CSUM%28traffic_inbound_byte%29%20AS%20ingress_bytes%2CROUND%28AVG%28avg_establish_latency_ms%29%2C%204%29%20AS%20establish_latency_ms%2CROUND%28AVG%28avg_http_response_latency_ms%29%2C%204%29%20AS%20http_response_latency%2CROUND%28AVG%28avg_ssl_con_latency_ms%29%2C%204%29%20AS%20ssl_con_latency%2CROUND%28AVG%28tcp_lostlen_ratio%29%2C%204%29%20AS%20tcp_lostlen_percent%2CROUND%28AVG%28pkt_retrans_ratio%29%2C%204%29%20AS%20pkt_retrans_percent%20FROM%20metric_link%20WHERE%20stat_time%20%3E%3D%201675387137%20AND%20stat_time%20%3C%201675390737%20GROUP%20BY%20egress_link_id%2Cingress_link_id&format=json&option=real-time', msg: 'OK' } }, data2: { - data: { status: 200, code: 200, queryKey: '3b148e81873eb2621bbd77fffbd0a008', success: true, message: null, statistics: { elapsed: 4, rows_read: 14027, bytes_read: 1611437, result_size: 2393, result_rows: 9 }, job: null, formatType: 'json', meta: [{ name: 'egress_link_direction', type: 'string', category: 'Dimension' }, { name: 'ingress_link_direction', type: 'string', category: 'Dimension' }, { name: 'total_bytes', type: 'long', category: 'Metric' }, { name: 'egress_bytes', type: 'long', category: 'Metric' }, { name: 'ingress_bytes', type: 'long', category: 'Metric' }, { name: 'establish_latency_ms', type: 'double', category: 'Metric' }, { name: 'http_response_latency', type: 'double', category: 'Metric' }, { name: 'ssl_con_latency', type: 'double', category: 'Metric' }, { name: 'tcp_lostlen_percent', type: 'double', category: 'Metric' }, { name: 'pkt_retrans_percent', type: 'double', category: 'Metric' }], data: { resultType: 'table', result: [{ egressLinkDirection: '太原', ingressLinkDirection: '太原', totalBytes: '16535105415', totalBitsRate: 36744678.72, egressBytes: '14184016558', egressBitsRate: 31520036.8, ingressBytes: '1688597600', ingressBitsRate: 3752439.12, establishLatencyMs: 88.0242, httpResponseLatency: 203.7159, sslConLatency: 0, tcpLostlenPercent: 0.0054, pktRetransPercent: 0.0166, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkDirection: '西安', ingressLinkDirection: '太原', totalBytes: '7944206231', totalBitsRate: 17653791.6, egressBytes: '6777682761', egressBitsRate: 15061517.28, ingressBytes: '885954326', ingressBitsRate: 1968787.36, establishLatencyMs: 83.1217, httpResponseLatency: 157.7391, sslConLatency: 0, tcpLostlenPercent: 0.0046, pktRetransPercent: 0.0173, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkDirection: '西宁', ingressLinkDirection: '太原', totalBytes: '2857306724', totalBitsRate: 6349570.48, egressBytes: '2128232085', egressBitsRate: 4729404.64, ingressBytes: '404099210', ingressBitsRate: 897998.24, establishLatencyMs: 98.8892, httpResponseLatency: 136.1593, sslConLatency: 0, tcpLostlenPercent: 0.0068, pktRetransPercent: 0.0147, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkDirection: '太原', ingressLinkDirection: '西安', totalBytes: '6373421289', totalBitsRate: 14163158.4, egressBytes: '5353700094', egressBitsRate: 11897111.36, ingressBytes: '734848747', ingressBitsRate: 1632997.2, establishLatencyMs: 92.7275, httpResponseLatency: 137.1145, sslConLatency: 0, tcpLostlenPercent: 0.0057, pktRetransPercent: 0.0162, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkDirection: '西安', ingressLinkDirection: '西安', totalBytes: '4103560375', totalBitsRate: 9119023.04, egressBytes: '3571039189', egressBitsRate: 7935642.64, ingressBytes: '377089010', ingressBitsRate: 837975.6, establishLatencyMs: 85.6573, httpResponseLatency: 201.6159, sslConLatency: 0, tcpLostlenPercent: 0.0069, pktRetransPercent: 0.0144, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkDirection: '西宁', ingressLinkDirection: '西安', totalBytes: '1183207657', totalBitsRate: 2629350.32, egressBytes: '1058261055', egressBitsRate: 2351691.2, ingressBytes: '87176633', ingressBitsRate: 193725.84, establishLatencyMs: 91.4916, httpResponseLatency: 117.5389, sslConLatency: 0, tcpLostlenPercent: 0.0024, pktRetransPercent: 0.0104, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkDirection: '太原', ingressLinkDirection: '西宁', totalBytes: '2924709918', totalBitsRate: 6499355.36, egressBytes: '2584008489', egressBitsRate: 5742241.12, ingressBytes: '181573168', ingressBitsRate: 403495.92, establishLatencyMs: 89.4893, httpResponseLatency: 151.1124, sslConLatency: 0, tcpLostlenPercent: 0.0053, pktRetransPercent: 0.0224, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkDirection: '西安', ingressLinkDirection: '西宁', totalBytes: '1227926954', totalBitsRate: 2728726.56, egressBytes: '1085741718', egressBitsRate: 2412759.36, ingressBytes: '102066992', ingressBitsRate: 226815.52, establishLatencyMs: 93.9175, httpResponseLatency: 168.1369, sslConLatency: 0, tcpLostlenPercent: 0.0048, pktRetransPercent: 0.0139, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkDirection: '西宁', ingressLinkDirection: '西宁', totalBytes: '309813302', totalBitsRate: 688474, egressBytes: '275012816', egressBitsRate: 611139.6, ingressBytes: '14787925', ingressBitsRate: 32862.08, establishLatencyMs: 69.9228, httpResponseLatency: 224.0711, sslConLatency: 0, tcpLostlenPercent: 0.0071, pktRetransPercent: 0.0086, usageMore90: false, score: 6, scoreLow3: false }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20egress_link_direction%20AS%20egress_link_direction%2Cingress_link_direction%20AS%20ingress_link_direction%2CSUM%28common_c2s_byte_num%20%2B%20common_s2c_byte_num%29%20AS%20total_bytes%2CSUM%28traffic_outbound_byte%29%20AS%20egress_bytes%2CSUM%28traffic_inbound_byte%29%20AS%20ingress_bytes%2CROUND%28AVG%28avg_establish_latency_ms%29%2C%204%29%20AS%20establish_latency_ms%2CROUND%28AVG%28avg_http_response_latency_ms%29%2C%204%29%20AS%20http_response_latency%2CROUND%28AVG%28avg_ssl_con_latency_ms%29%2C%204%29%20AS%20ssl_con_latency%2CROUND%28AVG%28tcp_lostlen_ratio%29%2C%204%29%20AS%20tcp_lostlen_percent%2CROUND%28AVG%28pkt_retrans_ratio%29%2C%204%29%20AS%20pkt_retrans_percent%20FROM%20metric_link%20WHERE%20stat_time%20%3E%3D%201675387137%20AND%20stat_time%20%3C%201675390737%20AND%20%28notEmpty%28egress_link_direction%29%20AND%20notEmpty%28ingress_link_direction%29%29%20GROUP%20BY%20egress_link_direction%2Cingress_link_direction&format=json&option=real-time', msg: 'OK' } + status: 200, + data: { code: 200, queryKey: '3b148e81873eb2621bbd77fffbd0a008', success: true, message: null, statistics: { elapsed: 4, rows_read: 14027, bytes_read: 1611437, result_size: 2393, result_rows: 9 }, job: null, formatType: 'json', meta: [{ name: 'egress_link_direction', type: 'string', category: 'Dimension' }, { name: 'ingress_link_direction', type: 'string', category: 'Dimension' }, { name: 'total_bytes', type: 'long', category: 'Metric' }, { name: 'egress_bytes', type: 'long', category: 'Metric' }, { name: 'ingress_bytes', type: 'long', category: 'Metric' }, { name: 'establish_latency_ms', type: 'double', category: 'Metric' }, { name: 'http_response_latency', type: 'double', category: 'Metric' }, { name: 'ssl_con_latency', type: 'double', category: 'Metric' }, { name: 'tcp_lostlen_percent', type: 'double', category: 'Metric' }, { name: 'pkt_retrans_percent', type: 'double', category: 'Metric' }], data: { resultType: 'table', result: [{ egressLinkDirection: '太原', ingressLinkDirection: '太原', totalBytes: '16535105415', totalBitsRate: 36744678.72, egressBytes: '14184016558', egressBitsRate: 31520036.8, ingressBytes: '1688597600', ingressBitsRate: 3752439.12, establishLatencyMs: 88.0242, httpResponseLatency: 203.7159, sslConLatency: 0, tcpLostlenPercent: 0.0054, pktRetransPercent: 0.0166, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkDirection: '西安', ingressLinkDirection: '太原', totalBytes: '7944206231', totalBitsRate: 17653791.6, egressBytes: '6777682761', egressBitsRate: 15061517.28, ingressBytes: '885954326', ingressBitsRate: 1968787.36, establishLatencyMs: 83.1217, httpResponseLatency: 157.7391, sslConLatency: 0, tcpLostlenPercent: 0.0046, pktRetransPercent: 0.0173, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkDirection: '西宁', ingressLinkDirection: '太原', totalBytes: '2857306724', totalBitsRate: 6349570.48, egressBytes: '2128232085', egressBitsRate: 4729404.64, ingressBytes: '404099210', ingressBitsRate: 897998.24, establishLatencyMs: 98.8892, httpResponseLatency: 136.1593, sslConLatency: 0, tcpLostlenPercent: 0.0068, pktRetransPercent: 0.0147, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkDirection: '太原', ingressLinkDirection: '西安', totalBytes: '6373421289', totalBitsRate: 14163158.4, egressBytes: '5353700094', egressBitsRate: 11897111.36, ingressBytes: '734848747', ingressBitsRate: 1632997.2, establishLatencyMs: 92.7275, httpResponseLatency: 137.1145, sslConLatency: 0, tcpLostlenPercent: 0.0057, pktRetransPercent: 0.0162, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkDirection: '西安', ingressLinkDirection: '西安', totalBytes: '4103560375', totalBitsRate: 9119023.04, egressBytes: '3571039189', egressBitsRate: 7935642.64, ingressBytes: '377089010', ingressBitsRate: 837975.6, establishLatencyMs: 85.6573, httpResponseLatency: 201.6159, sslConLatency: 0, tcpLostlenPercent: 0.0069, pktRetransPercent: 0.0144, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkDirection: '西宁', ingressLinkDirection: '西安', totalBytes: '1183207657', totalBitsRate: 2629350.32, egressBytes: '1058261055', egressBitsRate: 2351691.2, ingressBytes: '87176633', ingressBitsRate: 193725.84, establishLatencyMs: 91.4916, httpResponseLatency: 117.5389, sslConLatency: 0, tcpLostlenPercent: 0.0024, pktRetransPercent: 0.0104, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkDirection: '太原', ingressLinkDirection: '西宁', totalBytes: '2924709918', totalBitsRate: 6499355.36, egressBytes: '2584008489', egressBitsRate: 5742241.12, ingressBytes: '181573168', ingressBitsRate: 403495.92, establishLatencyMs: 89.4893, httpResponseLatency: 151.1124, sslConLatency: 0, tcpLostlenPercent: 0.0053, pktRetransPercent: 0.0224, usageMore90: false, score: 5, scoreLow3: false }, { egressLinkDirection: '西安', ingressLinkDirection: '西宁', totalBytes: '1227926954', totalBitsRate: 2728726.56, egressBytes: '1085741718', egressBitsRate: 2412759.36, ingressBytes: '102066992', ingressBitsRate: 226815.52, establishLatencyMs: 93.9175, httpResponseLatency: 168.1369, sslConLatency: 0, tcpLostlenPercent: 0.0048, pktRetransPercent: 0.0139, usageMore90: false, score: 6, scoreLow3: false }, { egressLinkDirection: '西宁', ingressLinkDirection: '西宁', totalBytes: '309813302', totalBitsRate: 688474, egressBytes: '275012816', egressBitsRate: 611139.6, ingressBytes: '14787925', ingressBitsRate: 32862.08, establishLatencyMs: 69.9228, httpResponseLatency: 224.0711, sslConLatency: 0, tcpLostlenPercent: 0.0071, pktRetransPercent: 0.0086, usageMore90: false, score: 6, scoreLow3: false }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20egress_link_direction%20AS%20egress_link_direction%2Cingress_link_direction%20AS%20ingress_link_direction%2CSUM%28common_c2s_byte_num%20%2B%20common_s2c_byte_num%29%20AS%20total_bytes%2CSUM%28traffic_outbound_byte%29%20AS%20egress_bytes%2CSUM%28traffic_inbound_byte%29%20AS%20ingress_bytes%2CROUND%28AVG%28avg_establish_latency_ms%29%2C%204%29%20AS%20establish_latency_ms%2CROUND%28AVG%28avg_http_response_latency_ms%29%2C%204%29%20AS%20http_response_latency%2CROUND%28AVG%28avg_ssl_con_latency_ms%29%2C%204%29%20AS%20ssl_con_latency%2CROUND%28AVG%28tcp_lostlen_ratio%29%2C%204%29%20AS%20tcp_lostlen_percent%2CROUND%28AVG%28pkt_retrans_ratio%29%2C%204%29%20AS%20pkt_retrans_percent%20FROM%20metric_link%20WHERE%20stat_time%20%3E%3D%201675387137%20AND%20stat_time%20%3C%201675390737%20AND%20%28notEmpty%28egress_link_direction%29%20AND%20notEmpty%28ingress_link_direction%29%29%20GROUP%20BY%20egress_link_direction%2Cingress_link_direction&format=json&option=real-time', msg: 'OK' } } }, empty: { data1: { - data: { status: 200, code: 200, data: { resultType: 'table', result: [] }, msg: 'OK' } + status: 200, + data: { code: 200, data: { resultType: 'table', result: [] }, msg: 'OK' } }, data2: { - data: { status: 200, code: 200, data: { resultType: 'table', result: [] }, msg: 'OK' } + status: 200, + data: { code: 200, data: { resultType: 'table', result: [] }, msg: 'OK' } } }, boundary: { data1: { + status: 200, data: {} }, data2: { + status: 200, data: {} } } diff --git a/test/views/charts2/charts/linkMonitor/MockData/LinkTrafficLine.js b/test/views/charts2/charts/linkMonitor/MockData/LinkTrafficLine.js index f24dc1ba..d3c8195f 100644 --- a/test/views/charts2/charts/linkMonitor/MockData/LinkTrafficLine.js +++ b/test/views/charts2/charts/linkMonitor/MockData/LinkTrafficLine.js @@ -1,6 +1,7 @@ export const mockData = { common: { data1: { + status: 200, data: { status: 200, code: 200, @@ -115,6 +116,7 @@ export const mockData = { } }, data2: { + status: 200, data: { status: 200, code: 200, @@ -180,6 +182,7 @@ export const mockData = { }, empty: { data1: { + status: 200, data: { status: 200, code: 200, @@ -191,6 +194,7 @@ export const mockData = { } }, data2: { + status: 200, data: { status: 200, code: 200, @@ -205,6 +209,7 @@ export const mockData = { boundary: { large: { data1: { + status: 200, data: { status: 200, code: 200, @@ -275,6 +280,7 @@ export const mockData = { } }, data2: { + status: 200, data: { status: 200, code: 200, @@ -296,6 +302,7 @@ export const mockData = { }, zero: { data1: { + status: 200, data: { status: 200, code: 200, @@ -366,6 +373,7 @@ export const mockData = { } }, data2: { + status: 200, data: { status: 200, code: 200, diff --git a/test/views/charts2/charts/networkOverview/NetworkOverviewApps.test.js b/test/views/charts2/charts/networkOverview/NetworkOverviewApps.test.js index edb06e68..f94f7528 100644 --- a/test/views/charts2/charts/networkOverview/NetworkOverviewApps.test.js +++ b/test/views/charts2/charts/networkOverview/NetworkOverviewApps.test.js @@ -3,7 +3,8 @@ import { mount } from '@vue/test-utils' import axios from 'axios' import ElementPlus from 'element-plus' import { mockData } from './mockData/NetworkOverviewApps' - +import common from '@/mixins/common' +import chartMixin from '@/views/charts2/chart-mixin' const chart = mockData.common.chart const linkInfo = 5 @@ -49,7 +50,13 @@ function axiosPostAndMounted (Metric, flag, data) { }, global: { plugins: [ElementPlus] - } + }, + data () { + return { + isUnitTesting: true + } + }, + mixins: [common, chartMixin] }) } diff --git a/test/views/charts2/charts/networkOverview/NetworkOverviewDdosDetection.test.js b/test/views/charts2/charts/networkOverview/NetworkOverviewDdosDetection.test.js index a61d57c1..719335a8 100644 --- a/test/views/charts2/charts/networkOverview/NetworkOverviewDdosDetection.test.js +++ b/test/views/charts2/charts/networkOverview/NetworkOverviewDdosDetection.test.js @@ -1,6 +1,8 @@ import NetworkOverviewDdosDetection from '@/views/charts2/charts/networkOverview/NetworkOverviewDdosDetection' import { mount } from '@vue/test-utils' import axios from 'axios' +import common from '@/mixins/common' +import chartMixin from '@/views/charts2/chart-mixin' import { mockData } from './mockData/NetworkOverviewDdosDetection' const mockGet = mockData.common @@ -25,7 +27,8 @@ function axiosPostAndMounted (data) { wrapper = mount(NetworkOverviewDdosDetection, { propsData: { timeFilter - } + }, + mixins: [common, chartMixin] }) } diff --git a/test/views/charts2/charts/networkOverview/NetworkOverviewLine.test.js b/test/views/charts2/charts/networkOverview/NetworkOverviewLine.test.js index 82b3347c..ceae6233 100644 --- a/test/views/charts2/charts/networkOverview/NetworkOverviewLine.test.js +++ b/test/views/charts2/charts/networkOverview/NetworkOverviewLine.test.js @@ -2,6 +2,8 @@ import NetworkOverviewLine from '@/views/charts2/charts/networkOverview/NetworkO import { mount } from '@vue/test-utils' import axios from 'axios' import mockData from './NetworkOverviewLineMockData' +import common from '@/mixins/common' +import chartMixin from '@/views/charts2/chart-mixin' const timeFilter = { dateRangeValue: -1, @@ -22,7 +24,13 @@ describe('views/charts2/charts/networkOverview/NetworkOverviewLine.vue测试', ( propsData: { timeFilter, chart - } + }, + data () { + return { + isUnitTesting: true + } + }, + mixins: [common, chartMixin] }) // 延迟等待渲染。使用wrapper.vm.$nextTick有时不管用(例如组件中使用了setTimeout的时候) await new Promise(resolve => setTimeout(async () => { @@ -48,7 +56,13 @@ describe('views/charts2/charts/networkOverview/NetworkOverviewLine.vue测试', ( propsData: { timeFilter, chart - } + }, + data () { + return { + isUnitTesting: true + } + }, + mixins: [common, chartMixin] }) // 延迟等待渲染。使用wrapper.vm.$nextTick有时不管用(例如组件中使用了setTimeout的时候) await new Promise(resolve => setTimeout(async () => { @@ -77,7 +91,13 @@ describe('views/charts2/charts/networkOverview/NetworkOverviewLine.vue测试', ( propsData: { timeFilter, chart - } + }, + data () { + return { + isUnitTesting: true + } + }, + mixins: [common, chartMixin] }) // 延迟等待渲染。使用wrapper.vm.$nextTick有时不管用(例如组件中使用了setTimeout的时候) @@ -106,7 +126,13 @@ describe('views/charts2/charts/networkOverview/NetworkOverviewLine.vue测试', ( timeFilter, chart, metric: 'Packets/s' - } + }, + data () { + return { + isUnitTesting: true + } + }, + mixins: [common, chartMixin] }) await new Promise(resolve => setTimeout(async () => { @@ -129,7 +155,13 @@ describe('views/charts2/charts/networkOverview/NetworkOverviewLine.vue测试', ( timeFilter, chart, metric: 'Sessions/s' - } + }, + data () { + return { + isUnitTesting: true + } + }, + mixins: [common, chartMixin] }) await new Promise(resolve => setTimeout(async () => { diff --git a/test/views/charts2/charts/networkOverview/NetworkOverviewLineMockData.js b/test/views/charts2/charts/networkOverview/NetworkOverviewLineMockData.js index a631dcf0..a58bcb99 100644 --- a/test/views/charts2/charts/networkOverview/NetworkOverviewLineMockData.js +++ b/test/views/charts2/charts/networkOverview/NetworkOverviewLineMockData.js @@ -1,6 +1,7 @@ const mockData = { // 空 empty: { + status: 200, data: { "status": 200, "code": 200, @@ -13,6 +14,7 @@ const mockData = { bytes: { // 边界 boundary: { + status: 200, data: { "status": 200, "code": 200, @@ -66,6 +68,7 @@ const mockData = { }, // 正常数据 common: { + status: 200, data: {"status":200,"code":200,"data":{"resultType":"object","result":[{"type":"bytes","totalBitsRate":{"values":[[1673247564,"96801019.52"]],"analysis":{"avg":"112042808.24","max":"301842105.76","min":"52096324","p95":"168089003.35199997"}},"inboundBitsRate":{"values":[[1673247564,"11814508.48"]],"analysis":{"avg":"18587597.36","max":"137528138.88","min":"3181142.88","p95":"49561521.447999954"}},"outboundBitsRate":{"values":[[1673247564,"84282965.52"]],"analysis":{"avg":"87557861.44","max":"290402258","min":"45337684.48","p95":"121041718.81199999"}},"internalBitsRate":{"values":[[1673247564,"9125.12"]],"analysis":{"avg":"278114.32","max":"2215460.48","min":"0","p95":"923494.5719999998"}},"throughBitsRate":{"values":[[1673247564,"694420.48"]],"analysis":{"avg":"5619235.12","max":"42455480.24","min":"262607.76","p95":"13559588.195999999"}},"other":{"values":[[1673247564,"0.00"]],"analysis":{"avg":"0.01","max":"0.08","min":"0.00","p95":"0.08"}}},{"type":"packets","totalPacketsRate":{"values":[[1673247564,"12077.53"]],"analysis":{"avg":"14062.37","max":"32840.42","min":"6564.17","p95":"20923.167999999987"}},"inboundPacketsRate":{"values":[[1673247564,"3865.58"]],"analysis":{"avg":"4241.61","max":"15460.03","min":"1918.22","p95":"8549.799999999997"}},"outboundPacketsRate":{"values":[[1673247564,"8118.89"]],"analysis":{"avg":"9170.98","max":"27134.58","min":"4510.25","p95":"13690.540999999996"}},"internalPacketsRate":{"values":[[1673247564,"15.89"]],"analysis":{"avg":"35.95","max":"276.47","min":"0.00","p95":"122.49749999999999"}},"throughPacketsRate":{"values":[[1673247564,"77.17"]],"analysis":{"avg":"613.82","max":"3768.56","min":"42.92","p95":"1279.757499999999"}},"other":{"values":[[1673247564,"0.00"]],"analysis":{"avg":"0","max":"0.01","min":"0.00","p95":"0.01"}}},{"type":"sessions","totalSessionsRate":{"values":[[1673247564,"29.92"]],"analysis":{"avg":"29.89","max":"29.92","min":"29.67","p95":"29.92"}}}]},"msg":"OK"} } } diff --git a/test/views/charts2/charts/networkOverview/NetworkOverviewTabs.test.js b/test/views/charts2/charts/networkOverview/NetworkOverviewTabs.test.js index 9f206d02..f4ee5333 100644 --- a/test/views/charts2/charts/networkOverview/NetworkOverviewTabs.test.js +++ b/test/views/charts2/charts/networkOverview/NetworkOverviewTabs.test.js @@ -3,7 +3,7 @@ import { mount } from '@vue/test-utils' import axios from 'axios' import ElementPlus from 'element-plus' import indexedDBUtils from '@/indexedDB' -import { createStore} from 'vuex' +import { createStore } from 'vuex' const drilldownTableConfig = {"id":"default","version":"22.12","config":[{"route":"networkOverview","tables":[{"id":"networkOverview","hiddenColumns":[],"disabledColumns":[],"url":{"curUrl":"/interface/overview/dimensionTrafficAnalysis","cycleUrl":"/interface/overview/dimensionCycleTrafficAnalysis","drilldownCurUrl":"/interface/overview/drilldown/dimensionTrafficAnalysis","drilldownCycleUrl":"/interface/overview/drilldown/dimensionCycleTrafficAnalysis","drilldownList":"/interface/overview/drilldown/list"},"isOnlyRead":false,"panelId":1,"panelIdOfThirdMenu":13,"tabs":[{"name":"ips","show":true,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["ips","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["ips","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["ips","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["ips","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"countries","show":true,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["countries","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["countries","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["countries","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["countries","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"asns","show":true,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["asns","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["asns","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["asns","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["asns","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"apps","show":true,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["apps","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["apps","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["apps","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["apps","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"providers","show":true,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["providers","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["providers","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["providers","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["providers","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"domains","show":true,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["domains","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["domains","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["domains","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["domains","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"protocols","show":true,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["protocols","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["protocols","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["protocols","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["protocols","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"idcTenants","show":true,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["idcTenants","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["idcTenants","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["idcTenants","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"provinces","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["provinces","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["provinces","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["provinces","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"cities","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["cities","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["cities","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["cities","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"isps","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["isps","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["isps","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["isps","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"applicationCategories","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["applicationCategories","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["applicationCategories","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["applicationCategories","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"domainCategories","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["domainCategories","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["domainCategories","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["domainCategories","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"snis","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["snis","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["snis","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["snis","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"protocolPorts","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["protocolPorts","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["protocolPorts","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["protocolPorts","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientIps","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["clientIps","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["clientIps","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["clientIps","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverIps","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["serverIps","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["serverIps","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["serverIps","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientCountries","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["clientCountries","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["clientCountries","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["clientCountries","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverCountries","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["serverCountries","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["serverCountries","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["serverCountries","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientProvinces","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["clientProvinces","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["clientProvinces","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["clientProvinces","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverProvinces","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["serverProvinces","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["serverProvinces","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["serverProvinces","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientCities","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["clientCities","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["clientCities","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["clientCities","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverCities","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["serverCities","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["serverCities","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["serverCities","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientIsps","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["clientIsps","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["clientIsps","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["clientIsps","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverIsps","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["serverIsps","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["serverIsps","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["serverIsps","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientIdcRenters","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["clientIdcRenters","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["clientIdcRenters","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["clientIdcRenters","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverIdcRenters","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["serverIdcRenters","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["serverIdcRenters","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["serverIdcRenters","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientAsns","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["clientAsns","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["clientAsns","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["clientAsns","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverAsns","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["serverAsns","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["serverAsns","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["serverAsns","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]}]}],"tabs":[{"name":"ips","i18n":"network.ips","prop":"ip"},{"name":"countries","i18n":"network.countries","prop":"country"},{"name":"asns","i18n":"network.asns","prop":"asn"},{"name":"apps","i18n":"network.applications","prop":"appLabel"},{"name":"providers","i18n":"network.providers","prop":"appCompany"},{"name":"domains","i18n":"network.domains","prop":"domain"},{"name":"protocols","i18n":"network.protocols","prop":"l7Protocol"},{"name":"idcTenants","i18n":"network.idcTenants","prop":"idcRenter"},{"name":"provinces","i18n":"network.provinces","prop":"province"},{"name":"cities","i18n":"network.cities","prop":"city"},{"name":"isps","i18n":"network.isps","prop":"isp"},{"name":"applicationCategories","i18n":"network.applicationCategories","prop":"appSubcategory"},{"name":"domainCategories","i18n":"network.domainCategories","prop":"domainCategoryName"},{"name":"hosts","i18n":"network.hosts","prop":"httpHost"},{"name":"snis","i18n":"network.snis","prop":"sslSni"},{"name":"protocolPorts","i18n":"network.protocolPorts","prop":"protocolPort"},{"name":"clientIps","i18n":"network.clientIps","prop":"clientIp"},{"name":"serverIps","i18n":"network.serverIps","prop":"serverIp"},{"name":"clientCountries","i18n":"network.clientCountries","prop":"clientCountry"},{"name":"serverCountries","i18n":"network.serverCountries","prop":"serverCountry"},{"name":"clientProvinces","i18n":"network.clientProvinces","prop":"clientProvince"},{"name":"serverProvinces","i18n":"network.serverProvinces","prop":"serverProvince"},{"name":"clientCities","i18n":"network.clientCities","prop":"clientCity"},{"name":"serverCities","i18n":"network.serverCities","prop":"serverCity"},{"name":"clientIsps","i18n":"network.clientIsps","prop":"clientIsp"},{"name":"serverIsps","i18n":"network.serverIsps","prop":"serverIsp"},{"name":"clientIdcRenters","i18n":"network.clientIdcRenters","prop":"clientIdcRenter"},{"name":"serverIdcRenters","i18n":"network.serverIdcRenters","prop":"serverIdcRenter"},{"name":"clientAsns","i18n":"network.clientAsns","prop":"clientAsn"},{"name":"serverAsns","i18n":"network.serverAsns","prop":"serverAsn"}],"columns":[{"name":"total","i18n":"network.total","prop":"total","columnType":"chainRatio"},{"name":"inbound","i18n":"network.inbound","prop":"inbound","columnType":"normal"},{"name":"outbound","i18n":"network.outbound","prop":"outbound","columnType":"normal"},{"name":"internal","i18n":"network.internal","prop":"internal","columnType":"normal"},{"name":"through","i18n":"network.through","prop":"through","columnType":"normal"},{"name":"ips","i18n":"network.ip","prop":"ip","columnType":"dillDown"},{"name":"countries","i18n":"network.country","prop":"country","columnType":"dillDown"},{"name":"asns","i18n":"network.asn","prop":"asn","columnType":"dillDown"},{"name":"apps","i18n":"network.application","prop":"appLabel","columnType":"dillDown"},{"name":"providers","i18n":"network.provider","prop":"appCompany","columnType":"dillDown"},{"name":"domains","i18n":"network.domain","prop":"domain","columnType":"dillDown"},{"name":"protocols","i18n":"network.protocol","prop":"l7Protocol","columnType":"dillDown"},{"name":"idcTenants","i18n":"network.idcTenant","prop":"idcRenter","columnType":"dillDown"},{"name":"provinces","i18n":"network.province","prop":"province","columnType":"dillDown"},{"name":"cities","i18n":"network.city","prop":"city","columnType":"dillDown"},{"name":"isps","i18n":"network.isp","prop":"isp","columnType":"dillDown"},{"name":"applicationCategories","i18n":"network.applicationCategory","prop":"appSubcategory","columnType":"dillDown"},{"name":"domainCategories","i18n":"network.domainCategory","prop":"domainCategoryName","columnType":"dillDown"},{"name":"hosts","i18n":"network.host","prop":"httpHost","columnType":"dillDown"},{"name":"snis","i18n":"network.sni","prop":"sslSni","columnType":"dillDown"},{"name":"protocolPorts","i18n":"network.protocolPort","prop":"protocolPort","columnType":"dillDown"},{"name":"clientIps","i18n":"network.clientIp","prop":"clientIp","columnType":"dillDown"},{"name":"serverIps","i18n":"network.serverIp","prop":"serverIp","columnType":"dillDown"},{"name":"clientCountries","i18n":"network.clientCountry","prop":"clientCountry","columnType":"dillDown"},{"name":"serverCountries","i18n":"network.serverCountry","prop":"serverCountry","columnType":"dillDown"},{"name":"clientProvinces","i18n":"network.clientProvince","prop":"clientProvince","columnType":"dillDown"},{"name":"serverProvinces","i18n":"network.serverProvince","prop":"serverProvince","columnType":"dillDown"},{"name":"clientCities","i18n":"network.clientCity","prop":"clientCity","columnType":"dillDown"},{"name":"serverCities","i18n":"network.serverCity","prop":"serverCity","columnType":"dillDown"},{"name":"clientIsps","i18n":"network.clientIsp","prop":"clientIsp","columnType":"dillDown"},{"name":"serverIsps","i18n":"network.serverIsp","prop":"serverIsp","columnType":"dillDown"},{"name":"clientIdcRenters","i18n":"network.clientIdcRenter","prop":"clientIdcRenter","columnType":"dillDown"},{"name":"serverIdcRenters","i18n":"network.serverIdcRenter","prop":"serverIdcRenter","columnType":"dillDown"},{"name":"clientAsns","i18n":"network.clientAsn","prop":"clientAsn","columnType":"dillDown"},{"name":"serverAsns","i18n":"network.serverAsn","prop":"serverAsn","columnType":"dillDown"}]},{"route":"networkAppPerformance","tables":[{"id":"networkAppPerformance","hiddenColumns":["packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"disabledColumns":[],"url":{"curUrl":"/interface/application/performance/overview/dimensionTrafficAnalysis","cycleUrl":"/interface/application/performance/overview/dimensionCycleTrafficAnalysis","drilldownCurUrl":"/interface/application/performance/overview/drilldown/dimensionTrafficAnalysis","drilldownCycleUrl":"/interface/application/performance/overview/drilldown/dimensionCycleTrafficAnalysis","drilldownList":"/interface/overview/drilldown/list"},"hasMetricSearch":false,"isOnlyRead":false,"panelId":2,"panelIdOfThirdMenu":12,"showUnit":true,"tabs":[{"name":"ips","show":true,"enable":true,"panelIdOfFourthMenu":8,"columns":["ips","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["ips","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"countries","show":true,"enable":true,"panelIdOfFourthMenu":11,"columns":["countries","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["countries","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"asns","show":true,"enable":true,"panelIdOfFourthMenu":11,"columns":["asns","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["asns","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"apps","show":true,"enable":true,"panelIdOfFourthMenu":10,"columns":["apps","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["apps","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"providers","show":true,"enable":true,"panelIdOfFourthMenu":11,"columns":["providers","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["providers","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"domains","show":true,"enable":true,"panelIdOfFourthMenu":9,"columns":["domains","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["domains","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"protocols","show":true,"enable":true,"panelIdOfFourthMenu":11,"columns":["protocols","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["protocols","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"idcTenants","show":true,"enable":true,"panelIdOfFourthMenu":11,"columns":["idcTenants","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"provinces","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["provinces","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"cities","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["cities","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"isps","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["isps","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"applicationCategories","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["applicationCategories","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"domainCategories","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["domainCategories","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"snis","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["snis","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"protocolPorts","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["protocolPorts","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientIps","show":false,"enable":true,"panelIdOfFourthMenu":8,"columns":["clientIps","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverIps","show":false,"enable":true,"panelIdOfFourthMenu":8,"columns":["serverIps","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientCountries","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["clientCountries","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverCountries","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["serverCountries","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientProvinces","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["clientProvinces","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverProvinces","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["serverProvinces","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientCities","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["clientCities","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverCities","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["serverCities","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientIsps","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["clientIsps","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverIsps","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["serverIsps","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientIdcRenters","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["clientIdcRenters","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverIdcRenters","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["serverIdcRenters","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientAsns","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["clientAsns","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverAsns","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["serverAsns","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]}]}],"tabs":[{"name":"ips","i18n":"network.ips","prop":"ip"},{"name":"countries","i18n":"network.countries","prop":"country"},{"name":"asns","i18n":"network.asns","prop":"asn"},{"name":"apps","i18n":"network.applications","prop":"appLabel"},{"name":"providers","i18n":"network.providers","prop":"appCompany"},{"name":"domains","i18n":"network.domains","prop":"domain"},{"name":"protocols","i18n":"network.protocols","prop":"l7Protocol"},{"name":"idcTenants","i18n":"network.idcTenants","prop":"idcRenter"},{"name":"provinces","i18n":"network.provinces","prop":"province"},{"name":"cities","i18n":"network.cities","prop":"city"},{"name":"isps","i18n":"network.isps","prop":"isp"},{"name":"applicationCategories","i18n":"network.applicationCategories","prop":"appSubcategory"},{"name":"domainCategories","i18n":"network.domainCategories","prop":"domainCategoryName"},{"name":"hosts","i18n":"network.hosts","prop":"httpHost"},{"name":"snis","i18n":"network.snis","prop":"sslSni"},{"name":"protocolPorts","i18n":"network.protocolPorts","prop":"protocolPort"},{"name":"clientIps","i18n":"network.clientIps","prop":"clientIp"},{"name":"serverIps","i18n":"network.serverIps","prop":"serverIp"},{"name":"clientCountries","i18n":"network.clientCountries","prop":"clientCountry"},{"name":"serverCountries","i18n":"network.serverCountries","prop":"serverCountry"},{"name":"clientProvinces","i18n":"network.clientProvinces","prop":"clientProvince"},{"name":"serverProvinces","i18n":"network.serverProvinces","prop":"serverProvince"},{"name":"clientCities","i18n":"network.clientCities","prop":"clientCity"},{"name":"serverCities","i18n":"network.serverCities","prop":"serverCity"},{"name":"clientIsps","i18n":"network.clientIsps","prop":"clientIsp"},{"name":"serverIsps","i18n":"network.serverIsps","prop":"serverIsp"},{"name":"clientIdcRenters","i18n":"network.clientIdcRenters","prop":"clientIdcRenter"},{"name":"serverIdcRenters","i18n":"network.serverIdcRenters","prop":"serverIdcRenter"},{"name":"clientAsns","i18n":"network.clientAsns","prop":"clientAsn"},{"name":"serverAsns","i18n":"network.serverAsns","prop":"serverAsn"}],"columns":[{"name":"score","i18n":"network.score","prop":"score","columnType":"normal"},{"name":"through","i18n":"networkAppPerformance.throughput","prop":"totalBytes","columnType":"chainRatio","unit":"byte"},{"name":"tcpConEstLatency","i18n":"networkAppPerformance.tcpConnectionEstablishLatency","prop":"tcpConEstLatency","columnType":"chainRatio","unit":"time"},{"name":"packetLoss","i18n":"networkAppPerformance.packetLoss","prop":"packetLoss","columnType":"chainRatio","unit":"percent"},{"name":"packetRetrans","i18n":"networkAppPerformance.packetRetrans","prop":"packetRetrans","columnType":"chainRatio","unit":"percent"},{"name":"sslResponseLatency","i18n":"networkAppPerformance.sslResponseLatency","prop":"sslResponseLatency","columnType":"chainRatio","unit":"time"},{"name":"httpResponseLatency","i18n":"networkAppPerformance.httpResponseLatency","prop":"httpResponseLatency","columnType":"chainRatio","unit":"time"},{"name":"ips","i18n":"network.ip","prop":"ip","columnType":"dillDown"},{"name":"countries","i18n":"network.country","prop":"country","columnType":"dillDown"},{"name":"asns","i18n":"network.asn","prop":"asn","columnType":"dillDown"},{"name":"apps","i18n":"network.application","prop":"appLabel","columnType":"dillDown"},{"name":"providers","i18n":"network.provider","prop":"appCompany","columnType":"dillDown"},{"name":"domains","i18n":"network.domain","prop":"domain","columnType":"dillDown"},{"name":"protocols","i18n":"network.protocol","prop":"l7Protocol","columnType":"dillDown"},{"name":"idcTenants","i18n":"network.idcTenant","prop":"idcRenter","columnType":"dillDown"},{"name":"provinces","i18n":"network.province","prop":"province","columnType":"dillDown"},{"name":"cities","i18n":"network.city","prop":"city","columnType":"dillDown"},{"name":"isps","i18n":"network.isp","prop":"isp","columnType":"dillDown"},{"name":"applicationCategories","i18n":"network.applicationCategory","prop":"appSubcategory","columnType":"dillDown"},{"name":"domainCategories","i18n":"network.domainCategory","prop":"domainCategoryName","columnType":"dillDown"},{"name":"hosts","i18n":"network.host","prop":"httpHost","columnType":"dillDown"},{"name":"snis","i18n":"network.sni","prop":"sslSni","columnType":"dillDown"},{"name":"protocolPorts","i18n":"network.protocolPort","prop":"protocolPort","columnType":"dillDown"},{"name":"clientIps","i18n":"network.clientIp","prop":"clientIp","columnType":"dillDown"},{"name":"serverIps","i18n":"network.serverIp","prop":"serverIp","columnType":"dillDown"},{"name":"clientCountries","i18n":"network.clientCountry","prop":"clientCountry","columnType":"dillDown"},{"name":"serverCountries","i18n":"network.serverCountry","prop":"serverCountry","columnType":"dillDown"},{"name":"clientProvinces","i18n":"network.clientProvince","prop":"clientProvince","columnType":"dillDown"},{"name":"serverProvinces","i18n":"network.serverProvince","prop":"serverProvince","columnType":"dillDown"},{"name":"clientCities","i18n":"network.clientCity","prop":"clientCity","columnType":"dillDown"},{"name":"serverCities","i18n":"network.serverCity","prop":"serverCity","columnType":"dillDown"},{"name":"clientIsps","i18n":"network.clientIsp","prop":"clientIsp","columnType":"dillDown"},{"name":"serverIsps","i18n":"network.serverIsp","prop":"serverIsp","columnType":"dillDown"},{"name":"clientIdcRenters","i18n":"network.clientIdcRenter","prop":"clientIdcRenter","columnType":"dillDown"},{"name":"serverIdcRenters","i18n":"network.serverIdcRenter","prop":"serverIdcRenter","columnType":"dillDown"},{"name":"clientAsns","i18n":"network.clientAsn","prop":"clientAsn","columnType":"dillDown"},{"name":"serverAsns","i18n":"network.serverAsn","prop":"serverAsn","columnType":"dillDown"}]},{"route":"dnsServiceInsights","tables":[{"id":"dnsServiceInsights","hiddenColumns":[],"disabledColumns":[],"url":{"curUrl":"/interface/dns/overview/dimensionAnalysis","cycleUrl":"/interface/dns/overview/dimensionCycleAnalysis","drilldownCurUrl":"/interface/dns/overview/drilldown/dimensionAnalysis","drilldownCycleUrl":"/interface/dns/overview/drilldown/dimensionCycleAnalysis","drilldownList":"/interface/dns/overview/drilldown/list"},"hasMetricSearch":false,"isOnlyRead":false,"panelId":3,"panelIdOfThirdMenu":17,"showUnit":true,"tabs":[{"name":"dnsServer","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["dnsServer","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":[],"disabledDrilldownTabs":[]},{"name":"countries","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["countries","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["countries","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"disabledDrilldownTabs":["qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"]},{"name":"cities","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["cities","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["cities","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"disabledDrilldownTabs":["qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"]},{"name":"isps","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["isps","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["isps","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"disabledDrilldownTabs":["qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"]},{"name":"orgs","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["orgs","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["orgs","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"disabledDrilldownTabs":["qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"]},{"name":"roles","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["roles","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"disabledDrilldownTabs":["qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"]},{"name":"qnames","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["qnames","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["qnames"],"disabledDrilldownTabs":[]},{"name":"slds","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["slds","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["slds"],"disabledDrilldownTabs":[]},{"name":"tlds","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["tlds","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["tlds"],"disabledDrilldownTabs":[]},{"name":"qtypes","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["qtypes","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["qtypes","a","aaaa","cnames"],"disabledDrilldownTabs":["a","aaaa","cnames"]},{"name":"rcodes","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["rcodes","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["rcodes","a","aaaa","cnames"],"disabledDrilldownTabs":["a","aaaa","cnames"]},{"name":"a","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["a","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["qtypes","rcodes","a","aaaa","cnames"],"disabledDrilldownTabs":["qtypes","rcodes","aaaa","cnames"]},{"name":"aaaa","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["aaaa","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["qtypes","rcodes","a","aaaa","cnames"],"disabledDrilldownTabs":["qtypes","rcodes","a","cnames"]},{"name":"cnames","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["cnames","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["qtypes","rcodes","a","aaaa","cnames"],"disabledDrilldownTabs":["qtypes","rcodes","a","aaaa"]}]}],"tabs":[{"name":"dnsServer","i18n":"dns.dnsServer","prop":"dnsServer"},{"name":"countries","i18n":"network.countries","prop":"country"},{"name":"cities","i18n":"network.cities","prop":"city"},{"name":"isps","i18n":"dns.dnsServerIsps","prop":"dnsServerIsp"},{"name":"orgs","i18n":"dns.dnsServerOrganizations","prop":"dnsServerOrganization"},{"name":"roles","i18n":"dns.dnsServerRoles","prop":"dnsServerRole"},{"name":"qnames","i18n":"QNames","prop":"qname"},{"name":"slds","i18n":"SLDs","prop":"sld"},{"name":"tlds","i18n":"TLDs","prop":"tld"},{"name":"qtypes","i18n":"QTypes","prop":"qtype"},{"name":"rcodes","i18n":"RCodes","prop":"rcode"},{"name":"a","i18n":"A","prop":"a"},{"name":"aaaa","i18n":"AAAA","prop":"aaaa"},{"name":"cnames","i18n":"CNames","prop":"cname"}],"columns":[{"name":"queries","i18n":"dns.queries","prop":"queryRate","columnType":"chainRatio","unit":"qps"},{"name":"queriesFromIE","i18n":"dns.queriesFromIE","prop":"totalInExNum","columnType":"percent"},{"name":"responseTime","i18n":"dns.dnsResponseTime","prop":"dnsResponseLatencyAvg","columnType":"normal","unit":"time"},{"name":"throughput","i18n":"overall.throughput","prop":"totalBytes","columnType":"normal","unit":"byte"},{"name":"dnsServer","i18n":"dns.dnsServer","prop":"dnsServer","columnType":"dillDown"},{"name":"countries","i18n":"network.country","prop":"country","columnType":"dillDown"},{"name":"cities","i18n":"network.city","prop":"city","columnType":"dillDown"},{"name":"isps","i18n":"dns.dnsServerIsp","prop":"dnsServerIsp","columnType":"dillDown"},{"name":"orgs","i18n":"dns.dnsServerOrganization","prop":"dnsServerOrganization","columnType":"dillDown"},{"name":"roles","i18n":"dns.dnsServerRole","prop":"dnsServerRole","columnType":"dillDown"},{"name":"qnames","i18n":"QName","prop":"qname","columnType":"dillDown"},{"name":"slds","i18n":"SLD","prop":"sld","columnType":"dillDown"},{"name":"tlds","i18n":"TLD","prop":"tld","columnType":"dillDown"},{"name":"qtypes","i18n":"QType","prop":"qtype","columnType":"dillDown"},{"name":"rcodes","i18n":"RCode","prop":"rcode","columnType":"dillDown"},{"name":"a","i18n":"A","prop":"a","columnType":"dillDown"},{"name":"aaaa","i18n":"AAAA","prop":"aaaa","columnType":"dillDown"},{"name":"cnames","i18n":"CName","prop":"cname","columnType":"dillDown"}]},{"route":"linkMonitor","tables":[{"id":"linkMonitor","hiddenColumns":["packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"disabledColumns":[],"url":{"curUrl":"/interface/link/overview/drilldown/dimension/analysis","cycleUrl":"/interface/link/overview/drilldown/dimension/cycleAnalysis","drilldownCurUrl":"/interface/link/overview/drilldown/dimension/analysis","drilldownCycleUrl":"/interface/link/overview/drilldown/dimension/cycleAnalysis","drilldownList":""},"hasMetricSearch":false,"isOnlyRead":true,"panelId":4,"panelIdOfThirdMenu":15,"showUnit":true,"tabs":[{"name":"ips","show":true,"enable":true,"panelIdOfFourthMenu":15,"columns":["ips","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["ips","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"countries","show":true,"enable":true,"panelIdOfFourthMenu":15,"columns":["countries","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["countries","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"asns","show":true,"enable":true,"panelIdOfFourthMenu":15,"columns":["asns","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["asns","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"apps","show":true,"enable":true,"panelIdOfFourthMenu":15,"columns":["apps","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["apps","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"providers","show":true,"enable":true,"panelIdOfFourthMenu":15,"columns":["providers","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["providers","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"domains","show":true,"enable":true,"panelIdOfFourthMenu":15,"columns":["domains","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["domains","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"protocols","show":true,"enable":true,"panelIdOfFourthMenu":15,"columns":["protocols","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["protocols","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"idcTenants","show":true,"enable":true,"panelIdOfFourthMenu":15,"columns":["idcTenants","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"provinces","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["provinces","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"cities","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["cities","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"isps","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["isps","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"applicationCategories","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["applicationCategories","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"domainCategories","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["domainCategories","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"snis","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["snis","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"protocolPorts","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["protocolPorts","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientIps","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["clientIps","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverIps","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["serverIps","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientCountries","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["clientCountries","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverCountries","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["serverCountries","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientProvinces","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["clientProvinces","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverProvinces","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["serverProvinces","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientCities","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["clientCities","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverCities","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["serverCities","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientIsps","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["clientIsps","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverIsps","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["serverIsps","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientIdcRenters","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["clientIdcRenters","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverIdcRenters","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["serverIdcRenters","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientAsns","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["clientAsns","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverAsns","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["serverAsns","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]}]}],"tabs":[{"name":"ips","i18n":"network.ips","prop":"ip"},{"name":"countries","i18n":"network.countries","prop":"country"},{"name":"asns","i18n":"network.asns","prop":"asn"},{"name":"apps","i18n":"network.applications","prop":"appLabel"},{"name":"providers","i18n":"network.providers","prop":"appCompany"},{"name":"domains","i18n":"network.domains","prop":"domain"},{"name":"protocols","i18n":"network.protocols","prop":"l7Protocol"},{"name":"idcTenants","i18n":"network.idcTenants","prop":"idcRenter"},{"name":"provinces","i18n":"network.provinces","prop":"province"},{"name":"cities","i18n":"network.cities","prop":"city"},{"name":"isps","i18n":"network.isps","prop":"isp"},{"name":"applicationCategories","i18n":"network.applicationCategories","prop":"appSubcategory"},{"name":"domainCategories","i18n":"network.domainCategories","prop":"domainCategoryName"},{"name":"hosts","i18n":"network.hosts","prop":"httpHost"},{"name":"snis","i18n":"network.snis","prop":"sslSni"},{"name":"protocolPorts","i18n":"network.protocolPorts","prop":"protocolPort"},{"name":"clientIps","i18n":"network.clientIps","prop":"clientIp"},{"name":"serverIps","i18n":"network.serverIps","prop":"serverIp"},{"name":"clientCountries","i18n":"network.clientCountries","prop":"clientCountry"},{"name":"serverCountries","i18n":"network.serverCountries","prop":"serverCountry"},{"name":"clientProvinces","i18n":"network.clientProvinces","prop":"clientProvince"},{"name":"serverProvinces","i18n":"network.serverProvinces","prop":"serverProvince"},{"name":"clientCities","i18n":"network.clientCities","prop":"clientCity"},{"name":"serverCities","i18n":"network.serverCities","prop":"serverCity"},{"name":"clientIsps","i18n":"network.clientIsps","prop":"clientIsp"},{"name":"serverIsps","i18n":"network.serverIsps","prop":"serverIsp"},{"name":"clientIdcRenters","i18n":"network.clientIdcRenters","prop":"clientIdcRenter"},{"name":"serverIdcRenters","i18n":"network.serverIdcRenters","prop":"serverIdcRenter"},{"name":"clientAsns","i18n":"network.clientAsns","prop":"clientAsn"},{"name":"serverAsns","i18n":"network.serverAsns","prop":"serverAsn"}],"columns":[{"name":"score","i18n":"network.score","prop":"score","columnType":"normal"},{"name":"through","i18n":"networkAppPerformance.throughput","prop":"totalBytes","columnType":"chainRatio","unit":"byte"},{"name":"tcpConEstLatency","i18n":"networkAppPerformance.tcpConnectionEstablishLatency","prop":"tcpConEstLatency","columnType":"chainRatio","unit":"time"},{"name":"packetLoss","i18n":"networkAppPerformance.packetLoss","prop":"packetLoss","columnType":"chainRatio","unit":"percent"},{"name":"packetRetrans","i18n":"networkAppPerformance.packetRetrans","prop":"packetRetrans","columnType":"chainRatio","unit":"percent"},{"name":"sslResponseLatency","i18n":"networkAppPerformance.sslResponseLatency","prop":"sslResponseLatency","columnType":"chainRatio","unit":"time"},{"name":"httpResponseLatency","i18n":"networkAppPerformance.httpResponseLatency","prop":"httpResponseLatency","columnType":"chainRatio","unit":"time"},{"name":"ips","i18n":"network.ip","prop":"ip","columnType":"dillDown"},{"name":"countries","i18n":"network.country","prop":"country","columnType":"dillDown"},{"name":"asns","i18n":"network.asn","prop":"asn","columnType":"dillDown"},{"name":"apps","i18n":"network.application","prop":"appLabel","columnType":"dillDown"},{"name":"providers","i18n":"network.provider","prop":"appCompany","columnType":"dillDown"},{"name":"domains","i18n":"network.domain","prop":"domain","columnType":"dillDown"},{"name":"protocols","i18n":"network.protocol","prop":"l7Protocol","columnType":"dillDown"},{"name":"idcTenants","i18n":"network.idcTenant","prop":"idcRenter","columnType":"dillDown"},{"name":"provinces","i18n":"network.province","prop":"province","columnType":"dillDown"},{"name":"cities","i18n":"network.city","prop":"city","columnType":"dillDown"},{"name":"isps","i18n":"network.isp","prop":"isp","columnType":"dillDown"},{"name":"applicationCategories","i18n":"network.applicationCategory","prop":"appSubcategory","columnType":"dillDown"},{"name":"domainCategories","i18n":"network.domainCategory","prop":"domainCategoryName","columnType":"dillDown"},{"name":"hosts","i18n":"network.host","prop":"httpHost","columnType":"dillDown"},{"name":"snis","i18n":"network.sni","prop":"sslSni","columnType":"dillDown"},{"name":"protocolPorts","i18n":"network.protocolPort","prop":"protocolPort","columnType":"dillDown"},{"name":"clientIps","i18n":"network.clientIp","prop":"clientIp","columnType":"dillDown"},{"name":"serverIps","i18n":"network.serverIp","prop":"serverIp","columnType":"dillDown"},{"name":"clientCountries","i18n":"network.clientCountry","prop":"clientCountry","columnType":"dillDown"},{"name":"serverCountries","i18n":"network.serverCountry","prop":"serverCountry","columnType":"dillDown"},{"name":"clientProvinces","i18n":"network.clientProvince","prop":"clientProvince","columnType":"dillDown"},{"name":"serverProvinces","i18n":"network.serverProvince","prop":"serverProvince","columnType":"dillDown"},{"name":"clientCities","i18n":"network.clientCity","prop":"clientCity","columnType":"dillDown"},{"name":"serverCities","i18n":"network.serverCity","prop":"serverCity","columnType":"dillDown"},{"name":"clientIsps","i18n":"network.clientIsp","prop":"clientIsp","columnType":"dillDown"},{"name":"serverIsps","i18n":"network.serverIsp","prop":"serverIsp","columnType":"dillDown"},{"name":"clientIdcRenters","i18n":"network.clientIdcRenter","prop":"clientIdcRenter","columnType":"dillDown"},{"name":"serverIdcRenters","i18n":"network.serverIdcRenter","prop":"serverIdcRenter","columnType":"dillDown"},{"name":"clientAsns","i18n":"network.clientAsn","prop":"clientAsn","columnType":"dillDown"},{"name":"serverAsns","i18n":"network.serverAsn","prop":"serverAsn","columnType":"dillDown"}]}]} const drilldownTableConfigUserSelf = {"id":"1","version":"22.12","config":[{"route":"networkOverview","tables":[{"id":"networkOverview","hiddenColumns":[],"disabledColumns":[],"url":{"curUrl":"/interface/overview/dimensionTrafficAnalysis","cycleUrl":"/interface/overview/dimensionCycleTrafficAnalysis","drilldownCurUrl":"/interface/overview/drilldown/dimensionTrafficAnalysis","drilldownCycleUrl":"/interface/overview/drilldown/dimensionCycleTrafficAnalysis","drilldownList":"/interface/overview/drilldown/list"},"isOnlyRead":false,"panelId":1,"panelIdOfThirdMenu":13,"tabs":[{"name":"ips","show":true,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["ips","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["ips","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["ips","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["ips","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"countries","show":true,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["countries","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["countries","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["countries","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["countries","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"asns","show":true,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["asns","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["asns","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["asns","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["asns","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"apps","show":true,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["apps","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["apps","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["apps","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["apps","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"providers","show":true,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["providers","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["providers","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["providers","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["providers","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"domains","show":true,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["domains","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["domains","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["domains","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["domains","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"protocols","show":true,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["protocols","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["protocols","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["protocols","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["protocols","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"idcTenants","show":true,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["idcTenants","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["idcTenants","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["idcTenants","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"provinces","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["provinces","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["provinces","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["provinces","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"cities","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["cities","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["cities","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["cities","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"isps","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["isps","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["isps","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["isps","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"applicationCategories","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["applicationCategories","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["applicationCategories","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["applicationCategories","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"domainCategories","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["domainCategories","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["domainCategories","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["domainCategories","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"snis","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["snis","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["snis","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["snis","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"protocolPorts","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["protocolPorts","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["protocolPorts","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["protocolPorts","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientIps","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["clientIps","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["clientIps","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["clientIps","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverIps","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["serverIps","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["serverIps","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["serverIps","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientCountries","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["clientCountries","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["clientCountries","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["clientCountries","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverCountries","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["serverCountries","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["serverCountries","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["serverCountries","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientProvinces","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["clientProvinces","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["clientProvinces","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["clientProvinces","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverProvinces","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["serverProvinces","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["serverProvinces","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["serverProvinces","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientCities","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["clientCities","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["clientCities","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["clientCities","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverCities","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["serverCities","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["serverCities","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["serverCities","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientIsps","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["clientIsps","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["clientIsps","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["clientIsps","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverIsps","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["serverIsps","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["serverIsps","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["serverIsps","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientIdcRenters","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["clientIdcRenters","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["clientIdcRenters","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["clientIdcRenters","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverIdcRenters","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["serverIdcRenters","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["serverIdcRenters","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["serverIdcRenters","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientAsns","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["clientAsns","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["clientAsns","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["clientAsns","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverAsns","show":false,"enable":true,"panelIdOfFourthMenu":13,"hasMetricSearch":true,"metrics":[{"name":"Bits/s","columns":["serverAsns","total","inbound","outbound","internal","through"]},{"name":"Packets/s","columns":["serverAsns","total","inbound","outbound","internal","through"]},{"name":"Sessions/s","columns":["serverAsns","total"]}],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]}]}],"tabs":[{"name":"ips","i18n":"network.ips","prop":"ip"},{"name":"countries","i18n":"network.countries","prop":"country"},{"name":"asns","i18n":"network.asns","prop":"asn"},{"name":"apps","i18n":"network.applications","prop":"appLabel"},{"name":"providers","i18n":"network.providers","prop":"appCompany"},{"name":"domains","i18n":"network.domains","prop":"domain"},{"name":"protocols","i18n":"network.protocols","prop":"l7Protocol"},{"name":"idcTenants","i18n":"network.idcTenants","prop":"idcRenter"},{"name":"provinces","i18n":"network.provinces","prop":"province"},{"name":"cities","i18n":"network.cities","prop":"city"},{"name":"isps","i18n":"network.isps","prop":"isp"},{"name":"applicationCategories","i18n":"network.applicationCategories","prop":"appSubcategory"},{"name":"domainCategories","i18n":"network.domainCategories","prop":"domainCategoryName"},{"name":"hosts","i18n":"network.hosts","prop":"httpHost"},{"name":"snis","i18n":"network.snis","prop":"sslSni"},{"name":"protocolPorts","i18n":"network.protocolPorts","prop":"protocolPort"},{"name":"clientIps","i18n":"network.clientIps","prop":"clientIp"},{"name":"serverIps","i18n":"network.serverIps","prop":"serverIp"},{"name":"clientCountries","i18n":"network.clientCountries","prop":"clientCountry"},{"name":"serverCountries","i18n":"network.serverCountries","prop":"serverCountry"},{"name":"clientProvinces","i18n":"network.clientProvinces","prop":"clientProvince"},{"name":"serverProvinces","i18n":"network.serverProvinces","prop":"serverProvince"},{"name":"clientCities","i18n":"network.clientCities","prop":"clientCity"},{"name":"serverCities","i18n":"network.serverCities","prop":"serverCity"},{"name":"clientIsps","i18n":"network.clientIsps","prop":"clientIsp"},{"name":"serverIsps","i18n":"network.serverIsps","prop":"serverIsp"},{"name":"clientIdcRenters","i18n":"network.clientIdcRenters","prop":"clientIdcRenter"},{"name":"serverIdcRenters","i18n":"network.serverIdcRenters","prop":"serverIdcRenter"},{"name":"clientAsns","i18n":"network.clientAsns","prop":"clientAsn"},{"name":"serverAsns","i18n":"network.serverAsns","prop":"serverAsn"}],"columns":[{"name":"total","i18n":"network.total","prop":"total","columnType":"chainRatio"},{"name":"inbound","i18n":"network.inbound","prop":"inbound","columnType":"normal"},{"name":"outbound","i18n":"network.outbound","prop":"outbound","columnType":"normal"},{"name":"internal","i18n":"network.internal","prop":"internal","columnType":"normal"},{"name":"through","i18n":"network.through","prop":"through","columnType":"normal"},{"name":"ips","i18n":"network.ip","prop":"ip","columnType":"dillDown"},{"name":"countries","i18n":"network.country","prop":"country","columnType":"dillDown"},{"name":"asns","i18n":"network.asn","prop":"asn","columnType":"dillDown"},{"name":"apps","i18n":"network.application","prop":"appLabel","columnType":"dillDown"},{"name":"providers","i18n":"network.provider","prop":"appCompany","columnType":"dillDown"},{"name":"domains","i18n":"network.domain","prop":"domain","columnType":"dillDown"},{"name":"protocols","i18n":"network.protocol","prop":"l7Protocol","columnType":"dillDown"},{"name":"idcTenants","i18n":"network.idcTenant","prop":"idcRenter","columnType":"dillDown"},{"name":"provinces","i18n":"network.province","prop":"province","columnType":"dillDown"},{"name":"cities","i18n":"network.city","prop":"city","columnType":"dillDown"},{"name":"isps","i18n":"network.isp","prop":"isp","columnType":"dillDown"},{"name":"applicationCategories","i18n":"network.applicationCategory","prop":"appSubcategory","columnType":"dillDown"},{"name":"domainCategories","i18n":"network.domainCategory","prop":"domainCategoryName","columnType":"dillDown"},{"name":"hosts","i18n":"network.host","prop":"httpHost","columnType":"dillDown"},{"name":"snis","i18n":"network.sni","prop":"sslSni","columnType":"dillDown"},{"name":"protocolPorts","i18n":"network.protocolPort","prop":"protocolPort","columnType":"dillDown"},{"name":"clientIps","i18n":"network.clientIp","prop":"clientIp","columnType":"dillDown"},{"name":"serverIps","i18n":"network.serverIp","prop":"serverIp","columnType":"dillDown"},{"name":"clientCountries","i18n":"network.clientCountry","prop":"clientCountry","columnType":"dillDown"},{"name":"serverCountries","i18n":"network.serverCountry","prop":"serverCountry","columnType":"dillDown"},{"name":"clientProvinces","i18n":"network.clientProvince","prop":"clientProvince","columnType":"dillDown"},{"name":"serverProvinces","i18n":"network.serverProvince","prop":"serverProvince","columnType":"dillDown"},{"name":"clientCities","i18n":"network.clientCity","prop":"clientCity","columnType":"dillDown"},{"name":"serverCities","i18n":"network.serverCity","prop":"serverCity","columnType":"dillDown"},{"name":"clientIsps","i18n":"network.clientIsp","prop":"clientIsp","columnType":"dillDown"},{"name":"serverIsps","i18n":"network.serverIsp","prop":"serverIsp","columnType":"dillDown"},{"name":"clientIdcRenters","i18n":"network.clientIdcRenter","prop":"clientIdcRenter","columnType":"dillDown"},{"name":"serverIdcRenters","i18n":"network.serverIdcRenter","prop":"serverIdcRenter","columnType":"dillDown"},{"name":"clientAsns","i18n":"network.clientAsn","prop":"clientAsn","columnType":"dillDown"},{"name":"serverAsns","i18n":"network.serverAsn","prop":"serverAsn","columnType":"dillDown"}]},{"route":"networkAppPerformance","tables":[{"id":"networkAppPerformance","hiddenColumns":["packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"disabledColumns":[],"url":{"curUrl":"/interface/application/performance/overview/dimensionTrafficAnalysis","cycleUrl":"/interface/application/performance/overview/dimensionCycleTrafficAnalysis","drilldownCurUrl":"/interface/application/performance/overview/drilldown/dimensionTrafficAnalysis","drilldownCycleUrl":"/interface/application/performance/overview/drilldown/dimensionCycleTrafficAnalysis","drilldownList":"/interface/overview/drilldown/list"},"hasMetricSearch":false,"isOnlyRead":false,"panelId":2,"panelIdOfThirdMenu":12,"showUnit":true,"tabs":[{"name":"ips","show":true,"enable":true,"panelIdOfFourthMenu":8,"columns":["ips","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["ips","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"countries","show":true,"enable":true,"panelIdOfFourthMenu":11,"columns":["countries","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["countries","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"asns","show":true,"enable":true,"panelIdOfFourthMenu":11,"columns":["asns","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["asns","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"apps","show":true,"enable":true,"panelIdOfFourthMenu":10,"columns":["apps","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["apps","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"providers","show":true,"enable":true,"panelIdOfFourthMenu":11,"columns":["providers","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["providers","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"domains","show":true,"enable":true,"panelIdOfFourthMenu":9,"columns":["domains","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["domains","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"protocols","show":true,"enable":true,"panelIdOfFourthMenu":11,"columns":["protocols","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["protocols","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"idcTenants","show":true,"enable":true,"panelIdOfFourthMenu":11,"columns":["idcTenants","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"provinces","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["provinces","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"cities","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["cities","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"isps","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["isps","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"applicationCategories","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["applicationCategories","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"domainCategories","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["domainCategories","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"snis","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["snis","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"protocolPorts","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["protocolPorts","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientIps","show":false,"enable":true,"panelIdOfFourthMenu":8,"columns":["clientIps","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverIps","show":false,"enable":true,"panelIdOfFourthMenu":8,"columns":["serverIps","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientCountries","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["clientCountries","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverCountries","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["serverCountries","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientProvinces","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["clientProvinces","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverProvinces","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["serverProvinces","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientCities","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["clientCities","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverCities","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["serverCities","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientIsps","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["clientIsps","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverIsps","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["serverIsps","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientIdcRenters","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["clientIdcRenters","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverIdcRenters","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["serverIdcRenters","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientAsns","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["clientAsns","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverAsns","show":false,"enable":true,"panelIdOfFourthMenu":11,"columns":["serverAsns","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]}]}],"tabs":[{"name":"ips","i18n":"network.ips","prop":"ip"},{"name":"countries","i18n":"network.countries","prop":"country"},{"name":"asns","i18n":"network.asns","prop":"asn"},{"name":"apps","i18n":"network.applications","prop":"appLabel"},{"name":"providers","i18n":"network.providers","prop":"appCompany"},{"name":"domains","i18n":"network.domains","prop":"domain"},{"name":"protocols","i18n":"network.protocols","prop":"l7Protocol"},{"name":"idcTenants","i18n":"network.idcTenants","prop":"idcRenter"},{"name":"provinces","i18n":"network.provinces","prop":"province"},{"name":"cities","i18n":"network.cities","prop":"city"},{"name":"isps","i18n":"network.isps","prop":"isp"},{"name":"applicationCategories","i18n":"network.applicationCategories","prop":"appSubcategory"},{"name":"domainCategories","i18n":"network.domainCategories","prop":"domainCategoryName"},{"name":"hosts","i18n":"network.hosts","prop":"httpHost"},{"name":"snis","i18n":"network.snis","prop":"sslSni"},{"name":"protocolPorts","i18n":"network.protocolPorts","prop":"protocolPort"},{"name":"clientIps","i18n":"network.clientIps","prop":"clientIp"},{"name":"serverIps","i18n":"network.serverIps","prop":"serverIp"},{"name":"clientCountries","i18n":"network.clientCountries","prop":"clientCountry"},{"name":"serverCountries","i18n":"network.serverCountries","prop":"serverCountry"},{"name":"clientProvinces","i18n":"network.clientProvinces","prop":"clientProvince"},{"name":"serverProvinces","i18n":"network.serverProvinces","prop":"serverProvince"},{"name":"clientCities","i18n":"network.clientCities","prop":"clientCity"},{"name":"serverCities","i18n":"network.serverCities","prop":"serverCity"},{"name":"clientIsps","i18n":"network.clientIsps","prop":"clientIsp"},{"name":"serverIsps","i18n":"network.serverIsps","prop":"serverIsp"},{"name":"clientIdcRenters","i18n":"network.clientIdcRenters","prop":"clientIdcRenter"},{"name":"serverIdcRenters","i18n":"network.serverIdcRenters","prop":"serverIdcRenter"},{"name":"clientAsns","i18n":"network.clientAsns","prop":"clientAsn"},{"name":"serverAsns","i18n":"network.serverAsns","prop":"serverAsn"}],"columns":[{"name":"score","i18n":"network.score","prop":"score","columnType":"normal"},{"name":"through","i18n":"networkAppPerformance.throughput","prop":"totalBytes","columnType":"chainRatio","unit":"byte"},{"name":"tcpConEstLatency","i18n":"networkAppPerformance.tcpConnectionEstablishLatency","prop":"tcpConEstLatency","columnType":"chainRatio","unit":"time"},{"name":"packetLoss","i18n":"networkAppPerformance.packetLoss","prop":"packetLoss","columnType":"chainRatio","unit":"percent"},{"name":"packetRetrans","i18n":"networkAppPerformance.packetRetrans","prop":"packetRetrans","columnType":"chainRatio","unit":"percent"},{"name":"sslResponseLatency","i18n":"networkAppPerformance.sslResponseLatency","prop":"sslResponseLatency","columnType":"chainRatio","unit":"time"},{"name":"httpResponseLatency","i18n":"networkAppPerformance.httpResponseLatency","prop":"httpResponseLatency","columnType":"chainRatio","unit":"time"},{"name":"ips","i18n":"network.ip","prop":"ip","columnType":"dillDown"},{"name":"countries","i18n":"network.country","prop":"country","columnType":"dillDown"},{"name":"asns","i18n":"network.asn","prop":"asn","columnType":"dillDown"},{"name":"apps","i18n":"network.application","prop":"appLabel","columnType":"dillDown"},{"name":"providers","i18n":"network.provider","prop":"appCompany","columnType":"dillDown"},{"name":"domains","i18n":"network.domain","prop":"domain","columnType":"dillDown"},{"name":"protocols","i18n":"network.protocol","prop":"l7Protocol","columnType":"dillDown"},{"name":"idcTenants","i18n":"network.idcTenant","prop":"idcRenter","columnType":"dillDown"},{"name":"provinces","i18n":"network.province","prop":"province","columnType":"dillDown"},{"name":"cities","i18n":"network.city","prop":"city","columnType":"dillDown"},{"name":"isps","i18n":"network.isp","prop":"isp","columnType":"dillDown"},{"name":"applicationCategories","i18n":"network.applicationCategory","prop":"appSubcategory","columnType":"dillDown"},{"name":"domainCategories","i18n":"network.domainCategory","prop":"domainCategoryName","columnType":"dillDown"},{"name":"hosts","i18n":"network.host","prop":"httpHost","columnType":"dillDown"},{"name":"snis","i18n":"network.sni","prop":"sslSni","columnType":"dillDown"},{"name":"protocolPorts","i18n":"network.protocolPort","prop":"protocolPort","columnType":"dillDown"},{"name":"clientIps","i18n":"network.clientIp","prop":"clientIp","columnType":"dillDown"},{"name":"serverIps","i18n":"network.serverIp","prop":"serverIp","columnType":"dillDown"},{"name":"clientCountries","i18n":"network.clientCountry","prop":"clientCountry","columnType":"dillDown"},{"name":"serverCountries","i18n":"network.serverCountry","prop":"serverCountry","columnType":"dillDown"},{"name":"clientProvinces","i18n":"network.clientProvince","prop":"clientProvince","columnType":"dillDown"},{"name":"serverProvinces","i18n":"network.serverProvince","prop":"serverProvince","columnType":"dillDown"},{"name":"clientCities","i18n":"network.clientCity","prop":"clientCity","columnType":"dillDown"},{"name":"serverCities","i18n":"network.serverCity","prop":"serverCity","columnType":"dillDown"},{"name":"clientIsps","i18n":"network.clientIsp","prop":"clientIsp","columnType":"dillDown"},{"name":"serverIsps","i18n":"network.serverIsp","prop":"serverIsp","columnType":"dillDown"},{"name":"clientIdcRenters","i18n":"network.clientIdcRenter","prop":"clientIdcRenter","columnType":"dillDown"},{"name":"serverIdcRenters","i18n":"network.serverIdcRenter","prop":"serverIdcRenter","columnType":"dillDown"},{"name":"clientAsns","i18n":"network.clientAsn","prop":"clientAsn","columnType":"dillDown"},{"name":"serverAsns","i18n":"network.serverAsn","prop":"serverAsn","columnType":"dillDown"}]},{"route":"dnsServiceInsights","tables":[{"id":"dnsServiceInsights","hiddenColumns":[],"disabledColumns":[],"url":{"curUrl":"/interface/dns/overview/dimensionAnalysis","cycleUrl":"/interface/dns/overview/dimensionCycleAnalysis","drilldownCurUrl":"/interface/dns/overview/drilldown/dimensionAnalysis","drilldownCycleUrl":"/interface/dns/overview/drilldown/dimensionCycleAnalysis","drilldownList":"/interface/dns/overview/drilldown/list"},"hasMetricSearch":false,"isOnlyRead":false,"panelId":3,"panelIdOfThirdMenu":17,"showUnit":true,"tabs":[{"name":"dnsServer","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["dnsServer","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":[],"disabledDrilldownTabs":[]},{"name":"countries","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["countries","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["countries","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"disabledDrilldownTabs":["qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"]},{"name":"cities","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["cities","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["cities","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"disabledDrilldownTabs":["qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"]},{"name":"isps","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["isps","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["isps","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"disabledDrilldownTabs":["qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"]},{"name":"orgs","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["orgs","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["orgs","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"disabledDrilldownTabs":["qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"]},{"name":"roles","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["roles","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"disabledDrilldownTabs":["qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"]},{"name":"qnames","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["qnames","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["qnames"],"disabledDrilldownTabs":[]},{"name":"slds","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["slds","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["slds"],"disabledDrilldownTabs":[]},{"name":"tlds","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["tlds","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["tlds"],"disabledDrilldownTabs":[]},{"name":"qtypes","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["qtypes","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["qtypes","a","aaaa","cnames"],"disabledDrilldownTabs":["a","aaaa","cnames"]},{"name":"rcodes","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["rcodes","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["rcodes","a","aaaa","cnames"],"disabledDrilldownTabs":["a","aaaa","cnames"]},{"name":"a","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["a","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["qtypes","rcodes","a","aaaa","cnames"],"disabledDrilldownTabs":["qtypes","rcodes","aaaa","cnames"]},{"name":"aaaa","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["aaaa","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["qtypes","rcodes","a","aaaa","cnames"],"disabledDrilldownTabs":["qtypes","rcodes","a","cnames"]},{"name":"cnames","show":true,"enable":true,"panelIdOfFourthMenu":16,"columns":["cnames","queries","queriesFromIE","responseTime","throughput"],"drilldownTabs":["dnsServer","countries","cities","isps","orgs","roles","qnames","slds","tlds","qtypes","rcodes","a","aaaa","cnames"],"hiddenDrilldownTabs":["qtypes","rcodes","a","aaaa","cnames"],"disabledDrilldownTabs":["qtypes","rcodes","a","aaaa"]}]}],"tabs":[{"name":"dnsServer","i18n":"dns.dnsServer","prop":"dnsServer"},{"name":"countries","i18n":"network.countries","prop":"country"},{"name":"cities","i18n":"network.cities","prop":"city"},{"name":"isps","i18n":"dns.dnsServerIsps","prop":"dnsServerIsp"},{"name":"orgs","i18n":"dns.dnsServerOrganizations","prop":"dnsServerOrganization"},{"name":"roles","i18n":"dns.dnsServerRoles","prop":"dnsServerRole"},{"name":"qnames","i18n":"QNames","prop":"qname"},{"name":"slds","i18n":"SLDs","prop":"sld"},{"name":"tlds","i18n":"TLDs","prop":"tld"},{"name":"qtypes","i18n":"QTypes","prop":"qtype"},{"name":"rcodes","i18n":"RCodes","prop":"rcode"},{"name":"a","i18n":"A","prop":"a"},{"name":"aaaa","i18n":"AAAA","prop":"aaaa"},{"name":"cnames","i18n":"CNames","prop":"cname"}],"columns":[{"name":"queries","i18n":"dns.queries","prop":"queryRate","columnType":"chainRatio","unit":"qps"},{"name":"queriesFromIE","i18n":"dns.queriesFromIE","prop":"totalInExNum","columnType":"percent"},{"name":"responseTime","i18n":"dns.dnsResponseTime","prop":"dnsResponseLatencyAvg","columnType":"normal","unit":"time"},{"name":"throughput","i18n":"overall.throughput","prop":"totalBytes","columnType":"normal","unit":"byte"},{"name":"dnsServer","i18n":"dns.dnsServer","prop":"dnsServer","columnType":"dillDown"},{"name":"countries","i18n":"network.country","prop":"country","columnType":"dillDown"},{"name":"cities","i18n":"network.city","prop":"city","columnType":"dillDown"},{"name":"isps","i18n":"dns.dnsServerIsp","prop":"dnsServerIsp","columnType":"dillDown"},{"name":"orgs","i18n":"dns.dnsServerOrganization","prop":"dnsServerOrganization","columnType":"dillDown"},{"name":"roles","i18n":"dns.dnsServerRole","prop":"dnsServerRole","columnType":"dillDown"},{"name":"qnames","i18n":"QName","prop":"qname","columnType":"dillDown"},{"name":"slds","i18n":"SLD","prop":"sld","columnType":"dillDown"},{"name":"tlds","i18n":"TLD","prop":"tld","columnType":"dillDown"},{"name":"qtypes","i18n":"QType","prop":"qtype","columnType":"dillDown"},{"name":"rcodes","i18n":"RCode","prop":"rcode","columnType":"dillDown"},{"name":"a","i18n":"A","prop":"a","columnType":"dillDown"},{"name":"aaaa","i18n":"AAAA","prop":"aaaa","columnType":"dillDown"},{"name":"cnames","i18n":"CName","prop":"cname","columnType":"dillDown"}]},{"route":"linkMonitor","tables":[{"id":"linkMonitor","hiddenColumns":["packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"disabledColumns":[],"url":{"curUrl":"/interface/link/overview/drilldown/dimension/analysis","cycleUrl":"/interface/link/overview/drilldown/dimension/cycleAnalysis","drilldownCurUrl":"/interface/link/overview/drilldown/dimension/analysis","drilldownCycleUrl":"/interface/link/overview/drilldown/dimension/cycleAnalysis","drilldownList":""},"hasMetricSearch":false,"isOnlyRead":true,"panelId":4,"panelIdOfThirdMenu":15,"showUnit":true,"tabs":[{"name":"ips","show":true,"enable":true,"panelIdOfFourthMenu":15,"columns":["ips","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["ips","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"countries","show":true,"enable":true,"panelIdOfFourthMenu":15,"columns":["countries","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["countries","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"asns","show":true,"enable":true,"panelIdOfFourthMenu":15,"columns":["asns","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["asns","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"apps","show":true,"enable":true,"panelIdOfFourthMenu":15,"columns":["apps","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["apps","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"providers","show":true,"enable":true,"panelIdOfFourthMenu":15,"columns":["providers","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["providers","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"domains","show":true,"enable":true,"panelIdOfFourthMenu":15,"columns":["domains","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["domains","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"protocols","show":true,"enable":true,"panelIdOfFourthMenu":15,"columns":["protocols","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["protocols","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"idcTenants","show":true,"enable":true,"panelIdOfFourthMenu":15,"columns":["idcTenants","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"provinces","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["provinces","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"cities","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["cities","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"isps","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["isps","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"applicationCategories","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["applicationCategories","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"domainCategories","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["domainCategories","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"snis","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["snis","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"protocolPorts","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["protocolPorts","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientIps","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["clientIps","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverIps","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["serverIps","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientCountries","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["clientCountries","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverCountries","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["serverCountries","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientProvinces","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["clientProvinces","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverProvinces","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["serverProvinces","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientCities","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["clientCities","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverCities","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["serverCities","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientIsps","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["clientIsps","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverIsps","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["serverIsps","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientIdcRenters","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["clientIdcRenters","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverIdcRenters","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["serverIdcRenters","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"clientAsns","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["clientAsns","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]},{"name":"serverAsns","show":false,"enable":true,"panelIdOfFourthMenu":15,"columns":["serverAsns","score","through","tcpConEstLatency","packetLoss","packetRetrans","sslResponseLatency","httpResponseLatency"],"drilldownTabs":["ips","countries","asns","apps","providers","domains","protocols","idcTenants","provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"hiddenDrilldownTabs":["provinces","cities","isps","applicationCategories","domainCategories","snis","protocolPorts","clientIps","serverIps","clientCountries","serverCountries","clientProvinces","serverProvinces","clientCities","serverCities","clientIsps","serverIsps","clientIdcRenters","serverIdcRenters","clientAsns","serverAsns"],"disabledDrilldownTabs":[]}]}],"tabs":[{"name":"ips","i18n":"network.ips","prop":"ip"},{"name":"countries","i18n":"network.countries","prop":"country"},{"name":"asns","i18n":"network.asns","prop":"asn"},{"name":"apps","i18n":"network.applications","prop":"appLabel"},{"name":"providers","i18n":"network.providers","prop":"appCompany"},{"name":"domains","i18n":"network.domains","prop":"domain"},{"name":"protocols","i18n":"network.protocols","prop":"l7Protocol"},{"name":"idcTenants","i18n":"network.idcTenants","prop":"idcRenter"},{"name":"provinces","i18n":"network.provinces","prop":"province"},{"name":"cities","i18n":"network.cities","prop":"city"},{"name":"isps","i18n":"network.isps","prop":"isp"},{"name":"applicationCategories","i18n":"network.applicationCategories","prop":"appSubcategory"},{"name":"domainCategories","i18n":"network.domainCategories","prop":"domainCategoryName"},{"name":"hosts","i18n":"network.hosts","prop":"httpHost"},{"name":"snis","i18n":"network.snis","prop":"sslSni"},{"name":"protocolPorts","i18n":"network.protocolPorts","prop":"protocolPort"},{"name":"clientIps","i18n":"network.clientIps","prop":"clientIp"},{"name":"serverIps","i18n":"network.serverIps","prop":"serverIp"},{"name":"clientCountries","i18n":"network.clientCountries","prop":"clientCountry"},{"name":"serverCountries","i18n":"network.serverCountries","prop":"serverCountry"},{"name":"clientProvinces","i18n":"network.clientProvinces","prop":"clientProvince"},{"name":"serverProvinces","i18n":"network.serverProvinces","prop":"serverProvince"},{"name":"clientCities","i18n":"network.clientCities","prop":"clientCity"},{"name":"serverCities","i18n":"network.serverCities","prop":"serverCity"},{"name":"clientIsps","i18n":"network.clientIsps","prop":"clientIsp"},{"name":"serverIsps","i18n":"network.serverIsps","prop":"serverIsp"},{"name":"clientIdcRenters","i18n":"network.clientIdcRenters","prop":"clientIdcRenter"},{"name":"serverIdcRenters","i18n":"network.serverIdcRenters","prop":"serverIdcRenter"},{"name":"clientAsns","i18n":"network.clientAsns","prop":"clientAsn"},{"name":"serverAsns","i18n":"network.serverAsns","prop":"serverAsn"}],"columns":[{"name":"score","i18n":"network.score","prop":"score","columnType":"normal"},{"name":"through","i18n":"networkAppPerformance.throughput","prop":"totalBytes","columnType":"chainRatio","unit":"byte"},{"name":"tcpConEstLatency","i18n":"networkAppPerformance.tcpConnectionEstablishLatency","prop":"tcpConEstLatency","columnType":"chainRatio","unit":"time"},{"name":"packetLoss","i18n":"networkAppPerformance.packetLoss","prop":"packetLoss","columnType":"chainRatio","unit":"percent"},{"name":"packetRetrans","i18n":"networkAppPerformance.packetRetrans","prop":"packetRetrans","columnType":"chainRatio","unit":"percent"},{"name":"sslResponseLatency","i18n":"networkAppPerformance.sslResponseLatency","prop":"sslResponseLatency","columnType":"chainRatio","unit":"time"},{"name":"httpResponseLatency","i18n":"networkAppPerformance.httpResponseLatency","prop":"httpResponseLatency","columnType":"chainRatio","unit":"time"},{"name":"ips","i18n":"network.ip","prop":"ip","columnType":"dillDown"},{"name":"countries","i18n":"network.country","prop":"country","columnType":"dillDown"},{"name":"asns","i18n":"network.asn","prop":"asn","columnType":"dillDown"},{"name":"apps","i18n":"network.application","prop":"appLabel","columnType":"dillDown"},{"name":"providers","i18n":"network.provider","prop":"appCompany","columnType":"dillDown"},{"name":"domains","i18n":"network.domain","prop":"domain","columnType":"dillDown"},{"name":"protocols","i18n":"network.protocol","prop":"l7Protocol","columnType":"dillDown"},{"name":"idcTenants","i18n":"network.idcTenant","prop":"idcRenter","columnType":"dillDown"},{"name":"provinces","i18n":"network.province","prop":"province","columnType":"dillDown"},{"name":"cities","i18n":"network.city","prop":"city","columnType":"dillDown"},{"name":"isps","i18n":"network.isp","prop":"isp","columnType":"dillDown"},{"name":"applicationCategories","i18n":"network.applicationCategory","prop":"appSubcategory","columnType":"dillDown"},{"name":"domainCategories","i18n":"network.domainCategory","prop":"domainCategoryName","columnType":"dillDown"},{"name":"hosts","i18n":"network.host","prop":"httpHost","columnType":"dillDown"},{"name":"snis","i18n":"network.sni","prop":"sslSni","columnType":"dillDown"},{"name":"protocolPorts","i18n":"network.protocolPort","prop":"protocolPort","columnType":"dillDown"},{"name":"clientIps","i18n":"network.clientIp","prop":"clientIp","columnType":"dillDown"},{"name":"serverIps","i18n":"network.serverIp","prop":"serverIp","columnType":"dillDown"},{"name":"clientCountries","i18n":"network.clientCountry","prop":"clientCountry","columnType":"dillDown"},{"name":"serverCountries","i18n":"network.serverCountry","prop":"serverCountry","columnType":"dillDown"},{"name":"clientProvinces","i18n":"network.clientProvince","prop":"clientProvince","columnType":"dillDown"},{"name":"serverProvinces","i18n":"network.serverProvince","prop":"serverProvince","columnType":"dillDown"},{"name":"clientCities","i18n":"network.clientCity","prop":"clientCity","columnType":"dillDown"},{"name":"serverCities","i18n":"network.serverCity","prop":"serverCity","columnType":"dillDown"},{"name":"clientIsps","i18n":"network.clientIsp","prop":"clientIsp","columnType":"dillDown"},{"name":"serverIsps","i18n":"network.serverIsp","prop":"serverIsp","columnType":"dillDown"},{"name":"clientIdcRenters","i18n":"network.clientIdcRenter","prop":"clientIdcRenter","columnType":"dillDown"},{"name":"serverIdcRenters","i18n":"network.serverIdcRenter","prop":"serverIdcRenter","columnType":"dillDown"},{"name":"clientAsns","i18n":"network.clientAsn","prop":"clientAsn","columnType":"dillDown"},{"name":"serverAsns","i18n":"network.serverAsn","prop":"serverAsn","columnType":"dillDown"}]}]} @@ -24,31 +24,31 @@ const timeFilterScore = { startTime: 1677224704, endTime: 1677228304 } -const mockGetScore = { "data": {"status":200,"code":200,"queryKey":"77d0d2e9b63bd4d3e72e146d07bfeea1","success":true,"message":null,"statistics":{"elapsed":23,"rows_read":12982,"bytes_read":1667860,"result_size":13245,"result_rows":50},"job":null,"formatType":"json","meta":[{"name":"app_label","type":"string","category":"Dimension"},{"name":"total_bytes","type":"long","category":"Metric"},{"name":"inbound_bytes","type":"long","category":"Metric"},{"name":"outbound_bytes","type":"long","category":"Metric"},{"name":"internal_bytes","type":"long","category":"Metric"},{"name":"through_bytes","type":"long","category":"Metric"},{"name":"total_packets","type":"long","category":"Metric"},{"name":"inbound_packets","type":"long","category":"Metric"},{"name":"outbound_packets","type":"long","category":"Metric"},{"name":"internal_packets","type":"long","category":"Metric"},{"name":"through_packets","type":"long","category":"Metric"},{"name":"sessions","type":"long","category":"Metric"}],"data":{"resultType":"table","result":[{"appLabel":"douyin","totalBytes":"50624733433","totalBitsRate":1.124994076E8,"inboundBytes":"1204941976","inboundBitsRate":2677648.8,"outboundBytes":"35887241401","outboundBitsRate":7.974942536E7,"internalBytes":"2789130","internalBitsRate":6198.08,"throughBytes":"12642099915","throughBitsRate":2.809355536E7,"totalPackets":"46466984","totalPacketsRate":"12907.50","inboundPackets":"871844","inboundPacketsRate":"242.18","outboundPackets":"25374762","outboundPacketsRate":"7048.55","internalPackets":"2803","internalPacketsRate":"0.78","throughPackets":"11517730","throughPacketsRate":"3199.37","sessions":"45706","sessionsRate":"12.70"},{"appLabel":"wechat","totalBytes":"20919373476","totalBitsRate":4.648749664E7,"inboundBytes":"73843595","inboundBitsRate":164096.88,"outboundBytes":"15167284551","outboundBitsRate":3.37050768E7,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"5171476770","throughBitsRate":1.149217064E7,"totalPackets":"23940211","totalPacketsRate":"6650.06","inboundPackets":"79706","inboundPacketsRate":"22.14","outboundPackets":"12259884","outboundPacketsRate":"3405.52","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"5928492","throughPacketsRate":"1646.80","sessions":"16014","sessionsRate":"4.45"},{"appLabel":"kuaishou","totalBytes":"13281819479","totalBitsRate":2.95151544E7,"inboundBytes":"262265833","inboundBitsRate":582812.96,"outboundBytes":"9673114377","outboundBitsRate":2.149580976E7,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"3192792324","throughBitsRate":7095094.08,"totalPackets":"12128353","totalPacketsRate":"3368.99","inboundPackets":"176498","inboundPacketsRate":"49.03","outboundPackets":"6927629","outboundPacketsRate":"1924.34","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"2898775","throughPacketsRate":"805.22","sessions":"9089","sessionsRate":"2.52"},{"appLabel":"alibaba_cloud","totalBytes":"6260272949","totalBitsRate":1.391171768E7,"inboundBytes":"3659396643","inboundBitsRate":8131992.56,"outboundBytes":"1844626448","outboundBitsRate":4099169.92,"internalBytes":"3402132","internalBitsRate":7560.32,"throughBytes":"487931658","throughBitsRate":1084292.56,"totalPackets":"6763142","totalPacketsRate":"1878.65","inboundPackets":"2605792","inboundPacketsRate":"723.83","outboundPackets":"1387989","outboundPacketsRate":"385.55","internalPackets":"4365","internalPacketsRate":"1.21","throughPackets":"483692","throughPacketsRate":"134.36","sessions":"35395","sessionsRate":"9.83"},{"appLabel":"bmff","totalBytes":"4857946055","totalBitsRate":1.079543568E7,"inboundBytes":"414403743","inboundBitsRate":920897.2,"outboundBytes":"3204382609","outboundBitsRate":7120850.24,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"1186687742","throughBitsRate":2637083.84,"totalPackets":"4362910","totalPacketsRate":"1211.92","inboundPackets":"276931","inboundPacketsRate":"76.93","outboundPackets":"2276956","outboundPacketsRate":"632.49","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"1048200","throughPacketsRate":"291.17","sessions":"3177","sessionsRate":"0.88"},{"appLabel":"netease_cloud_music","totalBytes":"4564497644","totalBitsRate":1.014332808E7,"inboundBytes":"3044333","inboundBitsRate":6765.2,"outboundBytes":"3617099815","outboundBitsRate":8037999.6,"internalBytes":"4258810","internalBitsRate":9464.0,"throughBytes":"879976945","throughBitsRate":1955504.32,"totalPackets":"4262388","totalPacketsRate":"1184.00","inboundPackets":"2518","inboundPacketsRate":"0.70","outboundPackets":"2614649","outboundPacketsRate":"726.29","internalPackets":"3697","internalPacketsRate":"1.03","throughPackets":"829568","throughPacketsRate":"230.44","sessions":"5181","sessionsRate":"1.44"},{"appLabel":"qq_web","totalBytes":"2451383151","totalBitsRate":5447518.08,"inboundBytes":"705716306","inboundBitsRate":1568258.48,"outboundBytes":"1291001120","outboundBitsRate":2868891.36,"internalBytes":"133388","internalBitsRate":296.4,"throughBytes":"402854851","throughBitsRate":895233.04,"totalPackets":"2811324","totalPacketsRate":"780.92","inboundPackets":"553341","inboundPacketsRate":"153.71","outboundPackets":"1052282","outboundPacketsRate":"292.30","internalPackets":"107","internalPacketsRate":"0.03","throughPackets":"478568","throughPacketsRate":"132.94","sessions":"6885","sessionsRate":"1.91"},{"appLabel":"wtls","totalBytes":"2248150853","totalBitsRate":4995890.8,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"1655250173","outboundBitsRate":3678333.68,"internalBytes":"244","internalBitsRate":0.56,"throughBytes":"576300158","throughBitsRate":1280667.04,"totalPackets":"1912615","totalPacketsRate":"531.28","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"1209136","outboundPacketsRate":"335.87","internalPackets":"2","internalPacketsRate":"0.00","throughPackets":"480395","throughPacketsRate":"133.44","sessions":"1273","sessionsRate":"0.35"},{"appLabel":"bytedance","totalBytes":"2051134594","totalBitsRate":4558076.88,"inboundBytes":"254395097","inboundBitsRate":565322.4,"outboundBytes":"668636670","outboundBitsRate":1485859.28,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"139560912","throughBitsRate":310135.36,"totalPackets":"2508840","totalPacketsRate":"696.90","inboundPackets":"462707","inboundPacketsRate":"128.53","outboundPackets":"581636","outboundPacketsRate":"161.57","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"178647","throughPacketsRate":"49.62","sessions":"17946","sessionsRate":"4.99"},{"appLabel":"toutiao","totalBytes":"2023904833","totalBitsRate":4497566.32,"inboundBytes":"423430","inboundBitsRate":940.96,"outboundBytes":"1742110045","outboundBitsRate":3871355.68,"internalBytes":"984141","internalBitsRate":2186.96,"throughBytes":"248008471","throughBitsRate":551129.92,"totalPackets":"1908380","totalPacketsRate":"530.11","inboundPackets":"1131","inboundPacketsRate":"0.31","outboundPackets":"1257274","outboundPacketsRate":"349.24","internalPackets":"827","internalPacketsRate":"0.23","throughPackets":"244304","throughPacketsRate":"67.86","sessions":"4374","sessionsRate":"1.22"},{"appLabel":"pinduoduo","totalBytes":"1954264555","totalBitsRate":4342810.16,"inboundBytes":"336165340","inboundBitsRate":747034.08,"outboundBytes":"1109222935","outboundBitsRate":2464939.84,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"475553831","throughBitsRate":1056786.32,"totalPackets":"2090382","totalPacketsRate":"580.66","inboundPackets":"260141","inboundPacketsRate":"72.26","outboundPackets":"798376","outboundPacketsRate":"221.77","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"533067","throughPacketsRate":"148.07","sessions":"1596","sessionsRate":"0.44"},{"appLabel":"http2","totalBytes":"1759813825","totalBitsRate":3910697.36,"inboundBytes":"2543539","inboundBitsRate":5652.32,"outboundBytes":"1106519638","outboundBitsRate":2458932.56,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"584755149","throughBitsRate":1299455.92,"totalPackets":"1752374","totalPacketsRate":"486.77","inboundPackets":"3379","inboundPacketsRate":"0.94","outboundPackets":"915229","outboundPacketsRate":"254.23","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"540387","throughPacketsRate":"150.11","sessions":"14367","sessionsRate":"3.99"},{"appLabel":"baidu","totalBytes":"1339686054","totalBitsRate":2977080.16,"inboundBytes":"186110015","inboundBitsRate":413577.84,"outboundBytes":"890128117","outboundBitsRate":1978062.48,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"209861680","throughBitsRate":466359.28,"totalPackets":"1501594","totalPacketsRate":"417.11","inboundPackets":"139375","inboundPacketsRate":"38.72","outboundPackets":"717276","outboundPacketsRate":"199.24","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"253324","throughPacketsRate":"70.37","sessions":"13250","sessionsRate":"3.68"},{"appLabel":"netease","totalBytes":"1224762446","totalBitsRate":2721694.32,"inboundBytes":"40540614","inboundBitsRate":90090.24,"outboundBytes":"980457929","outboundBitsRate":2178795.36,"internalBytes":"903874","internalBitsRate":2008.64,"throughBytes":"187143592","throughBitsRate":415874.64,"totalPackets":"1111708","totalPacketsRate":"308.81","inboundPackets":"28342","inboundPacketsRate":"7.87","outboundPackets":"694818","outboundPacketsRate":"193.01","internalPackets":"719","internalPacketsRate":"0.20","throughPackets":"171007","throughPacketsRate":"47.50","sessions":"1220","sessionsRate":"0.34"},{"appLabel":"flash","totalBytes":"1134229270","totalBitsRate":2520509.52,"inboundBytes":"149451377","inboundBitsRate":332114.16,"outboundBytes":"735950813","outboundBitsRate":1635446.24,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"229582787","throughBitsRate":510184.0,"totalPackets":"1187023","totalPacketsRate":"329.73","inboundPackets":"109549","inboundPacketsRate":"30.43","outboundPackets":"540609","outboundPacketsRate":"150.17","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"224198","throughPacketsRate":"62.28","sessions":"449","sessionsRate":"0.12"},{"appLabel":"kugou","totalBytes":"1030786799","totalBitsRate":2290637.36,"inboundBytes":"2585713","inboundBitsRate":5746.0,"outboundBytes":"809956353","outboundBitsRate":1799903.04,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"200172666","throughBitsRate":444828.16,"totalPackets":"983906","totalPacketsRate":"273.31","inboundPackets":"2837","inboundPacketsRate":"0.79","outboundPackets":"596039","outboundPacketsRate":"165.57","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"191331","throughPacketsRate":"53.15","sessions":"3229","sessionsRate":"0.90"},{"appLabel":"sina_weibo","totalBytes":"866362751","totalBitsRate":1925250.56,"inboundBytes":"187024","inboundBitsRate":415.6,"outboundBytes":"703508675","outboundBitsRate":1563352.64,"internalBytes":"12918952","internalBitsRate":28708.8,"throughBytes":"138589508","throughBitsRate":307976.72,"totalPackets":"803745","totalPacketsRate":"223.26","inboundPackets":"245","inboundPacketsRate":"0.07","outboundPackets":"523788","outboundPacketsRate":"145.50","internalPackets":"10081","internalPacketsRate":"2.80","throughPackets":"125472","throughPacketsRate":"34.85","sessions":"1592","sessionsRate":"0.44"},{"appLabel":"xiaomi","totalBytes":"792513612","totalBitsRate":1761141.36,"inboundBytes":"1666853","inboundBitsRate":3704.08,"outboundBytes":"377105033","outboundBitsRate":838011.2,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"405236473","throughBitsRate":900525.52,"totalPackets":"719697","totalPacketsRate":"199.92","inboundPackets":"2291","inboundPacketsRate":"0.64","outboundPackets":"264915","outboundPacketsRate":"73.59","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"335898","throughPacketsRate":"93.31","sessions":"709","sessionsRate":"0.20"},{"appLabel":"cibn","totalBytes":"750501371","totalBitsRate":1667780.8,"inboundBytes":"55019686","inboundBitsRate":122266.0,"outboundBytes":"90522668","outboundBitsRate":201161.52,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"602608050","throughBitsRate":1339129.04,"totalPackets":"786128","totalPacketsRate":"218.37","inboundPackets":"38054","inboundPacketsRate":"10.57","outboundPackets":"62553","outboundPacketsRate":"17.38","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"650840","throughPacketsRate":"180.79","sessions":"136","sessionsRate":"0.04"},{"appLabel":"bittorrent","totalBytes":"674727044","totalBitsRate":1499393.44,"inboundBytes":"3166699","inboundBitsRate":7037.12,"outboundBytes":"412096280","outboundBitsRate":915769.52,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"248419157","throughBitsRate":552042.56,"totalPackets":"583427","totalPacketsRate":"162.06","inboundPackets":"4741","inboundPacketsRate":"1.32","outboundPackets":"305131","outboundPacketsRate":"84.76","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"206428","throughPacketsRate":"57.34","sessions":"1582","sessionsRate":"0.44"},{"appLabel":"appstore","totalBytes":"667673983","totalBitsRate":1483720.0,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"666787878","outboundBitsRate":1481750.88,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"886105","throughBitsRate":1969.12,"totalPackets":"469090","totalPacketsRate":"130.30","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"468426","outboundPacketsRate":"130.12","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"664","throughPacketsRate":"0.18","sessions":"6","sessionsRate":"0.00"},{"appLabel":"windows_update","totalBytes":"657572440","totalBitsRate":1461272.08,"inboundBytes":"568832","inboundBitsRate":1264.08,"outboundBytes":"510040588","outboundBitsRate":1133423.52,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"136756307","throughBitsRate":303902.88,"totalPackets":"635970","totalPacketsRate":"176.66","inboundPackets":"779","inboundPacketsRate":"0.22","outboundPackets":"357347","outboundPacketsRate":"99.26","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"134692","throughPacketsRate":"37.41","sessions":"186","sessionsRate":"0.05"},{"appLabel":"iqiyi","totalBytes":"634336744","totalBitsRate":1409637.2,"inboundBytes":"3315323","inboundBitsRate":7367.36,"outboundBytes":"443953172","outboundBitsRate":986562.64,"internalBytes":"6887795","internalBitsRate":15306.24,"throughBytes":"173885015","throughBitsRate":386411.12,"totalPackets":"559880","totalPacketsRate":"155.52","inboundPackets":"3013","inboundPacketsRate":"0.84","outboundPackets":"309884","outboundPacketsRate":"86.08","internalPackets":"9116","internalPacketsRate":"2.53","throughPackets":"146651","throughPacketsRate":"40.74","sessions":"494","sessionsRate":"0.14"},{"appLabel":"ixigua","totalBytes":"609700001","totalBitsRate":1354888.88,"inboundBytes":"178016","inboundBitsRate":395.6,"outboundBytes":"488956834","outboundBitsRate":1086570.72,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"109102690","throughBitsRate":242450.4,"totalPackets":"614785","totalPacketsRate":"170.77","inboundPackets":"335","inboundPacketsRate":"0.09","outboundPackets":"369820","outboundPacketsRate":"102.73","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"125438","throughPacketsRate":"34.84","sessions":"1682","sessionsRate":"0.47"},{"appLabel":"uc_browser","totalBytes":"603992702","totalBitsRate":1342206.0,"inboundBytes":"3125867","inboundBitsRate":6946.4,"outboundBytes":"473205707","outboundBitsRate":1051568.24,"internalBytes":"903955","internalBitsRate":2008.8,"throughBytes":"118881743","throughBitsRate":264181.68,"totalPackets":"561646","totalPacketsRate":"156.01","inboundPackets":"2203","inboundPacketsRate":"0.61","outboundPackets":"338724","outboundPacketsRate":"94.09","internalPackets":"707","internalPacketsRate":"0.20","throughPackets":"114750","throughPacketsRate":"31.88","sessions":"673","sessionsRate":"0.19"},{"appLabel":"tencent","totalBytes":"554584271","totalBitsRate":1232409.52,"inboundBytes":"540698947","inboundBitsRate":1201553.2,"outboundBytes":"38356","outboundBitsRate":85.2,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"105761","throughBitsRate":235.04,"totalPackets":"632137","totalPacketsRate":"175.59","inboundPackets":"403224","inboundPacketsRate":"112.01","outboundPackets":"56","outboundPacketsRate":"0.02","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"946","throughPacketsRate":"0.26","sessions":"107","sessionsRate":"0.03"},{"appLabel":"jingdong","totalBytes":"512735592","totalBitsRate":1139412.4,"inboundBytes":"5779511","inboundBitsRate":12843.36,"outboundBytes":"86248579","outboundBitsRate":191663.52,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"417920982","throughBitsRate":928713.28,"totalPackets":"468420","totalPacketsRate":"130.12","inboundPackets":"4209","inboundPacketsRate":"1.17","outboundPackets":"62558","outboundPacketsRate":"17.38","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"369628","throughPacketsRate":"102.67","sessions":"421","sessionsRate":"0.12"},{"appLabel":"iperf","totalBytes":"509418077","totalBitsRate":1132040.16,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"0","outboundBitsRate":0.0,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"509418077","throughBitsRate":1132040.16,"totalPackets":"460188","totalPacketsRate":"127.83","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"0","outboundPacketsRate":"0.00","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"460188","throughPacketsRate":"127.83","sessions":"151","sessionsRate":"0.04"},{"appLabel":"office365","totalBytes":"390609825","totalBitsRate":868021.84,"inboundBytes":"3039481","inboundBitsRate":6754.4,"outboundBytes":"382832576","outboundBitsRate":850739.04,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"362117","throughBitsRate":804.72,"totalPackets":"336314","totalPacketsRate":"93.42","inboundPackets":"2076","inboundPacketsRate":"0.58","outboundPackets":"268927","outboundPacketsRate":"74.70","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"1699","throughPacketsRate":"0.47","sessions":"102","sessionsRate":"0.03"},{"appLabel":"alibaba_group","totalBytes":"383779162","totalBitsRate":852842.56,"inboundBytes":"1393465","inboundBitsRate":3096.56,"outboundBytes":"308064868","outboundBitsRate":684588.56,"internalBytes":"8221","internalBitsRate":18.24,"throughBytes":"66861386","throughBitsRate":148580.88,"totalPackets":"362659","totalPacketsRate":"100.74","inboundPackets":"1623","inboundPacketsRate":"0.45","outboundPackets":"222833","outboundPacketsRate":"61.90","internalPackets":"52","internalPacketsRate":"0.01","throughPackets":"63301","throughPacketsRate":"17.58","sessions":"1257","sessionsRate":"0.35"},{"appLabel":"experion","totalBytes":"382263277","totalBitsRate":849473.92,"inboundBytes":"74","inboundBitsRate":0.16,"outboundBytes":"333620352","outboundBitsRate":741378.56,"internalBytes":"488","internalBitsRate":1.12,"throughBytes":"46502147","throughBitsRate":103338.08,"totalPackets":"299495","totalPacketsRate":"83.19","inboundPackets":"1","inboundPacketsRate":"0.00","outboundPackets":"238049","outboundPacketsRate":"66.12","internalPackets":"4","internalPacketsRate":"0.00","throughPackets":"36807","throughPacketsRate":"10.22","sessions":"214","sessionsRate":"0.06"},{"appLabel":"youku","totalBytes":"332888499","totalBitsRate":739752.24,"inboundBytes":"109318900","inboundBitsRate":242930.88,"outboundBytes":"190218998","outboundBitsRate":422708.88,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"14766089","throughBitsRate":32813.52,"totalPackets":"369460","totalPacketsRate":"102.63","inboundPackets":"79596","inboundPacketsRate":"22.11","outboundPackets":"140677","outboundPacketsRate":"39.08","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"16225","throughPacketsRate":"4.51","sessions":"1219","sessionsRate":"0.34"},{"appLabel":"xiaohongshu","totalBytes":"329017961","totalBitsRate":731151.04,"inboundBytes":"84656291","inboundBitsRate":188125.12,"outboundBytes":"180072456","outboundBitsRate":400161.04,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"57376612","throughBitsRate":127503.6,"totalPackets":"334096","totalPacketsRate":"92.80","inboundPackets":"56726","inboundPacketsRate":"15.76","outboundPackets":"126160","outboundPacketsRate":"35.04","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"54180","throughPacketsRate":"15.05","sessions":"523","sessionsRate":"0.15"},{"appLabel":"taobao","totalBytes":"322521705","totalBitsRate":716714.88,"inboundBytes":"7240743","inboundBitsRate":16090.56,"outboundBytes":"289900550","outboundBitsRate":644223.44,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"19036889","throughBitsRate":42304.16,"totalPackets":"353987","totalPacketsRate":"98.33","inboundPackets":"22822","inboundPacketsRate":"6.34","outboundPackets":"235827","outboundPacketsRate":"65.51","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"17995","throughPacketsRate":"5.00","sessions":"7922","sessionsRate":"2.20"},{"appLabel":"uplive","totalBytes":"319497338","totalBitsRate":709994.08,"inboundBytes":"145403","inboundBitsRate":323.12,"outboundBytes":"253122597","outboundBitsRate":562494.64,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"64021946","throughBitsRate":142270.96,"totalPackets":"267454","totalPacketsRate":"74.29","inboundPackets":"852","inboundPacketsRate":"0.24","outboundPackets":"184990","outboundPacketsRate":"51.39","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"53207","throughPacketsRate":"14.78","sessions":"397","sessionsRate":"0.11"},{"appLabel":"qqvideo","totalBytes":"261011700","totalBitsRate":580026.0,"inboundBytes":"21824521","inboundBitsRate":48498.96,"outboundBytes":"166801525","outboundBitsRate":370670.08,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"66044939","throughBitsRate":146766.56,"totalPackets":"296766","totalPacketsRate":"82.44","inboundPackets":"15654","inboundPacketsRate":"4.35","outboundPackets":"134021","outboundPacketsRate":"37.23","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"74815","throughPacketsRate":"20.78","sessions":"1848","sessionsRate":"0.51"},{"appLabel":"mitalk","totalBytes":"256460615","totalBitsRate":569912.48,"inboundBytes":"15010","inboundBitsRate":33.36,"outboundBytes":"221730653","outboundBitsRate":492734.8,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"31237402","throughBitsRate":69416.48,"totalPackets":"239019","totalPacketsRate":"66.39","inboundPackets":"41","inboundPacketsRate":"0.01","outboundPackets":"164309","outboundPacketsRate":"45.64","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"29856","throughPacketsRate":"8.29","sessions":"235","sessionsRate":"0.07"},{"appLabel":"mpegts","totalBytes":"240177701","totalBitsRate":533728.24,"inboundBytes":"94264892","inboundBitsRate":209477.52,"outboundBytes":"116506517","outboundBitsRate":258903.36,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"25996281","throughBitsRate":57769.52,"totalPackets":"219620","totalPacketsRate":"61.01","inboundPackets":"63270","inboundPacketsRate":"17.58","outboundPackets":"82878","outboundPacketsRate":"23.02","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"24853","throughPacketsRate":"6.90","sessions":"205","sessionsRate":"0.06"},{"appLabel":"huawei","totalBytes":"217927752","totalBitsRate":484283.92,"inboundBytes":"40669033","inboundBitsRate":90375.6,"outboundBytes":"105104982","outboundBitsRate":233566.64,"internalBytes":"40634","internalBitsRate":90.32,"throughBytes":"8303763","throughBitsRate":18452.8,"totalPackets":"214236","totalPacketsRate":"59.51","inboundPackets":"52307","inboundPacketsRate":"14.53","outboundPackets":"73804","outboundPacketsRate":"20.50","internalPackets":"141","internalPacketsRate":"0.04","throughPackets":"18411","throughPacketsRate":"5.11","sessions":"1917","sessionsRate":"0.53"},{"appLabel":"bilibili","totalBytes":"209385738","totalBitsRate":465301.68,"inboundBytes":"17559248","inboundBitsRate":39020.56,"outboundBytes":"146755753","outboundBitsRate":326123.92,"internalBytes":"1434","internalBitsRate":3.2,"throughBytes":"38452851","throughBitsRate":85450.8,"totalPackets":"230342","totalPacketsRate":"63.98","inboundPackets":"12366","inboundPacketsRate":"3.44","outboundPackets":"109089","outboundPacketsRate":"30.30","internalPackets":"9","internalPacketsRate":"0.00","throughPackets":"45415","throughPacketsRate":"12.62","sessions":"1810","sessionsRate":"0.50"},{"appLabel":"chinanetcenter","totalBytes":"193031109","totalBitsRate":428958.0,"inboundBytes":"44693377","inboundBitsRate":99318.64,"outboundBytes":"36075271","outboundBitsRate":80167.28,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"104666456","throughBitsRate":232592.16,"totalPackets":"274415","totalPacketsRate":"76.23","inboundPackets":"40215","inboundPacketsRate":"11.17","outboundPackets":"30133","outboundPacketsRate":"8.37","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"123918","throughPacketsRate":"34.42","sessions":"5859","sessionsRate":"1.63"},{"appLabel":"mango_tv","totalBytes":"181428006","totalBitsRate":403173.36,"inboundBytes":"61271","inboundBitsRate":136.16,"outboundBytes":"139326310","outboundBitsRate":309614.0,"internalBytes":"9127","internalBitsRate":20.32,"throughBytes":"39450723","throughBitsRate":87668.24,"totalPackets":"172129","totalPacketsRate":"47.81","inboundPackets":"122","inboundPacketsRate":"0.03","outboundPackets":"101193","outboundPacketsRate":"28.11","internalPackets":"20","internalPacketsRate":"0.01","throughPackets":"35629","throughPacketsRate":"9.90","sessions":"346","sessionsRate":"0.10"},{"appLabel":"gaode_map","totalBytes":"167103193","totalBitsRate":371340.4,"inboundBytes":"392888","inboundBitsRate":873.12,"outboundBytes":"148517888","outboundBitsRate":330039.76,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"15974966","throughBitsRate":35499.92,"totalPackets":"149543","totalPacketsRate":"41.54","inboundPackets":"570","inboundPacketsRate":"0.16","outboundPackets":"105677","outboundPacketsRate":"29.35","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"14870","throughPacketsRate":"4.13","sessions":"224","sessionsRate":"0.06"},{"appLabel":"speedtest","totalBytes":"166504309","totalBitsRate":370009.6,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"85946295","outboundBitsRate":190991.76,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"79557949","throughBitsRate":176795.44,"totalPackets":"137055","totalPacketsRate":"38.07","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"62990","outboundPacketsRate":"17.50","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"60719","throughPacketsRate":"16.87","sessions":"80","sessionsRate":"0.02"},{"appLabel":"ultrasurf","totalBytes":"151540564","totalBitsRate":336756.8,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"74632135","outboundBitsRate":165849.2,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"76201823","throughBitsRate":169337.36,"totalPackets":"127003","totalPacketsRate":"35.28","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"54808","outboundPacketsRate":"15.22","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"62565","throughPacketsRate":"17.38","sessions":"53","sessionsRate":"0.01"},{"appLabel":"163com","totalBytes":"144251719","totalBitsRate":320559.36,"inboundBytes":"132639","inboundBitsRate":294.72,"outboundBytes":"109746861","outboundBitsRate":243881.92,"internalBytes":"32908","internalBitsRate":73.12,"throughBytes":"32402954","throughBitsRate":72006.56,"totalPackets":"137900","totalPacketsRate":"38.31","inboundPackets":"147","inboundPacketsRate":"0.04","outboundPackets":"78282","outboundPacketsRate":"21.75","internalPackets":"38","internalPacketsRate":"0.01","throughPackets":"32056","throughPacketsRate":"8.90","sessions":"112","sessionsRate":"0.03"},{"appLabel":"mgcp","totalBytes":"130272416","totalBitsRate":289494.24,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"85646058","outboundBitsRate":190324.56,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"43918252","throughBitsRate":97596.08,"totalPackets":"97461","totalPacketsRate":"27.07","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"59411","outboundPacketsRate":"16.50","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"30641","throughPacketsRate":"8.51","sessions":"33","sessionsRate":"0.01"},{"appLabel":"wsp","totalBytes":"125198956","totalBitsRate":278219.92,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"83062294","outboundBitsRate":184582.88,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"41350210","throughBitsRate":91889.36,"totalPackets":"101300","totalPacketsRate":"28.14","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"58770","outboundPacketsRate":"16.33","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"33488","throughPacketsRate":"9.30","sessions":"58","sessionsRate":"0.02"},{"appLabel":"ximalaya","totalBytes":"121963288","totalBitsRate":271029.52,"inboundBytes":"34072127","inboundBitsRate":75715.84,"outboundBytes":"54245965","outboundBitsRate":120546.56,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"32284138","throughBitsRate":71742.56,"totalPackets":"127986","totalPacketsRate":"35.55","inboundPackets":"22899","inboundPacketsRate":"6.36","outboundPackets":"49106","outboundPacketsRate":"13.64","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"35569","throughPacketsRate":"9.88","sessions":"172","sessionsRate":"0.05"},{"appLabel":"meitu","totalBytes":"116354224","totalBitsRate":258564.96,"inboundBytes":"12047","inboundBitsRate":26.8,"outboundBytes":"99353700","outboundBitsRate":220786.0,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"14812305","throughBitsRate":32916.24,"totalPackets":"115677","totalPacketsRate":"32.13","inboundPackets":"14","inboundPacketsRate":"0.00","outboundPackets":"69834","outboundPacketsRate":"19.40","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"13805","throughPacketsRate":"3.83","sessions":"124","sessionsRate":"0.03"}]},"originalUrl":"http://192.168.44.55:9999/?query=SELECT common_app_label AS app_label, SUM(common_c2s_byte_num + common_s2c_byte_num) AS total_bytes, SUM(traffic_inbound_byte) AS inbound_bytes, SUM(traffic_outbound_byte) AS outbound_bytes, SUM(traffic_internal_byte) AS internal_bytes, SUM(traffic_through_byte) AS through_bytes, SUM(common_c2s_pkt_num + common_s2c_pkt_num) AS total_packets, SUM(traffic_inbound_pkt) AS inbound_packets, SUM(traffic_outbound_pkt) AS outbound_packets, SUM(traffic_internal_pkt) AS internal_packets, SUM(traffic_through_pkt) AS through_packets, SUM(common_sessions) AS sessions FROM metric_application WHERE stat_time >= toDateTime(1677224704) AND stat_time < toDateTime(1677228304) AND notEmpty(app_label) GROUP BY app_label ORDER BY total_bytes desc LIMIT 50 &format=json&option=real-time","msg":"OK"}} -const mockGetScoreCycle = { "data": {"status":200,"code":200,"queryKey":"fd4b26ecb44c18b30d5cc63b6fddfc87","success":true,"message":null,"statistics":{"elapsed":3,"rows_read":8192,"bytes_read":1052435,"result_size":13243,"result_rows":50},"job":null,"formatType":"json","meta":[{"name":"app_label","type":"string","category":"Dimension"},{"name":"total_bytes","type":"long","category":"Metric"},{"name":"inbound_bytes","type":"long","category":"Metric"},{"name":"outbound_bytes","type":"long","category":"Metric"},{"name":"internal_bytes","type":"long","category":"Metric"},{"name":"through_bytes","type":"long","category":"Metric"},{"name":"total_packets","type":"long","category":"Metric"},{"name":"inbound_packets","type":"long","category":"Metric"},{"name":"outbound_packets","type":"long","category":"Metric"},{"name":"internal_packets","type":"long","category":"Metric"},{"name":"through_packets","type":"long","category":"Metric"},{"name":"sessions","type":"long","category":"Metric"}],"data":{"resultType":"table","result":[{"appLabel":"qqvideo","totalBytes":"234195476","totalBitsRate":520434.4,"inboundBytes":"9412019","inboundBitsRate":20915.6,"outboundBytes":"166706755","outboundBitsRate":370459.44,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"52130610","throughBitsRate":115845.84,"totalPackets":"280663","totalPacketsRate":"77.96","inboundPackets":"6859","inboundPacketsRate":"1.91","outboundPackets":"135979","outboundPacketsRate":"37.77","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"70773","throughPacketsRate":"19.66","sessions":"1955","sessionsRate":"0.54"},{"appLabel":"uplive","totalBytes":"230991174","totalBitsRate":513313.76,"inboundBytes":"113277","inboundBitsRate":251.76,"outboundBytes":"189550620","outboundBitsRate":421223.6,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"39736450","throughBitsRate":88303.2,"totalPackets":"190429","totalPacketsRate":"52.90","inboundPackets":"825","inboundPacketsRate":"0.23","outboundPackets":"137922","outboundPacketsRate":"38.31","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"32741","throughPacketsRate":"9.09","sessions":"378","sessionsRate":"0.11"},{"appLabel":"experion","totalBytes":"491014216","totalBitsRate":1091142.72,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"433991143","outboundBitsRate":964424.8,"internalBytes":"244","internalBitsRate":0.56,"throughBytes":"53212676","throughBitsRate":118250.4,"totalPackets":"403752","totalPacketsRate":"112.15","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"315145","outboundPacketsRate":"87.54","internalPackets":"2","internalPacketsRate":"0.00","throughPackets":"42875","throughPacketsRate":"11.91","sessions":"248","sessionsRate":"0.07"},{"appLabel":"xiaomi","totalBytes":"651103114","totalBitsRate":1446895.84,"inboundBytes":"2485299","inboundBitsRate":5522.88,"outboundBytes":"524581871","outboundBitsRate":1165737.52,"internalBytes":"5716","internalBitsRate":12.72,"throughBytes":"113642814","throughBitsRate":252539.6,"totalPackets":"612399","totalPacketsRate":"170.11","inboundPackets":"3049","inboundPacketsRate":"0.85","outboundPackets":"365920","outboundPacketsRate":"101.64","internalPackets":"18","internalPacketsRate":"0.01","throughPackets":"108229","throughPacketsRate":"30.06","sessions":"814","sessionsRate":"0.23"},{"appLabel":"qq_web","totalBytes":"2941886476","totalBitsRate":6537525.52,"inboundBytes":"767969810","inboundBitsRate":1706599.6,"outboundBytes":"1691846972","outboundBitsRate":3759659.92,"internalBytes":"514968","internalBitsRate":1144.4,"throughBytes":"416504962","throughBitsRate":925566.56,"totalPackets":"3315391","totalPacketsRate":"920.94","inboundPackets":"587599","inboundPacketsRate":"163.22","outboundPackets":"1341908","outboundPacketsRate":"372.75","internalPackets":"394","internalPacketsRate":"0.11","throughPackets":"471886","throughPacketsRate":"131.08","sessions":"7323","sessionsRate":"2.03"},{"appLabel":"mpegts","totalBytes":"253158294","totalBitsRate":562574.0,"inboundBytes":"55484613","inboundBitsRate":123299.12,"outboundBytes":"175278823","outboundBitsRate":389508.48,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"18382691","throughBitsRate":40850.4,"totalPackets":"242010","totalPacketsRate":"67.23","inboundPackets":"37566","inboundPacketsRate":"10.44","outboundPackets":"124536","outboundPacketsRate":"34.59","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"17499","throughPacketsRate":"4.86","sessions":"174","sessionsRate":"0.05"},{"appLabel":"wtls","totalBytes":"1943189046","totalBitsRate":4318197.92,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"1604904130","outboundBitsRate":3566453.6,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"324762296","throughBitsRate":721694.0,"totalPackets":"1621151","totalPacketsRate":"450.32","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"1168835","outboundPacketsRate":"324.68","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"274814","throughPacketsRate":"76.34","sessions":"1290","sessionsRate":"0.36"},{"appLabel":"wsp","totalBytes":"50493969","totalBitsRate":112208.8,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"42925964","outboundBitsRate":95391.04,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"7109194","throughBitsRate":15798.24,"totalPackets":"43861","totalPacketsRate":"12.18","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"31497","outboundPacketsRate":"8.75","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"6193","throughPacketsRate":"1.72","sessions":"45","sessionsRate":"0.01"},{"appLabel":"kuaishou","totalBytes":"13004649950","totalBitsRate":2.889922208E7,"inboundBytes":"326041541","inboundBitsRate":724536.72,"outboundBytes":"9655810160","outboundBitsRate":2.145735592E7,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"2866096564","throughBitsRate":6369103.44,"totalPackets":"11986759","totalPacketsRate":"3329.66","inboundPackets":"219911","inboundPacketsRate":"61.09","outboundPackets":"6916619","outboundPacketsRate":"1921.28","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"2690235","throughPacketsRate":"747.29","sessions":"9359","sessionsRate":"2.60"},{"appLabel":"iperf","totalBytes":"704877256","totalBitsRate":1566393.92,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"0","outboundBitsRate":0.0,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"704877256","throughBitsRate":1566393.92,"totalPackets":"622147","totalPacketsRate":"172.82","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"0","outboundPacketsRate":"0.00","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"622147","throughPacketsRate":"172.82","sessions":"183","sessionsRate":"0.05"},{"appLabel":"mango_tv","totalBytes":"470492999","totalBitsRate":1045540.0,"inboundBytes":"47936","inboundBitsRate":106.56,"outboundBytes":"154302754","outboundBitsRate":342895.04,"internalBytes":"56640","internalBitsRate":125.84,"throughBytes":"313145243","throughBitsRate":695878.32,"totalPackets":"429583","totalPacketsRate":"119.33","inboundPackets":"140","inboundPacketsRate":"0.04","outboundPackets":"110572","outboundPacketsRate":"30.71","internalPackets":"62","internalPacketsRate":"0.02","throughPackets":"278782","throughPacketsRate":"77.44","sessions":"356","sessionsRate":"0.10"},{"appLabel":"youku","totalBytes":"339146193","totalBitsRate":753658.24,"inboundBytes":"54037268","inboundBitsRate":120082.8,"outboundBytes":"144264774","outboundBitsRate":320588.4,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"132029010","throughBitsRate":293397.84,"totalPackets":"324542","totalPacketsRate":"90.15","inboundPackets":"40543","inboundPacketsRate":"11.26","outboundPackets":"107155","outboundPacketsRate":"29.77","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"112408","throughPacketsRate":"31.22","sessions":"1675","sessionsRate":"0.47"},{"appLabel":"huawei","totalBytes":"375820331","totalBitsRate":835156.32,"inboundBytes":"23656227","inboundBitsRate":52569.36,"outboundBytes":"273929425","outboundBitsRate":608732.08,"internalBytes":"31032","internalBitsRate":68.96,"throughBytes":"8611888","throughBitsRate":19137.52,"totalPackets":"455593","totalPacketsRate":"126.55","inboundPackets":"39808","inboundPacketsRate":"11.06","outboundPackets":"187660","outboundPacketsRate":"52.13","internalPackets":"108","internalPacketsRate":"0.03","throughPackets":"34316","throughPacketsRate":"9.53","sessions":"1913","sessionsRate":"0.53"},{"appLabel":"ximalaya","totalBytes":"116145452","totalBitsRate":258101.04,"inboundBytes":"22747626","inboundBitsRate":50550.32,"outboundBytes":"38179332","outboundBitsRate":84842.96,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"54127569","throughBitsRate":120283.52,"totalPackets":"122777","totalPacketsRate":"34.10","inboundPackets":"15244","inboundPacketsRate":"4.23","outboundPackets":"38237","outboundPacketsRate":"10.62","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"53078","throughPacketsRate":"14.74","sessions":"231","sessionsRate":"0.06"},{"appLabel":"bilibili","totalBytes":"222837987","totalBitsRate":495195.52,"inboundBytes":"19694384","inboundBitsRate":43765.28,"outboundBytes":"155247678","outboundBitsRate":344994.88,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"41117062","throughBitsRate":91371.28,"totalPackets":"255979","totalPacketsRate":"71.11","inboundPackets":"17926","inboundPacketsRate":"4.98","outboundPackets":"114636","outboundPacketsRate":"31.84","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"46923","throughPacketsRate":"13.03","sessions":"1674","sessionsRate":"0.47"},{"appLabel":"ixigua","totalBytes":"434334163","totalBitsRate":965187.04,"inboundBytes":"117269","inboundBitsRate":260.56,"outboundBytes":"336668661","outboundBitsRate":748152.56,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"86360871","throughBitsRate":191913.04,"totalPackets":"456543","totalPacketsRate":"126.82","inboundPackets":"985","inboundPacketsRate":"0.27","outboundPackets":"248902","outboundPacketsRate":"69.14","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"100787","throughPacketsRate":"28.00","sessions":"1842","sessionsRate":"0.51"},{"appLabel":"mitalk","totalBytes":"112472001","totalBitsRate":249937.76,"inboundBytes":"33711","inboundBitsRate":74.88,"outboundBytes":"89460972","outboundBitsRate":198802.16,"internalBytes":"158139","internalBitsRate":351.44,"throughBytes":"21567403","throughBitsRate":47927.6,"totalPackets":"98729","totalPacketsRate":"27.42","inboundPackets":"40","inboundPacketsRate":"0.01","outboundPackets":"66486","outboundPacketsRate":"18.47","internalPackets":"141","internalPacketsRate":"0.04","throughPackets":"18259","throughPacketsRate":"5.07","sessions":"237","sessionsRate":"0.07"},{"appLabel":"163com","totalBytes":"293758306","totalBitsRate":652796.24,"inboundBytes":"7403","inboundBitsRate":16.48,"outboundBytes":"219360017","outboundBitsRate":487466.72,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"71192103","throughBitsRate":158204.64,"totalPackets":"265667","totalPacketsRate":"73.80","inboundPackets":"30","inboundPacketsRate":"0.01","outboundPackets":"156443","outboundPacketsRate":"43.46","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"64538","throughPacketsRate":"17.93","sessions":"138","sessionsRate":"0.04"},{"appLabel":"meitu","totalBytes":"133888381","totalBitsRate":297529.76,"inboundBytes":"297638","inboundBitsRate":661.44,"outboundBytes":"114480431","outboundBitsRate":254400.96,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"17287906","throughBitsRate":38417.6,"totalPackets":"122026","totalPacketsRate":"33.90","inboundPackets":"224","inboundPacketsRate":"0.06","outboundPackets":"81339","outboundPacketsRate":"22.59","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"15729","throughPacketsRate":"4.37","sessions":"120","sessionsRate":"0.03"},{"appLabel":"tencent","totalBytes":"120111705","totalBitsRate":266914.88,"inboundBytes":"114796854","inboundBitsRate":255104.16,"outboundBytes":"6963","outboundBitsRate":15.44,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"83154","throughBitsRate":184.8,"totalPackets":"165503","totalPacketsRate":"45.97","inboundPackets":"88683","inboundPacketsRate":"24.63","outboundPackets":"7","outboundPacketsRate":"0.00","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"669","throughPacketsRate":"0.19","sessions":"98","sessionsRate":"0.03"},{"appLabel":"netease","totalBytes":"1134901047","totalBitsRate":2522002.32,"inboundBytes":"35986749","inboundBitsRate":79970.56,"outboundBytes":"814970389","outboundBitsRate":1811045.28,"internalBytes":"49075","internalBitsRate":109.04,"throughBytes":"269451423","throughBitsRate":598780.96,"totalPackets":"1053971","totalPacketsRate":"292.77","inboundPackets":"25157","inboundPacketsRate":"6.99","outboundPackets":"579077","outboundPacketsRate":"160.85","internalPackets":"82","internalPacketsRate":"0.02","throughPackets":"255339","throughPacketsRate":"70.93","sessions":"1113","sessionsRate":"0.31"},{"appLabel":"http2","totalBytes":"3099353144","totalBitsRate":6887451.44,"inboundBytes":"2162517","inboundBitsRate":4805.6,"outboundBytes":"2490998598","outboundBitsRate":5535552.48,"internalBytes":"37365","internalBitsRate":83.04,"throughBytes":"528920887","throughBitsRate":1175379.76,"totalPackets":"2794261","totalPacketsRate":"776.18","inboundPackets":"18554","inboundPacketsRate":"5.15","outboundPackets":"1929819","outboundPacketsRate":"536.06","internalPackets":"88","internalPacketsRate":"0.02","throughPackets":"503614","throughPacketsRate":"139.89","sessions":"15195","sessionsRate":"4.22"},{"appLabel":"flash","totalBytes":"1615414363","totalBitsRate":3589809.68,"inboundBytes":"148600251","inboundBitsRate":330222.8,"outboundBytes":"1338376664","outboundBitsRate":2974170.4,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"105850697","throughBitsRate":235223.76,"totalPackets":"1534235","totalPacketsRate":"426.18","inboundPackets":"108812","inboundPacketsRate":"30.23","outboundPackets":"961609","outboundPacketsRate":"267.11","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"107232","throughPacketsRate":"29.79","sessions":"289","sessionsRate":"0.08"},{"appLabel":"mgcp","totalBytes":"40103471","totalBitsRate":89118.8,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"15198209","outboundBitsRate":33773.76,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"24777140","throughBitsRate":55060.32,"totalPackets":"29836","totalPacketsRate":"8.29","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"10631","outboundPacketsRate":"2.95","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"17682","throughPacketsRate":"4.91","sessions":"13","sessionsRate":"0.00"},{"appLabel":"jingdong","totalBytes":"479292527","totalBitsRate":1065094.48,"inboundBytes":"5173486","inboundBitsRate":11496.64,"outboundBytes":"89789742","outboundBitsRate":199532.8,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"381703671","throughBitsRate":848230.4,"totalPackets":"431533","totalPacketsRate":"119.87","inboundPackets":"3871","inboundPacketsRate":"1.08","outboundPackets":"64871","outboundPacketsRate":"18.02","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"333010","throughPacketsRate":"92.50","sessions":"402","sessionsRate":"0.11"},{"appLabel":"douyin","totalBytes":"50992592835","totalBitsRate":1.1331687296E8,"inboundBytes":"1650581268","inboundBitsRate":3667958.4,"outboundBytes":"36516418605","outboundBitsRate":8.114759688E7,"internalBytes":"2970624","internalBitsRate":6601.36,"throughBytes":"11896980594","throughBitsRate":2.643773464E7,"totalPackets":"46571680","totalPacketsRate":"12936.58","inboundPackets":"1189443","inboundPacketsRate":"330.40","outboundPackets":"25826258","outboundPacketsRate":"7173.96","internalPackets":"2513","internalPacketsRate":"0.70","throughPackets":"10802763","throughPacketsRate":"3000.77","sessions":"46308","sessionsRate":"12.86"},{"appLabel":"baidu","totalBytes":"1788529278","totalBitsRate":3974509.52,"inboundBytes":"347936060","inboundBitsRate":773191.28,"outboundBytes":"1185142275","outboundBitsRate":2633649.52,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"192275392","throughBitsRate":427278.64,"totalPackets":"1947555","totalPacketsRate":"540.99","inboundPackets":"253118","inboundPacketsRate":"70.31","outboundPackets":"928595","outboundPacketsRate":"257.94","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"240434","throughPacketsRate":"66.79","sessions":"13340","sessionsRate":"3.71"},{"appLabel":"taobao","totalBytes":"205847750","totalBitsRate":457439.44,"inboundBytes":"13709248","inboundBitsRate":30464.96,"outboundBytes":"173014473","outboundBitsRate":384476.64,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"14171469","throughBitsRate":31492.16,"totalPackets":"231545","totalPacketsRate":"64.32","inboundPackets":"25261","inboundPacketsRate":"7.02","outboundPackets":"128177","outboundPacketsRate":"35.60","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"13464","throughPacketsRate":"3.74","sessions":"7611","sessionsRate":"2.11"},{"appLabel":"appstore","totalBytes":"899055619","totalBitsRate":1997901.36,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"700207516","outboundBitsRate":1556016.72,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"198848103","throughBitsRate":441884.64,"totalPackets":"634934","totalPacketsRate":"176.37","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"494264","outboundPacketsRate":"137.30","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"140670","throughPacketsRate":"39.08","sessions":"6","sessionsRate":"0.00"},{"appLabel":"toutiao","totalBytes":"1764172849","totalBitsRate":3920384.08,"inboundBytes":"320146","inboundBitsRate":711.44,"outboundBytes":"1450756241","outboundBitsRate":3223902.72,"internalBytes":"49771","internalBitsRate":110.64,"throughBytes":"282330079","throughBitsRate":627400.16,"totalPackets":"1702392","totalPacketsRate":"472.89","inboundPackets":"976","inboundPacketsRate":"0.27","outboundPackets":"1054624","outboundPacketsRate":"292.95","internalPackets":"83","internalPacketsRate":"0.02","throughPackets":"276830","throughPacketsRate":"76.90","sessions":"4349","sessionsRate":"1.21"},{"appLabel":"cibn","totalBytes":"151378576","totalBitsRate":336396.8,"inboundBytes":"6540898","inboundBitsRate":14535.36,"outboundBytes":"102381989","outboundBitsRate":227515.52,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"40213911","throughBitsRate":89364.24,"totalPackets":"148803","totalPacketsRate":"41.33","inboundPackets":"4601","inboundPacketsRate":"1.28","outboundPackets":"70782","outboundPacketsRate":"19.66","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"38662","throughPacketsRate":"10.74","sessions":"148","sessionsRate":"0.04"},{"appLabel":"iqiyi","totalBytes":"231000437","totalBitsRate":513334.32,"inboundBytes":"4057190","inboundBitsRate":9016.0,"outboundBytes":"164082389","outboundBitsRate":364627.52,"internalBytes":"17793760","internalBitsRate":39541.68,"throughBytes":"42214051","throughBitsRate":93809.04,"totalPackets":"210472","totalPacketsRate":"58.46","inboundPackets":"3488","inboundPacketsRate":"0.97","outboundPackets":"115644","outboundPacketsRate":"32.12","internalPackets":"19678","internalPacketsRate":"5.47","throughPackets":"37432","throughPacketsRate":"10.40","sessions":"504","sessionsRate":"0.14"},{"appLabel":"bmff","totalBytes":"4105730521","totalBitsRate":9123845.6,"inboundBytes":"317416331","inboundBitsRate":705369.6,"outboundBytes":"2998292329","outboundBitsRate":6662871.84,"internalBytes":"1570","internalBitsRate":3.52,"throughBytes":"738253289","throughBitsRate":1640562.88,"totalPackets":"3809971","totalPacketsRate":"1058.33","inboundPackets":"211504","inboundPacketsRate":"58.75","outboundPackets":"2141849","outboundPacketsRate":"594.96","internalPackets":"11","internalPacketsRate":"0.00","throughPackets":"693580","throughPacketsRate":"192.66","sessions":"3112","sessionsRate":"0.86"},{"appLabel":"kugou","totalBytes":"1082512757","totalBitsRate":2405583.92,"inboundBytes":"2818447","inboundBitsRate":6263.2,"outboundBytes":"897512945","outboundBitsRate":1994473.2,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"165603158","throughBitsRate":368007.04,"totalPackets":"1011521","totalPacketsRate":"280.98","inboundPackets":"3055","inboundPacketsRate":"0.85","outboundPackets":"656792","outboundPacketsRate":"182.44","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"159330","throughPacketsRate":"44.26","sessions":"2432","sessionsRate":"0.68"},{"appLabel":"wechat","totalBytes":"19885125118","totalBitsRate":4.418916696E7,"inboundBytes":"59802435","inboundBitsRate":132894.32,"outboundBytes":"15152188633","outboundBitsRate":3.367153032E7,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"4146626710","throughBitsRate":9214726.0,"totalPackets":"22772809","totalPacketsRate":"6325.78","inboundPackets":"63196","inboundPacketsRate":"17.55","outboundPackets":"12215887","outboundPacketsRate":"3393.30","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"4805016","throughPacketsRate":"1334.73","sessions":"16572","sessionsRate":"4.60"},{"appLabel":"windows_update","totalBytes":"245925200","totalBitsRate":546500.48,"inboundBytes":"32633","inboundBitsRate":72.48,"outboundBytes":"192011004","outboundBitsRate":426691.12,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"50058310","throughBitsRate":111240.72,"totalPackets":"231924","totalPacketsRate":"64.42","inboundPackets":"316","inboundPacketsRate":"0.09","outboundPackets":"131847","outboundPacketsRate":"36.62","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"47584","throughPacketsRate":"13.22","sessions":"105","sessionsRate":"0.03"},{"appLabel":"gaode_map","totalBytes":"144551760","totalBitsRate":321226.16,"inboundBytes":"253338","inboundBitsRate":562.96,"outboundBytes":"128686443","outboundBitsRate":285969.84,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"13548556","throughBitsRate":30107.92,"totalPackets":"133246","totalPacketsRate":"37.01","inboundPackets":"340","inboundPacketsRate":"0.09","outboundPackets":"92278","outboundPacketsRate":"25.63","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"13283","throughPacketsRate":"3.69","sessions":"183","sessionsRate":"0.05"},{"appLabel":"speedtest","totalBytes":"137567059","totalBitsRate":305704.56,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"124787359","outboundBitsRate":277305.28,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"11337273","throughBitsRate":25193.92,"totalPackets":"118923","totalPacketsRate":"33.03","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"89467","outboundPacketsRate":"24.85","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"10021","throughPacketsRate":"2.78","sessions":"95","sessionsRate":"0.03"},{"appLabel":"uc_browser","totalBytes":"455212427","totalBitsRate":1011583.2,"inboundBytes":"2971344","inboundBitsRate":6602.96,"outboundBytes":"344999936","outboundBitsRate":766666.56,"internalBytes":"910580","internalBitsRate":2023.52,"throughBytes":"99869391","throughBitsRate":221932.0,"totalPackets":"437763","totalPacketsRate":"121.60","inboundPackets":"2074","inboundPacketsRate":"0.58","outboundPackets":"247976","outboundPacketsRate":"68.88","internalPackets":"704","internalPacketsRate":"0.20","throughPackets":"102031","throughPacketsRate":"28.34","sessions":"582","sessionsRate":"0.16"},{"appLabel":"ultrasurf","totalBytes":"61520893","totalBitsRate":136713.12,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"52374114","outboundBitsRate":116386.96,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"8330087","throughBitsRate":18511.28,"totalPackets":"56218","totalPacketsRate":"15.62","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"37621","outboundPacketsRate":"10.45","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"7656","throughPacketsRate":"2.13","sessions":"54","sessionsRate":"0.02"},{"appLabel":"office365","totalBytes":"206737984","totalBitsRate":459417.76,"inboundBytes":"62783","inboundBitsRate":139.52,"outboundBytes":"185778283","outboundBitsRate":412840.64,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"17445328","throughBitsRate":38767.36,"totalPackets":"197816","totalPacketsRate":"54.95","inboundPackets":"114","inboundPacketsRate":"0.03","outboundPackets":"128591","outboundPacketsRate":"35.72","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"16766","throughPacketsRate":"4.66","sessions":"116","sessionsRate":"0.03"},{"appLabel":"bytedance","totalBytes":"3305673546","totalBitsRate":7345941.2,"inboundBytes":"293069747","inboundBitsRate":651266.08,"outboundBytes":"1053446532","outboundBitsRate":2340992.32,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"1064802672","throughBitsRate":2366228.16,"totalPackets":"3826538","totalPacketsRate":"1062.93","inboundPackets":"463066","inboundPacketsRate":"128.63","outboundPackets":"878953","outboundPacketsRate":"244.15","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"1168282","throughPacketsRate":"324.52","sessions":"18590","sessionsRate":"5.16"},{"appLabel":"bittorrent","totalBytes":"926683085","totalBitsRate":2059295.76,"inboundBytes":"2542024","inboundBitsRate":5648.96,"outboundBytes":"653874746","outboundBitsRate":1453054.96,"internalBytes":"150","internalBitsRate":0.32,"throughBytes":"256089294","throughBitsRate":569087.36,"totalPackets":"804158","totalPacketsRate":"223.38","inboundPackets":"4816","inboundPacketsRate":"1.34","outboundPackets":"482551","outboundPacketsRate":"134.04","internalPackets":"2","internalPacketsRate":"0.00","throughPackets":"205349","throughPacketsRate":"57.04","sessions":"1916","sessionsRate":"0.53"},{"appLabel":"alibaba_cloud","totalBytes":"6147658651","totalBitsRate":1.366146368E7,"inboundBytes":"4143153250","inboundBitsRate":9207007.2,"outboundBytes":"1421738048","outboundBitsRate":3159417.92,"internalBytes":"4854525","internalBitsRate":10787.84,"throughBytes":"289115036","throughBitsRate":642477.84,"totalPackets":"6595485","totalPacketsRate":"1832.08","inboundPackets":"2942206","inboundPacketsRate":"817.28","outboundPackets":"1073316","outboundPacketsRate":"298.14","internalPackets":"5072","internalPacketsRate":"1.41","throughPackets":"290673","throughPacketsRate":"80.74","sessions":"34462","sessionsRate":"9.57"},{"appLabel":"pinduoduo","totalBytes":"1833465929","totalBitsRate":4074368.72,"inboundBytes":"246666554","inboundBitsRate":548147.92,"outboundBytes":"1135892409","outboundBitsRate":2524205.36,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"419379803","throughBitsRate":931955.12,"totalPackets":"1953675","totalPacketsRate":"542.69","inboundPackets":"194148","inboundPacketsRate":"53.93","outboundPackets":"825250","outboundPacketsRate":"229.24","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"453122","throughPacketsRate":"125.87","sessions":"1737","sessionsRate":"0.48"},{"appLabel":"alibaba_group","totalBytes":"470378867","totalBitsRate":1045286.4,"inboundBytes":"1156465","inboundBitsRate":2569.92,"outboundBytes":"366623480","outboundBitsRate":814718.88,"internalBytes":"3447","internalBitsRate":7.68,"throughBytes":"93601727","throughBitsRate":208003.84,"totalPackets":"448050","totalPacketsRate":"124.46","inboundPackets":"1950","inboundPacketsRate":"0.54","outboundPackets":"263802","outboundPacketsRate":"73.28","internalPackets":"27","internalPacketsRate":"0.01","throughPackets":"90907","throughPacketsRate":"25.25","sessions":"1170","sessionsRate":"0.33"},{"appLabel":"chinanetcenter","totalBytes":"499294026","totalBitsRate":1109542.32,"inboundBytes":"6035203","inboundBitsRate":13411.6,"outboundBytes":"444660717","outboundBitsRate":988134.96,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"39839482","throughBitsRate":88532.16,"totalPackets":"491668","totalPacketsRate":"136.57","inboundPackets":"7570","inboundPacketsRate":"2.10","outboundPackets":"322048","outboundPacketsRate":"89.46","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"44267","throughPacketsRate":"12.30","sessions":"1940","sessionsRate":"0.54"},{"appLabel":"sina_weibo","totalBytes":"847390355","totalBitsRate":1883089.68,"inboundBytes":"453841","inboundBitsRate":1008.56,"outboundBytes":"703017964","outboundBitsRate":1562262.16,"internalBytes":"24574250","internalBitsRate":54609.44,"throughBytes":"105787632","throughBitsRate":235083.6,"totalPackets":"824536","totalPacketsRate":"229.04","inboundPackets":"497","inboundPacketsRate":"0.14","outboundPackets":"518395","outboundPacketsRate":"144.00","internalPackets":"19327","internalPacketsRate":"5.37","throughPackets":"103165","throughPacketsRate":"28.66","sessions":"1628","sessionsRate":"0.45"},{"appLabel":"xiaohongshu","totalBytes":"308004810","totalBitsRate":684455.12,"inboundBytes":"95818997","inboundBitsRate":212931.12,"outboundBytes":"146652446","outboundBitsRate":325894.32,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"57848191","throughBitsRate":128551.52,"totalPackets":"332183","totalPacketsRate":"92.27","inboundPackets":"64102","inboundPacketsRate":"17.81","outboundPackets":"104476","outboundPacketsRate":"29.02","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"54818","throughPacketsRate":"15.23","sessions":"503","sessionsRate":"0.14"},{"appLabel":"netease_cloud_music","totalBytes":"4556342822","totalBitsRate":1.012520624E7,"inboundBytes":"3134629","inboundBitsRate":6965.84,"outboundBytes":"3544952259","outboundBitsRate":7877671.68,"internalBytes":"8160779","internalBitsRate":18135.04,"throughBytes":"942170506","throughBitsRate":2093712.24,"totalPackets":"4220758","totalPacketsRate":"1172.43","inboundPackets":"2548","inboundPacketsRate":"0.71","outboundPackets":"2555230","outboundPacketsRate":"709.79","internalPackets":"6441","internalPacketsRate":"1.79","throughPackets":"867774","throughPacketsRate":"241.05","sessions":"4594","sessionsRate":"1.28"}]},"originalUrl":"http://192.168.44.55:9999/?query=SELECT common_app_label AS app_label, SUM(common_c2s_byte_num + common_s2c_byte_num) AS total_bytes, SUM(traffic_inbound_byte) AS inbound_bytes, SUM(traffic_outbound_byte) AS outbound_bytes, SUM(traffic_internal_byte) AS internal_bytes, SUM(traffic_through_byte) AS through_bytes, SUM(common_c2s_pkt_num + common_s2c_pkt_num) AS total_packets, SUM(traffic_inbound_pkt) AS inbound_packets, SUM(traffic_outbound_pkt) AS outbound_packets, SUM(traffic_internal_pkt) AS internal_packets, SUM(traffic_through_pkt) AS through_packets, SUM(common_sessions) AS sessions FROM metric_application WHERE stat_time >= toDateTime(1677224704)-3600 AND stat_time < toDateTime(1677228304)-3600 AND app_label IN ( 'douyin','wechat','kuaishou','alibaba_cloud','bmff','netease_cloud_music','qq_web','wtls','bytedance','toutiao','pinduoduo','http2','baidu','netease','flash','kugou','sina_weibo','xiaomi','cibn','bittorrent','appstore','windows_update','iqiyi','ixigua','uc_browser','tencent','jingdong','iperf','office365','alibaba_group','experion','youku','xiaohongshu','taobao','uplive','qqvideo','mitalk','mpegts','huawei','bilibili','chinanetcenter','mango_tv','gaode_map','speedtest','ultrasurf','163com','mgcp','wsp','ximalaya','meitu' ) GROUP BY app_label&format=json&option=real-time","msg":"OK"}} +const mockGetScore = { status: 200, "data": {"status":200,"code":200,"queryKey":"77d0d2e9b63bd4d3e72e146d07bfeea1","success":true,"message":null,"statistics":{"elapsed":23,"rows_read":12982,"bytes_read":1667860,"result_size":13245,"result_rows":50},"job":null,"formatType":"json","meta":[{"name":"app_label","type":"string","category":"Dimension"},{"name":"total_bytes","type":"long","category":"Metric"},{"name":"inbound_bytes","type":"long","category":"Metric"},{"name":"outbound_bytes","type":"long","category":"Metric"},{"name":"internal_bytes","type":"long","category":"Metric"},{"name":"through_bytes","type":"long","category":"Metric"},{"name":"total_packets","type":"long","category":"Metric"},{"name":"inbound_packets","type":"long","category":"Metric"},{"name":"outbound_packets","type":"long","category":"Metric"},{"name":"internal_packets","type":"long","category":"Metric"},{"name":"through_packets","type":"long","category":"Metric"},{"name":"sessions","type":"long","category":"Metric"}],"data":{"resultType":"table","result":[{"appLabel":"douyin","totalBytes":"50624733433","totalBitsRate":1.124994076E8,"inboundBytes":"1204941976","inboundBitsRate":2677648.8,"outboundBytes":"35887241401","outboundBitsRate":7.974942536E7,"internalBytes":"2789130","internalBitsRate":6198.08,"throughBytes":"12642099915","throughBitsRate":2.809355536E7,"totalPackets":"46466984","totalPacketsRate":"12907.50","inboundPackets":"871844","inboundPacketsRate":"242.18","outboundPackets":"25374762","outboundPacketsRate":"7048.55","internalPackets":"2803","internalPacketsRate":"0.78","throughPackets":"11517730","throughPacketsRate":"3199.37","sessions":"45706","sessionsRate":"12.70"},{"appLabel":"wechat","totalBytes":"20919373476","totalBitsRate":4.648749664E7,"inboundBytes":"73843595","inboundBitsRate":164096.88,"outboundBytes":"15167284551","outboundBitsRate":3.37050768E7,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"5171476770","throughBitsRate":1.149217064E7,"totalPackets":"23940211","totalPacketsRate":"6650.06","inboundPackets":"79706","inboundPacketsRate":"22.14","outboundPackets":"12259884","outboundPacketsRate":"3405.52","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"5928492","throughPacketsRate":"1646.80","sessions":"16014","sessionsRate":"4.45"},{"appLabel":"kuaishou","totalBytes":"13281819479","totalBitsRate":2.95151544E7,"inboundBytes":"262265833","inboundBitsRate":582812.96,"outboundBytes":"9673114377","outboundBitsRate":2.149580976E7,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"3192792324","throughBitsRate":7095094.08,"totalPackets":"12128353","totalPacketsRate":"3368.99","inboundPackets":"176498","inboundPacketsRate":"49.03","outboundPackets":"6927629","outboundPacketsRate":"1924.34","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"2898775","throughPacketsRate":"805.22","sessions":"9089","sessionsRate":"2.52"},{"appLabel":"alibaba_cloud","totalBytes":"6260272949","totalBitsRate":1.391171768E7,"inboundBytes":"3659396643","inboundBitsRate":8131992.56,"outboundBytes":"1844626448","outboundBitsRate":4099169.92,"internalBytes":"3402132","internalBitsRate":7560.32,"throughBytes":"487931658","throughBitsRate":1084292.56,"totalPackets":"6763142","totalPacketsRate":"1878.65","inboundPackets":"2605792","inboundPacketsRate":"723.83","outboundPackets":"1387989","outboundPacketsRate":"385.55","internalPackets":"4365","internalPacketsRate":"1.21","throughPackets":"483692","throughPacketsRate":"134.36","sessions":"35395","sessionsRate":"9.83"},{"appLabel":"bmff","totalBytes":"4857946055","totalBitsRate":1.079543568E7,"inboundBytes":"414403743","inboundBitsRate":920897.2,"outboundBytes":"3204382609","outboundBitsRate":7120850.24,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"1186687742","throughBitsRate":2637083.84,"totalPackets":"4362910","totalPacketsRate":"1211.92","inboundPackets":"276931","inboundPacketsRate":"76.93","outboundPackets":"2276956","outboundPacketsRate":"632.49","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"1048200","throughPacketsRate":"291.17","sessions":"3177","sessionsRate":"0.88"},{"appLabel":"netease_cloud_music","totalBytes":"4564497644","totalBitsRate":1.014332808E7,"inboundBytes":"3044333","inboundBitsRate":6765.2,"outboundBytes":"3617099815","outboundBitsRate":8037999.6,"internalBytes":"4258810","internalBitsRate":9464.0,"throughBytes":"879976945","throughBitsRate":1955504.32,"totalPackets":"4262388","totalPacketsRate":"1184.00","inboundPackets":"2518","inboundPacketsRate":"0.70","outboundPackets":"2614649","outboundPacketsRate":"726.29","internalPackets":"3697","internalPacketsRate":"1.03","throughPackets":"829568","throughPacketsRate":"230.44","sessions":"5181","sessionsRate":"1.44"},{"appLabel":"qq_web","totalBytes":"2451383151","totalBitsRate":5447518.08,"inboundBytes":"705716306","inboundBitsRate":1568258.48,"outboundBytes":"1291001120","outboundBitsRate":2868891.36,"internalBytes":"133388","internalBitsRate":296.4,"throughBytes":"402854851","throughBitsRate":895233.04,"totalPackets":"2811324","totalPacketsRate":"780.92","inboundPackets":"553341","inboundPacketsRate":"153.71","outboundPackets":"1052282","outboundPacketsRate":"292.30","internalPackets":"107","internalPacketsRate":"0.03","throughPackets":"478568","throughPacketsRate":"132.94","sessions":"6885","sessionsRate":"1.91"},{"appLabel":"wtls","totalBytes":"2248150853","totalBitsRate":4995890.8,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"1655250173","outboundBitsRate":3678333.68,"internalBytes":"244","internalBitsRate":0.56,"throughBytes":"576300158","throughBitsRate":1280667.04,"totalPackets":"1912615","totalPacketsRate":"531.28","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"1209136","outboundPacketsRate":"335.87","internalPackets":"2","internalPacketsRate":"0.00","throughPackets":"480395","throughPacketsRate":"133.44","sessions":"1273","sessionsRate":"0.35"},{"appLabel":"bytedance","totalBytes":"2051134594","totalBitsRate":4558076.88,"inboundBytes":"254395097","inboundBitsRate":565322.4,"outboundBytes":"668636670","outboundBitsRate":1485859.28,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"139560912","throughBitsRate":310135.36,"totalPackets":"2508840","totalPacketsRate":"696.90","inboundPackets":"462707","inboundPacketsRate":"128.53","outboundPackets":"581636","outboundPacketsRate":"161.57","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"178647","throughPacketsRate":"49.62","sessions":"17946","sessionsRate":"4.99"},{"appLabel":"toutiao","totalBytes":"2023904833","totalBitsRate":4497566.32,"inboundBytes":"423430","inboundBitsRate":940.96,"outboundBytes":"1742110045","outboundBitsRate":3871355.68,"internalBytes":"984141","internalBitsRate":2186.96,"throughBytes":"248008471","throughBitsRate":551129.92,"totalPackets":"1908380","totalPacketsRate":"530.11","inboundPackets":"1131","inboundPacketsRate":"0.31","outboundPackets":"1257274","outboundPacketsRate":"349.24","internalPackets":"827","internalPacketsRate":"0.23","throughPackets":"244304","throughPacketsRate":"67.86","sessions":"4374","sessionsRate":"1.22"},{"appLabel":"pinduoduo","totalBytes":"1954264555","totalBitsRate":4342810.16,"inboundBytes":"336165340","inboundBitsRate":747034.08,"outboundBytes":"1109222935","outboundBitsRate":2464939.84,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"475553831","throughBitsRate":1056786.32,"totalPackets":"2090382","totalPacketsRate":"580.66","inboundPackets":"260141","inboundPacketsRate":"72.26","outboundPackets":"798376","outboundPacketsRate":"221.77","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"533067","throughPacketsRate":"148.07","sessions":"1596","sessionsRate":"0.44"},{"appLabel":"http2","totalBytes":"1759813825","totalBitsRate":3910697.36,"inboundBytes":"2543539","inboundBitsRate":5652.32,"outboundBytes":"1106519638","outboundBitsRate":2458932.56,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"584755149","throughBitsRate":1299455.92,"totalPackets":"1752374","totalPacketsRate":"486.77","inboundPackets":"3379","inboundPacketsRate":"0.94","outboundPackets":"915229","outboundPacketsRate":"254.23","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"540387","throughPacketsRate":"150.11","sessions":"14367","sessionsRate":"3.99"},{"appLabel":"baidu","totalBytes":"1339686054","totalBitsRate":2977080.16,"inboundBytes":"186110015","inboundBitsRate":413577.84,"outboundBytes":"890128117","outboundBitsRate":1978062.48,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"209861680","throughBitsRate":466359.28,"totalPackets":"1501594","totalPacketsRate":"417.11","inboundPackets":"139375","inboundPacketsRate":"38.72","outboundPackets":"717276","outboundPacketsRate":"199.24","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"253324","throughPacketsRate":"70.37","sessions":"13250","sessionsRate":"3.68"},{"appLabel":"netease","totalBytes":"1224762446","totalBitsRate":2721694.32,"inboundBytes":"40540614","inboundBitsRate":90090.24,"outboundBytes":"980457929","outboundBitsRate":2178795.36,"internalBytes":"903874","internalBitsRate":2008.64,"throughBytes":"187143592","throughBitsRate":415874.64,"totalPackets":"1111708","totalPacketsRate":"308.81","inboundPackets":"28342","inboundPacketsRate":"7.87","outboundPackets":"694818","outboundPacketsRate":"193.01","internalPackets":"719","internalPacketsRate":"0.20","throughPackets":"171007","throughPacketsRate":"47.50","sessions":"1220","sessionsRate":"0.34"},{"appLabel":"flash","totalBytes":"1134229270","totalBitsRate":2520509.52,"inboundBytes":"149451377","inboundBitsRate":332114.16,"outboundBytes":"735950813","outboundBitsRate":1635446.24,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"229582787","throughBitsRate":510184.0,"totalPackets":"1187023","totalPacketsRate":"329.73","inboundPackets":"109549","inboundPacketsRate":"30.43","outboundPackets":"540609","outboundPacketsRate":"150.17","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"224198","throughPacketsRate":"62.28","sessions":"449","sessionsRate":"0.12"},{"appLabel":"kugou","totalBytes":"1030786799","totalBitsRate":2290637.36,"inboundBytes":"2585713","inboundBitsRate":5746.0,"outboundBytes":"809956353","outboundBitsRate":1799903.04,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"200172666","throughBitsRate":444828.16,"totalPackets":"983906","totalPacketsRate":"273.31","inboundPackets":"2837","inboundPacketsRate":"0.79","outboundPackets":"596039","outboundPacketsRate":"165.57","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"191331","throughPacketsRate":"53.15","sessions":"3229","sessionsRate":"0.90"},{"appLabel":"sina_weibo","totalBytes":"866362751","totalBitsRate":1925250.56,"inboundBytes":"187024","inboundBitsRate":415.6,"outboundBytes":"703508675","outboundBitsRate":1563352.64,"internalBytes":"12918952","internalBitsRate":28708.8,"throughBytes":"138589508","throughBitsRate":307976.72,"totalPackets":"803745","totalPacketsRate":"223.26","inboundPackets":"245","inboundPacketsRate":"0.07","outboundPackets":"523788","outboundPacketsRate":"145.50","internalPackets":"10081","internalPacketsRate":"2.80","throughPackets":"125472","throughPacketsRate":"34.85","sessions":"1592","sessionsRate":"0.44"},{"appLabel":"xiaomi","totalBytes":"792513612","totalBitsRate":1761141.36,"inboundBytes":"1666853","inboundBitsRate":3704.08,"outboundBytes":"377105033","outboundBitsRate":838011.2,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"405236473","throughBitsRate":900525.52,"totalPackets":"719697","totalPacketsRate":"199.92","inboundPackets":"2291","inboundPacketsRate":"0.64","outboundPackets":"264915","outboundPacketsRate":"73.59","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"335898","throughPacketsRate":"93.31","sessions":"709","sessionsRate":"0.20"},{"appLabel":"cibn","totalBytes":"750501371","totalBitsRate":1667780.8,"inboundBytes":"55019686","inboundBitsRate":122266.0,"outboundBytes":"90522668","outboundBitsRate":201161.52,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"602608050","throughBitsRate":1339129.04,"totalPackets":"786128","totalPacketsRate":"218.37","inboundPackets":"38054","inboundPacketsRate":"10.57","outboundPackets":"62553","outboundPacketsRate":"17.38","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"650840","throughPacketsRate":"180.79","sessions":"136","sessionsRate":"0.04"},{"appLabel":"bittorrent","totalBytes":"674727044","totalBitsRate":1499393.44,"inboundBytes":"3166699","inboundBitsRate":7037.12,"outboundBytes":"412096280","outboundBitsRate":915769.52,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"248419157","throughBitsRate":552042.56,"totalPackets":"583427","totalPacketsRate":"162.06","inboundPackets":"4741","inboundPacketsRate":"1.32","outboundPackets":"305131","outboundPacketsRate":"84.76","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"206428","throughPacketsRate":"57.34","sessions":"1582","sessionsRate":"0.44"},{"appLabel":"appstore","totalBytes":"667673983","totalBitsRate":1483720.0,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"666787878","outboundBitsRate":1481750.88,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"886105","throughBitsRate":1969.12,"totalPackets":"469090","totalPacketsRate":"130.30","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"468426","outboundPacketsRate":"130.12","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"664","throughPacketsRate":"0.18","sessions":"6","sessionsRate":"0.00"},{"appLabel":"windows_update","totalBytes":"657572440","totalBitsRate":1461272.08,"inboundBytes":"568832","inboundBitsRate":1264.08,"outboundBytes":"510040588","outboundBitsRate":1133423.52,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"136756307","throughBitsRate":303902.88,"totalPackets":"635970","totalPacketsRate":"176.66","inboundPackets":"779","inboundPacketsRate":"0.22","outboundPackets":"357347","outboundPacketsRate":"99.26","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"134692","throughPacketsRate":"37.41","sessions":"186","sessionsRate":"0.05"},{"appLabel":"iqiyi","totalBytes":"634336744","totalBitsRate":1409637.2,"inboundBytes":"3315323","inboundBitsRate":7367.36,"outboundBytes":"443953172","outboundBitsRate":986562.64,"internalBytes":"6887795","internalBitsRate":15306.24,"throughBytes":"173885015","throughBitsRate":386411.12,"totalPackets":"559880","totalPacketsRate":"155.52","inboundPackets":"3013","inboundPacketsRate":"0.84","outboundPackets":"309884","outboundPacketsRate":"86.08","internalPackets":"9116","internalPacketsRate":"2.53","throughPackets":"146651","throughPacketsRate":"40.74","sessions":"494","sessionsRate":"0.14"},{"appLabel":"ixigua","totalBytes":"609700001","totalBitsRate":1354888.88,"inboundBytes":"178016","inboundBitsRate":395.6,"outboundBytes":"488956834","outboundBitsRate":1086570.72,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"109102690","throughBitsRate":242450.4,"totalPackets":"614785","totalPacketsRate":"170.77","inboundPackets":"335","inboundPacketsRate":"0.09","outboundPackets":"369820","outboundPacketsRate":"102.73","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"125438","throughPacketsRate":"34.84","sessions":"1682","sessionsRate":"0.47"},{"appLabel":"uc_browser","totalBytes":"603992702","totalBitsRate":1342206.0,"inboundBytes":"3125867","inboundBitsRate":6946.4,"outboundBytes":"473205707","outboundBitsRate":1051568.24,"internalBytes":"903955","internalBitsRate":2008.8,"throughBytes":"118881743","throughBitsRate":264181.68,"totalPackets":"561646","totalPacketsRate":"156.01","inboundPackets":"2203","inboundPacketsRate":"0.61","outboundPackets":"338724","outboundPacketsRate":"94.09","internalPackets":"707","internalPacketsRate":"0.20","throughPackets":"114750","throughPacketsRate":"31.88","sessions":"673","sessionsRate":"0.19"},{"appLabel":"tencent","totalBytes":"554584271","totalBitsRate":1232409.52,"inboundBytes":"540698947","inboundBitsRate":1201553.2,"outboundBytes":"38356","outboundBitsRate":85.2,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"105761","throughBitsRate":235.04,"totalPackets":"632137","totalPacketsRate":"175.59","inboundPackets":"403224","inboundPacketsRate":"112.01","outboundPackets":"56","outboundPacketsRate":"0.02","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"946","throughPacketsRate":"0.26","sessions":"107","sessionsRate":"0.03"},{"appLabel":"jingdong","totalBytes":"512735592","totalBitsRate":1139412.4,"inboundBytes":"5779511","inboundBitsRate":12843.36,"outboundBytes":"86248579","outboundBitsRate":191663.52,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"417920982","throughBitsRate":928713.28,"totalPackets":"468420","totalPacketsRate":"130.12","inboundPackets":"4209","inboundPacketsRate":"1.17","outboundPackets":"62558","outboundPacketsRate":"17.38","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"369628","throughPacketsRate":"102.67","sessions":"421","sessionsRate":"0.12"},{"appLabel":"iperf","totalBytes":"509418077","totalBitsRate":1132040.16,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"0","outboundBitsRate":0.0,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"509418077","throughBitsRate":1132040.16,"totalPackets":"460188","totalPacketsRate":"127.83","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"0","outboundPacketsRate":"0.00","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"460188","throughPacketsRate":"127.83","sessions":"151","sessionsRate":"0.04"},{"appLabel":"office365","totalBytes":"390609825","totalBitsRate":868021.84,"inboundBytes":"3039481","inboundBitsRate":6754.4,"outboundBytes":"382832576","outboundBitsRate":850739.04,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"362117","throughBitsRate":804.72,"totalPackets":"336314","totalPacketsRate":"93.42","inboundPackets":"2076","inboundPacketsRate":"0.58","outboundPackets":"268927","outboundPacketsRate":"74.70","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"1699","throughPacketsRate":"0.47","sessions":"102","sessionsRate":"0.03"},{"appLabel":"alibaba_group","totalBytes":"383779162","totalBitsRate":852842.56,"inboundBytes":"1393465","inboundBitsRate":3096.56,"outboundBytes":"308064868","outboundBitsRate":684588.56,"internalBytes":"8221","internalBitsRate":18.24,"throughBytes":"66861386","throughBitsRate":148580.88,"totalPackets":"362659","totalPacketsRate":"100.74","inboundPackets":"1623","inboundPacketsRate":"0.45","outboundPackets":"222833","outboundPacketsRate":"61.90","internalPackets":"52","internalPacketsRate":"0.01","throughPackets":"63301","throughPacketsRate":"17.58","sessions":"1257","sessionsRate":"0.35"},{"appLabel":"experion","totalBytes":"382263277","totalBitsRate":849473.92,"inboundBytes":"74","inboundBitsRate":0.16,"outboundBytes":"333620352","outboundBitsRate":741378.56,"internalBytes":"488","internalBitsRate":1.12,"throughBytes":"46502147","throughBitsRate":103338.08,"totalPackets":"299495","totalPacketsRate":"83.19","inboundPackets":"1","inboundPacketsRate":"0.00","outboundPackets":"238049","outboundPacketsRate":"66.12","internalPackets":"4","internalPacketsRate":"0.00","throughPackets":"36807","throughPacketsRate":"10.22","sessions":"214","sessionsRate":"0.06"},{"appLabel":"youku","totalBytes":"332888499","totalBitsRate":739752.24,"inboundBytes":"109318900","inboundBitsRate":242930.88,"outboundBytes":"190218998","outboundBitsRate":422708.88,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"14766089","throughBitsRate":32813.52,"totalPackets":"369460","totalPacketsRate":"102.63","inboundPackets":"79596","inboundPacketsRate":"22.11","outboundPackets":"140677","outboundPacketsRate":"39.08","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"16225","throughPacketsRate":"4.51","sessions":"1219","sessionsRate":"0.34"},{"appLabel":"xiaohongshu","totalBytes":"329017961","totalBitsRate":731151.04,"inboundBytes":"84656291","inboundBitsRate":188125.12,"outboundBytes":"180072456","outboundBitsRate":400161.04,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"57376612","throughBitsRate":127503.6,"totalPackets":"334096","totalPacketsRate":"92.80","inboundPackets":"56726","inboundPacketsRate":"15.76","outboundPackets":"126160","outboundPacketsRate":"35.04","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"54180","throughPacketsRate":"15.05","sessions":"523","sessionsRate":"0.15"},{"appLabel":"taobao","totalBytes":"322521705","totalBitsRate":716714.88,"inboundBytes":"7240743","inboundBitsRate":16090.56,"outboundBytes":"289900550","outboundBitsRate":644223.44,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"19036889","throughBitsRate":42304.16,"totalPackets":"353987","totalPacketsRate":"98.33","inboundPackets":"22822","inboundPacketsRate":"6.34","outboundPackets":"235827","outboundPacketsRate":"65.51","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"17995","throughPacketsRate":"5.00","sessions":"7922","sessionsRate":"2.20"},{"appLabel":"uplive","totalBytes":"319497338","totalBitsRate":709994.08,"inboundBytes":"145403","inboundBitsRate":323.12,"outboundBytes":"253122597","outboundBitsRate":562494.64,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"64021946","throughBitsRate":142270.96,"totalPackets":"267454","totalPacketsRate":"74.29","inboundPackets":"852","inboundPacketsRate":"0.24","outboundPackets":"184990","outboundPacketsRate":"51.39","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"53207","throughPacketsRate":"14.78","sessions":"397","sessionsRate":"0.11"},{"appLabel":"qqvideo","totalBytes":"261011700","totalBitsRate":580026.0,"inboundBytes":"21824521","inboundBitsRate":48498.96,"outboundBytes":"166801525","outboundBitsRate":370670.08,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"66044939","throughBitsRate":146766.56,"totalPackets":"296766","totalPacketsRate":"82.44","inboundPackets":"15654","inboundPacketsRate":"4.35","outboundPackets":"134021","outboundPacketsRate":"37.23","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"74815","throughPacketsRate":"20.78","sessions":"1848","sessionsRate":"0.51"},{"appLabel":"mitalk","totalBytes":"256460615","totalBitsRate":569912.48,"inboundBytes":"15010","inboundBitsRate":33.36,"outboundBytes":"221730653","outboundBitsRate":492734.8,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"31237402","throughBitsRate":69416.48,"totalPackets":"239019","totalPacketsRate":"66.39","inboundPackets":"41","inboundPacketsRate":"0.01","outboundPackets":"164309","outboundPacketsRate":"45.64","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"29856","throughPacketsRate":"8.29","sessions":"235","sessionsRate":"0.07"},{"appLabel":"mpegts","totalBytes":"240177701","totalBitsRate":533728.24,"inboundBytes":"94264892","inboundBitsRate":209477.52,"outboundBytes":"116506517","outboundBitsRate":258903.36,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"25996281","throughBitsRate":57769.52,"totalPackets":"219620","totalPacketsRate":"61.01","inboundPackets":"63270","inboundPacketsRate":"17.58","outboundPackets":"82878","outboundPacketsRate":"23.02","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"24853","throughPacketsRate":"6.90","sessions":"205","sessionsRate":"0.06"},{"appLabel":"huawei","totalBytes":"217927752","totalBitsRate":484283.92,"inboundBytes":"40669033","inboundBitsRate":90375.6,"outboundBytes":"105104982","outboundBitsRate":233566.64,"internalBytes":"40634","internalBitsRate":90.32,"throughBytes":"8303763","throughBitsRate":18452.8,"totalPackets":"214236","totalPacketsRate":"59.51","inboundPackets":"52307","inboundPacketsRate":"14.53","outboundPackets":"73804","outboundPacketsRate":"20.50","internalPackets":"141","internalPacketsRate":"0.04","throughPackets":"18411","throughPacketsRate":"5.11","sessions":"1917","sessionsRate":"0.53"},{"appLabel":"bilibili","totalBytes":"209385738","totalBitsRate":465301.68,"inboundBytes":"17559248","inboundBitsRate":39020.56,"outboundBytes":"146755753","outboundBitsRate":326123.92,"internalBytes":"1434","internalBitsRate":3.2,"throughBytes":"38452851","throughBitsRate":85450.8,"totalPackets":"230342","totalPacketsRate":"63.98","inboundPackets":"12366","inboundPacketsRate":"3.44","outboundPackets":"109089","outboundPacketsRate":"30.30","internalPackets":"9","internalPacketsRate":"0.00","throughPackets":"45415","throughPacketsRate":"12.62","sessions":"1810","sessionsRate":"0.50"},{"appLabel":"chinanetcenter","totalBytes":"193031109","totalBitsRate":428958.0,"inboundBytes":"44693377","inboundBitsRate":99318.64,"outboundBytes":"36075271","outboundBitsRate":80167.28,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"104666456","throughBitsRate":232592.16,"totalPackets":"274415","totalPacketsRate":"76.23","inboundPackets":"40215","inboundPacketsRate":"11.17","outboundPackets":"30133","outboundPacketsRate":"8.37","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"123918","throughPacketsRate":"34.42","sessions":"5859","sessionsRate":"1.63"},{"appLabel":"mango_tv","totalBytes":"181428006","totalBitsRate":403173.36,"inboundBytes":"61271","inboundBitsRate":136.16,"outboundBytes":"139326310","outboundBitsRate":309614.0,"internalBytes":"9127","internalBitsRate":20.32,"throughBytes":"39450723","throughBitsRate":87668.24,"totalPackets":"172129","totalPacketsRate":"47.81","inboundPackets":"122","inboundPacketsRate":"0.03","outboundPackets":"101193","outboundPacketsRate":"28.11","internalPackets":"20","internalPacketsRate":"0.01","throughPackets":"35629","throughPacketsRate":"9.90","sessions":"346","sessionsRate":"0.10"},{"appLabel":"gaode_map","totalBytes":"167103193","totalBitsRate":371340.4,"inboundBytes":"392888","inboundBitsRate":873.12,"outboundBytes":"148517888","outboundBitsRate":330039.76,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"15974966","throughBitsRate":35499.92,"totalPackets":"149543","totalPacketsRate":"41.54","inboundPackets":"570","inboundPacketsRate":"0.16","outboundPackets":"105677","outboundPacketsRate":"29.35","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"14870","throughPacketsRate":"4.13","sessions":"224","sessionsRate":"0.06"},{"appLabel":"speedtest","totalBytes":"166504309","totalBitsRate":370009.6,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"85946295","outboundBitsRate":190991.76,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"79557949","throughBitsRate":176795.44,"totalPackets":"137055","totalPacketsRate":"38.07","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"62990","outboundPacketsRate":"17.50","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"60719","throughPacketsRate":"16.87","sessions":"80","sessionsRate":"0.02"},{"appLabel":"ultrasurf","totalBytes":"151540564","totalBitsRate":336756.8,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"74632135","outboundBitsRate":165849.2,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"76201823","throughBitsRate":169337.36,"totalPackets":"127003","totalPacketsRate":"35.28","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"54808","outboundPacketsRate":"15.22","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"62565","throughPacketsRate":"17.38","sessions":"53","sessionsRate":"0.01"},{"appLabel":"163com","totalBytes":"144251719","totalBitsRate":320559.36,"inboundBytes":"132639","inboundBitsRate":294.72,"outboundBytes":"109746861","outboundBitsRate":243881.92,"internalBytes":"32908","internalBitsRate":73.12,"throughBytes":"32402954","throughBitsRate":72006.56,"totalPackets":"137900","totalPacketsRate":"38.31","inboundPackets":"147","inboundPacketsRate":"0.04","outboundPackets":"78282","outboundPacketsRate":"21.75","internalPackets":"38","internalPacketsRate":"0.01","throughPackets":"32056","throughPacketsRate":"8.90","sessions":"112","sessionsRate":"0.03"},{"appLabel":"mgcp","totalBytes":"130272416","totalBitsRate":289494.24,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"85646058","outboundBitsRate":190324.56,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"43918252","throughBitsRate":97596.08,"totalPackets":"97461","totalPacketsRate":"27.07","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"59411","outboundPacketsRate":"16.50","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"30641","throughPacketsRate":"8.51","sessions":"33","sessionsRate":"0.01"},{"appLabel":"wsp","totalBytes":"125198956","totalBitsRate":278219.92,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"83062294","outboundBitsRate":184582.88,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"41350210","throughBitsRate":91889.36,"totalPackets":"101300","totalPacketsRate":"28.14","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"58770","outboundPacketsRate":"16.33","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"33488","throughPacketsRate":"9.30","sessions":"58","sessionsRate":"0.02"},{"appLabel":"ximalaya","totalBytes":"121963288","totalBitsRate":271029.52,"inboundBytes":"34072127","inboundBitsRate":75715.84,"outboundBytes":"54245965","outboundBitsRate":120546.56,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"32284138","throughBitsRate":71742.56,"totalPackets":"127986","totalPacketsRate":"35.55","inboundPackets":"22899","inboundPacketsRate":"6.36","outboundPackets":"49106","outboundPacketsRate":"13.64","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"35569","throughPacketsRate":"9.88","sessions":"172","sessionsRate":"0.05"},{"appLabel":"meitu","totalBytes":"116354224","totalBitsRate":258564.96,"inboundBytes":"12047","inboundBitsRate":26.8,"outboundBytes":"99353700","outboundBitsRate":220786.0,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"14812305","throughBitsRate":32916.24,"totalPackets":"115677","totalPacketsRate":"32.13","inboundPackets":"14","inboundPacketsRate":"0.00","outboundPackets":"69834","outboundPacketsRate":"19.40","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"13805","throughPacketsRate":"3.83","sessions":"124","sessionsRate":"0.03"}]},"originalUrl":"http://192.168.44.55:9999/?query=SELECT common_app_label AS app_label, SUM(common_c2s_byte_num + common_s2c_byte_num) AS total_bytes, SUM(traffic_inbound_byte) AS inbound_bytes, SUM(traffic_outbound_byte) AS outbound_bytes, SUM(traffic_internal_byte) AS internal_bytes, SUM(traffic_through_byte) AS through_bytes, SUM(common_c2s_pkt_num + common_s2c_pkt_num) AS total_packets, SUM(traffic_inbound_pkt) AS inbound_packets, SUM(traffic_outbound_pkt) AS outbound_packets, SUM(traffic_internal_pkt) AS internal_packets, SUM(traffic_through_pkt) AS through_packets, SUM(common_sessions) AS sessions FROM metric_application WHERE stat_time >= toDateTime(1677224704) AND stat_time < toDateTime(1677228304) AND notEmpty(app_label) GROUP BY app_label ORDER BY total_bytes desc LIMIT 50 &format=json&option=real-time","msg":"OK"}} +const mockGetScoreCycle = { status: 200, "data": {"status":200,"code":200,"queryKey":"fd4b26ecb44c18b30d5cc63b6fddfc87","success":true,"message":null,"statistics":{"elapsed":3,"rows_read":8192,"bytes_read":1052435,"result_size":13243,"result_rows":50},"job":null,"formatType":"json","meta":[{"name":"app_label","type":"string","category":"Dimension"},{"name":"total_bytes","type":"long","category":"Metric"},{"name":"inbound_bytes","type":"long","category":"Metric"},{"name":"outbound_bytes","type":"long","category":"Metric"},{"name":"internal_bytes","type":"long","category":"Metric"},{"name":"through_bytes","type":"long","category":"Metric"},{"name":"total_packets","type":"long","category":"Metric"},{"name":"inbound_packets","type":"long","category":"Metric"},{"name":"outbound_packets","type":"long","category":"Metric"},{"name":"internal_packets","type":"long","category":"Metric"},{"name":"through_packets","type":"long","category":"Metric"},{"name":"sessions","type":"long","category":"Metric"}],"data":{"resultType":"table","result":[{"appLabel":"qqvideo","totalBytes":"234195476","totalBitsRate":520434.4,"inboundBytes":"9412019","inboundBitsRate":20915.6,"outboundBytes":"166706755","outboundBitsRate":370459.44,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"52130610","throughBitsRate":115845.84,"totalPackets":"280663","totalPacketsRate":"77.96","inboundPackets":"6859","inboundPacketsRate":"1.91","outboundPackets":"135979","outboundPacketsRate":"37.77","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"70773","throughPacketsRate":"19.66","sessions":"1955","sessionsRate":"0.54"},{"appLabel":"uplive","totalBytes":"230991174","totalBitsRate":513313.76,"inboundBytes":"113277","inboundBitsRate":251.76,"outboundBytes":"189550620","outboundBitsRate":421223.6,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"39736450","throughBitsRate":88303.2,"totalPackets":"190429","totalPacketsRate":"52.90","inboundPackets":"825","inboundPacketsRate":"0.23","outboundPackets":"137922","outboundPacketsRate":"38.31","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"32741","throughPacketsRate":"9.09","sessions":"378","sessionsRate":"0.11"},{"appLabel":"experion","totalBytes":"491014216","totalBitsRate":1091142.72,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"433991143","outboundBitsRate":964424.8,"internalBytes":"244","internalBitsRate":0.56,"throughBytes":"53212676","throughBitsRate":118250.4,"totalPackets":"403752","totalPacketsRate":"112.15","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"315145","outboundPacketsRate":"87.54","internalPackets":"2","internalPacketsRate":"0.00","throughPackets":"42875","throughPacketsRate":"11.91","sessions":"248","sessionsRate":"0.07"},{"appLabel":"xiaomi","totalBytes":"651103114","totalBitsRate":1446895.84,"inboundBytes":"2485299","inboundBitsRate":5522.88,"outboundBytes":"524581871","outboundBitsRate":1165737.52,"internalBytes":"5716","internalBitsRate":12.72,"throughBytes":"113642814","throughBitsRate":252539.6,"totalPackets":"612399","totalPacketsRate":"170.11","inboundPackets":"3049","inboundPacketsRate":"0.85","outboundPackets":"365920","outboundPacketsRate":"101.64","internalPackets":"18","internalPacketsRate":"0.01","throughPackets":"108229","throughPacketsRate":"30.06","sessions":"814","sessionsRate":"0.23"},{"appLabel":"qq_web","totalBytes":"2941886476","totalBitsRate":6537525.52,"inboundBytes":"767969810","inboundBitsRate":1706599.6,"outboundBytes":"1691846972","outboundBitsRate":3759659.92,"internalBytes":"514968","internalBitsRate":1144.4,"throughBytes":"416504962","throughBitsRate":925566.56,"totalPackets":"3315391","totalPacketsRate":"920.94","inboundPackets":"587599","inboundPacketsRate":"163.22","outboundPackets":"1341908","outboundPacketsRate":"372.75","internalPackets":"394","internalPacketsRate":"0.11","throughPackets":"471886","throughPacketsRate":"131.08","sessions":"7323","sessionsRate":"2.03"},{"appLabel":"mpegts","totalBytes":"253158294","totalBitsRate":562574.0,"inboundBytes":"55484613","inboundBitsRate":123299.12,"outboundBytes":"175278823","outboundBitsRate":389508.48,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"18382691","throughBitsRate":40850.4,"totalPackets":"242010","totalPacketsRate":"67.23","inboundPackets":"37566","inboundPacketsRate":"10.44","outboundPackets":"124536","outboundPacketsRate":"34.59","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"17499","throughPacketsRate":"4.86","sessions":"174","sessionsRate":"0.05"},{"appLabel":"wtls","totalBytes":"1943189046","totalBitsRate":4318197.92,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"1604904130","outboundBitsRate":3566453.6,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"324762296","throughBitsRate":721694.0,"totalPackets":"1621151","totalPacketsRate":"450.32","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"1168835","outboundPacketsRate":"324.68","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"274814","throughPacketsRate":"76.34","sessions":"1290","sessionsRate":"0.36"},{"appLabel":"wsp","totalBytes":"50493969","totalBitsRate":112208.8,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"42925964","outboundBitsRate":95391.04,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"7109194","throughBitsRate":15798.24,"totalPackets":"43861","totalPacketsRate":"12.18","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"31497","outboundPacketsRate":"8.75","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"6193","throughPacketsRate":"1.72","sessions":"45","sessionsRate":"0.01"},{"appLabel":"kuaishou","totalBytes":"13004649950","totalBitsRate":2.889922208E7,"inboundBytes":"326041541","inboundBitsRate":724536.72,"outboundBytes":"9655810160","outboundBitsRate":2.145735592E7,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"2866096564","throughBitsRate":6369103.44,"totalPackets":"11986759","totalPacketsRate":"3329.66","inboundPackets":"219911","inboundPacketsRate":"61.09","outboundPackets":"6916619","outboundPacketsRate":"1921.28","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"2690235","throughPacketsRate":"747.29","sessions":"9359","sessionsRate":"2.60"},{"appLabel":"iperf","totalBytes":"704877256","totalBitsRate":1566393.92,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"0","outboundBitsRate":0.0,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"704877256","throughBitsRate":1566393.92,"totalPackets":"622147","totalPacketsRate":"172.82","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"0","outboundPacketsRate":"0.00","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"622147","throughPacketsRate":"172.82","sessions":"183","sessionsRate":"0.05"},{"appLabel":"mango_tv","totalBytes":"470492999","totalBitsRate":1045540.0,"inboundBytes":"47936","inboundBitsRate":106.56,"outboundBytes":"154302754","outboundBitsRate":342895.04,"internalBytes":"56640","internalBitsRate":125.84,"throughBytes":"313145243","throughBitsRate":695878.32,"totalPackets":"429583","totalPacketsRate":"119.33","inboundPackets":"140","inboundPacketsRate":"0.04","outboundPackets":"110572","outboundPacketsRate":"30.71","internalPackets":"62","internalPacketsRate":"0.02","throughPackets":"278782","throughPacketsRate":"77.44","sessions":"356","sessionsRate":"0.10"},{"appLabel":"youku","totalBytes":"339146193","totalBitsRate":753658.24,"inboundBytes":"54037268","inboundBitsRate":120082.8,"outboundBytes":"144264774","outboundBitsRate":320588.4,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"132029010","throughBitsRate":293397.84,"totalPackets":"324542","totalPacketsRate":"90.15","inboundPackets":"40543","inboundPacketsRate":"11.26","outboundPackets":"107155","outboundPacketsRate":"29.77","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"112408","throughPacketsRate":"31.22","sessions":"1675","sessionsRate":"0.47"},{"appLabel":"huawei","totalBytes":"375820331","totalBitsRate":835156.32,"inboundBytes":"23656227","inboundBitsRate":52569.36,"outboundBytes":"273929425","outboundBitsRate":608732.08,"internalBytes":"31032","internalBitsRate":68.96,"throughBytes":"8611888","throughBitsRate":19137.52,"totalPackets":"455593","totalPacketsRate":"126.55","inboundPackets":"39808","inboundPacketsRate":"11.06","outboundPackets":"187660","outboundPacketsRate":"52.13","internalPackets":"108","internalPacketsRate":"0.03","throughPackets":"34316","throughPacketsRate":"9.53","sessions":"1913","sessionsRate":"0.53"},{"appLabel":"ximalaya","totalBytes":"116145452","totalBitsRate":258101.04,"inboundBytes":"22747626","inboundBitsRate":50550.32,"outboundBytes":"38179332","outboundBitsRate":84842.96,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"54127569","throughBitsRate":120283.52,"totalPackets":"122777","totalPacketsRate":"34.10","inboundPackets":"15244","inboundPacketsRate":"4.23","outboundPackets":"38237","outboundPacketsRate":"10.62","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"53078","throughPacketsRate":"14.74","sessions":"231","sessionsRate":"0.06"},{"appLabel":"bilibili","totalBytes":"222837987","totalBitsRate":495195.52,"inboundBytes":"19694384","inboundBitsRate":43765.28,"outboundBytes":"155247678","outboundBitsRate":344994.88,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"41117062","throughBitsRate":91371.28,"totalPackets":"255979","totalPacketsRate":"71.11","inboundPackets":"17926","inboundPacketsRate":"4.98","outboundPackets":"114636","outboundPacketsRate":"31.84","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"46923","throughPacketsRate":"13.03","sessions":"1674","sessionsRate":"0.47"},{"appLabel":"ixigua","totalBytes":"434334163","totalBitsRate":965187.04,"inboundBytes":"117269","inboundBitsRate":260.56,"outboundBytes":"336668661","outboundBitsRate":748152.56,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"86360871","throughBitsRate":191913.04,"totalPackets":"456543","totalPacketsRate":"126.82","inboundPackets":"985","inboundPacketsRate":"0.27","outboundPackets":"248902","outboundPacketsRate":"69.14","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"100787","throughPacketsRate":"28.00","sessions":"1842","sessionsRate":"0.51"},{"appLabel":"mitalk","totalBytes":"112472001","totalBitsRate":249937.76,"inboundBytes":"33711","inboundBitsRate":74.88,"outboundBytes":"89460972","outboundBitsRate":198802.16,"internalBytes":"158139","internalBitsRate":351.44,"throughBytes":"21567403","throughBitsRate":47927.6,"totalPackets":"98729","totalPacketsRate":"27.42","inboundPackets":"40","inboundPacketsRate":"0.01","outboundPackets":"66486","outboundPacketsRate":"18.47","internalPackets":"141","internalPacketsRate":"0.04","throughPackets":"18259","throughPacketsRate":"5.07","sessions":"237","sessionsRate":"0.07"},{"appLabel":"163com","totalBytes":"293758306","totalBitsRate":652796.24,"inboundBytes":"7403","inboundBitsRate":16.48,"outboundBytes":"219360017","outboundBitsRate":487466.72,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"71192103","throughBitsRate":158204.64,"totalPackets":"265667","totalPacketsRate":"73.80","inboundPackets":"30","inboundPacketsRate":"0.01","outboundPackets":"156443","outboundPacketsRate":"43.46","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"64538","throughPacketsRate":"17.93","sessions":"138","sessionsRate":"0.04"},{"appLabel":"meitu","totalBytes":"133888381","totalBitsRate":297529.76,"inboundBytes":"297638","inboundBitsRate":661.44,"outboundBytes":"114480431","outboundBitsRate":254400.96,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"17287906","throughBitsRate":38417.6,"totalPackets":"122026","totalPacketsRate":"33.90","inboundPackets":"224","inboundPacketsRate":"0.06","outboundPackets":"81339","outboundPacketsRate":"22.59","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"15729","throughPacketsRate":"4.37","sessions":"120","sessionsRate":"0.03"},{"appLabel":"tencent","totalBytes":"120111705","totalBitsRate":266914.88,"inboundBytes":"114796854","inboundBitsRate":255104.16,"outboundBytes":"6963","outboundBitsRate":15.44,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"83154","throughBitsRate":184.8,"totalPackets":"165503","totalPacketsRate":"45.97","inboundPackets":"88683","inboundPacketsRate":"24.63","outboundPackets":"7","outboundPacketsRate":"0.00","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"669","throughPacketsRate":"0.19","sessions":"98","sessionsRate":"0.03"},{"appLabel":"netease","totalBytes":"1134901047","totalBitsRate":2522002.32,"inboundBytes":"35986749","inboundBitsRate":79970.56,"outboundBytes":"814970389","outboundBitsRate":1811045.28,"internalBytes":"49075","internalBitsRate":109.04,"throughBytes":"269451423","throughBitsRate":598780.96,"totalPackets":"1053971","totalPacketsRate":"292.77","inboundPackets":"25157","inboundPacketsRate":"6.99","outboundPackets":"579077","outboundPacketsRate":"160.85","internalPackets":"82","internalPacketsRate":"0.02","throughPackets":"255339","throughPacketsRate":"70.93","sessions":"1113","sessionsRate":"0.31"},{"appLabel":"http2","totalBytes":"3099353144","totalBitsRate":6887451.44,"inboundBytes":"2162517","inboundBitsRate":4805.6,"outboundBytes":"2490998598","outboundBitsRate":5535552.48,"internalBytes":"37365","internalBitsRate":83.04,"throughBytes":"528920887","throughBitsRate":1175379.76,"totalPackets":"2794261","totalPacketsRate":"776.18","inboundPackets":"18554","inboundPacketsRate":"5.15","outboundPackets":"1929819","outboundPacketsRate":"536.06","internalPackets":"88","internalPacketsRate":"0.02","throughPackets":"503614","throughPacketsRate":"139.89","sessions":"15195","sessionsRate":"4.22"},{"appLabel":"flash","totalBytes":"1615414363","totalBitsRate":3589809.68,"inboundBytes":"148600251","inboundBitsRate":330222.8,"outboundBytes":"1338376664","outboundBitsRate":2974170.4,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"105850697","throughBitsRate":235223.76,"totalPackets":"1534235","totalPacketsRate":"426.18","inboundPackets":"108812","inboundPacketsRate":"30.23","outboundPackets":"961609","outboundPacketsRate":"267.11","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"107232","throughPacketsRate":"29.79","sessions":"289","sessionsRate":"0.08"},{"appLabel":"mgcp","totalBytes":"40103471","totalBitsRate":89118.8,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"15198209","outboundBitsRate":33773.76,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"24777140","throughBitsRate":55060.32,"totalPackets":"29836","totalPacketsRate":"8.29","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"10631","outboundPacketsRate":"2.95","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"17682","throughPacketsRate":"4.91","sessions":"13","sessionsRate":"0.00"},{"appLabel":"jingdong","totalBytes":"479292527","totalBitsRate":1065094.48,"inboundBytes":"5173486","inboundBitsRate":11496.64,"outboundBytes":"89789742","outboundBitsRate":199532.8,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"381703671","throughBitsRate":848230.4,"totalPackets":"431533","totalPacketsRate":"119.87","inboundPackets":"3871","inboundPacketsRate":"1.08","outboundPackets":"64871","outboundPacketsRate":"18.02","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"333010","throughPacketsRate":"92.50","sessions":"402","sessionsRate":"0.11"},{"appLabel":"douyin","totalBytes":"50992592835","totalBitsRate":1.1331687296E8,"inboundBytes":"1650581268","inboundBitsRate":3667958.4,"outboundBytes":"36516418605","outboundBitsRate":8.114759688E7,"internalBytes":"2970624","internalBitsRate":6601.36,"throughBytes":"11896980594","throughBitsRate":2.643773464E7,"totalPackets":"46571680","totalPacketsRate":"12936.58","inboundPackets":"1189443","inboundPacketsRate":"330.40","outboundPackets":"25826258","outboundPacketsRate":"7173.96","internalPackets":"2513","internalPacketsRate":"0.70","throughPackets":"10802763","throughPacketsRate":"3000.77","sessions":"46308","sessionsRate":"12.86"},{"appLabel":"baidu","totalBytes":"1788529278","totalBitsRate":3974509.52,"inboundBytes":"347936060","inboundBitsRate":773191.28,"outboundBytes":"1185142275","outboundBitsRate":2633649.52,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"192275392","throughBitsRate":427278.64,"totalPackets":"1947555","totalPacketsRate":"540.99","inboundPackets":"253118","inboundPacketsRate":"70.31","outboundPackets":"928595","outboundPacketsRate":"257.94","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"240434","throughPacketsRate":"66.79","sessions":"13340","sessionsRate":"3.71"},{"appLabel":"taobao","totalBytes":"205847750","totalBitsRate":457439.44,"inboundBytes":"13709248","inboundBitsRate":30464.96,"outboundBytes":"173014473","outboundBitsRate":384476.64,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"14171469","throughBitsRate":31492.16,"totalPackets":"231545","totalPacketsRate":"64.32","inboundPackets":"25261","inboundPacketsRate":"7.02","outboundPackets":"128177","outboundPacketsRate":"35.60","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"13464","throughPacketsRate":"3.74","sessions":"7611","sessionsRate":"2.11"},{"appLabel":"appstore","totalBytes":"899055619","totalBitsRate":1997901.36,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"700207516","outboundBitsRate":1556016.72,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"198848103","throughBitsRate":441884.64,"totalPackets":"634934","totalPacketsRate":"176.37","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"494264","outboundPacketsRate":"137.30","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"140670","throughPacketsRate":"39.08","sessions":"6","sessionsRate":"0.00"},{"appLabel":"toutiao","totalBytes":"1764172849","totalBitsRate":3920384.08,"inboundBytes":"320146","inboundBitsRate":711.44,"outboundBytes":"1450756241","outboundBitsRate":3223902.72,"internalBytes":"49771","internalBitsRate":110.64,"throughBytes":"282330079","throughBitsRate":627400.16,"totalPackets":"1702392","totalPacketsRate":"472.89","inboundPackets":"976","inboundPacketsRate":"0.27","outboundPackets":"1054624","outboundPacketsRate":"292.95","internalPackets":"83","internalPacketsRate":"0.02","throughPackets":"276830","throughPacketsRate":"76.90","sessions":"4349","sessionsRate":"1.21"},{"appLabel":"cibn","totalBytes":"151378576","totalBitsRate":336396.8,"inboundBytes":"6540898","inboundBitsRate":14535.36,"outboundBytes":"102381989","outboundBitsRate":227515.52,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"40213911","throughBitsRate":89364.24,"totalPackets":"148803","totalPacketsRate":"41.33","inboundPackets":"4601","inboundPacketsRate":"1.28","outboundPackets":"70782","outboundPacketsRate":"19.66","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"38662","throughPacketsRate":"10.74","sessions":"148","sessionsRate":"0.04"},{"appLabel":"iqiyi","totalBytes":"231000437","totalBitsRate":513334.32,"inboundBytes":"4057190","inboundBitsRate":9016.0,"outboundBytes":"164082389","outboundBitsRate":364627.52,"internalBytes":"17793760","internalBitsRate":39541.68,"throughBytes":"42214051","throughBitsRate":93809.04,"totalPackets":"210472","totalPacketsRate":"58.46","inboundPackets":"3488","inboundPacketsRate":"0.97","outboundPackets":"115644","outboundPacketsRate":"32.12","internalPackets":"19678","internalPacketsRate":"5.47","throughPackets":"37432","throughPacketsRate":"10.40","sessions":"504","sessionsRate":"0.14"},{"appLabel":"bmff","totalBytes":"4105730521","totalBitsRate":9123845.6,"inboundBytes":"317416331","inboundBitsRate":705369.6,"outboundBytes":"2998292329","outboundBitsRate":6662871.84,"internalBytes":"1570","internalBitsRate":3.52,"throughBytes":"738253289","throughBitsRate":1640562.88,"totalPackets":"3809971","totalPacketsRate":"1058.33","inboundPackets":"211504","inboundPacketsRate":"58.75","outboundPackets":"2141849","outboundPacketsRate":"594.96","internalPackets":"11","internalPacketsRate":"0.00","throughPackets":"693580","throughPacketsRate":"192.66","sessions":"3112","sessionsRate":"0.86"},{"appLabel":"kugou","totalBytes":"1082512757","totalBitsRate":2405583.92,"inboundBytes":"2818447","inboundBitsRate":6263.2,"outboundBytes":"897512945","outboundBitsRate":1994473.2,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"165603158","throughBitsRate":368007.04,"totalPackets":"1011521","totalPacketsRate":"280.98","inboundPackets":"3055","inboundPacketsRate":"0.85","outboundPackets":"656792","outboundPacketsRate":"182.44","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"159330","throughPacketsRate":"44.26","sessions":"2432","sessionsRate":"0.68"},{"appLabel":"wechat","totalBytes":"19885125118","totalBitsRate":4.418916696E7,"inboundBytes":"59802435","inboundBitsRate":132894.32,"outboundBytes":"15152188633","outboundBitsRate":3.367153032E7,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"4146626710","throughBitsRate":9214726.0,"totalPackets":"22772809","totalPacketsRate":"6325.78","inboundPackets":"63196","inboundPacketsRate":"17.55","outboundPackets":"12215887","outboundPacketsRate":"3393.30","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"4805016","throughPacketsRate":"1334.73","sessions":"16572","sessionsRate":"4.60"},{"appLabel":"windows_update","totalBytes":"245925200","totalBitsRate":546500.48,"inboundBytes":"32633","inboundBitsRate":72.48,"outboundBytes":"192011004","outboundBitsRate":426691.12,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"50058310","throughBitsRate":111240.72,"totalPackets":"231924","totalPacketsRate":"64.42","inboundPackets":"316","inboundPacketsRate":"0.09","outboundPackets":"131847","outboundPacketsRate":"36.62","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"47584","throughPacketsRate":"13.22","sessions":"105","sessionsRate":"0.03"},{"appLabel":"gaode_map","totalBytes":"144551760","totalBitsRate":321226.16,"inboundBytes":"253338","inboundBitsRate":562.96,"outboundBytes":"128686443","outboundBitsRate":285969.84,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"13548556","throughBitsRate":30107.92,"totalPackets":"133246","totalPacketsRate":"37.01","inboundPackets":"340","inboundPacketsRate":"0.09","outboundPackets":"92278","outboundPacketsRate":"25.63","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"13283","throughPacketsRate":"3.69","sessions":"183","sessionsRate":"0.05"},{"appLabel":"speedtest","totalBytes":"137567059","totalBitsRate":305704.56,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"124787359","outboundBitsRate":277305.28,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"11337273","throughBitsRate":25193.92,"totalPackets":"118923","totalPacketsRate":"33.03","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"89467","outboundPacketsRate":"24.85","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"10021","throughPacketsRate":"2.78","sessions":"95","sessionsRate":"0.03"},{"appLabel":"uc_browser","totalBytes":"455212427","totalBitsRate":1011583.2,"inboundBytes":"2971344","inboundBitsRate":6602.96,"outboundBytes":"344999936","outboundBitsRate":766666.56,"internalBytes":"910580","internalBitsRate":2023.52,"throughBytes":"99869391","throughBitsRate":221932.0,"totalPackets":"437763","totalPacketsRate":"121.60","inboundPackets":"2074","inboundPacketsRate":"0.58","outboundPackets":"247976","outboundPacketsRate":"68.88","internalPackets":"704","internalPacketsRate":"0.20","throughPackets":"102031","throughPacketsRate":"28.34","sessions":"582","sessionsRate":"0.16"},{"appLabel":"ultrasurf","totalBytes":"61520893","totalBitsRate":136713.12,"inboundBytes":"0","inboundBitsRate":0.0,"outboundBytes":"52374114","outboundBitsRate":116386.96,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"8330087","throughBitsRate":18511.28,"totalPackets":"56218","totalPacketsRate":"15.62","inboundPackets":"0","inboundPacketsRate":"0.00","outboundPackets":"37621","outboundPacketsRate":"10.45","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"7656","throughPacketsRate":"2.13","sessions":"54","sessionsRate":"0.02"},{"appLabel":"office365","totalBytes":"206737984","totalBitsRate":459417.76,"inboundBytes":"62783","inboundBitsRate":139.52,"outboundBytes":"185778283","outboundBitsRate":412840.64,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"17445328","throughBitsRate":38767.36,"totalPackets":"197816","totalPacketsRate":"54.95","inboundPackets":"114","inboundPacketsRate":"0.03","outboundPackets":"128591","outboundPacketsRate":"35.72","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"16766","throughPacketsRate":"4.66","sessions":"116","sessionsRate":"0.03"},{"appLabel":"bytedance","totalBytes":"3305673546","totalBitsRate":7345941.2,"inboundBytes":"293069747","inboundBitsRate":651266.08,"outboundBytes":"1053446532","outboundBitsRate":2340992.32,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"1064802672","throughBitsRate":2366228.16,"totalPackets":"3826538","totalPacketsRate":"1062.93","inboundPackets":"463066","inboundPacketsRate":"128.63","outboundPackets":"878953","outboundPacketsRate":"244.15","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"1168282","throughPacketsRate":"324.52","sessions":"18590","sessionsRate":"5.16"},{"appLabel":"bittorrent","totalBytes":"926683085","totalBitsRate":2059295.76,"inboundBytes":"2542024","inboundBitsRate":5648.96,"outboundBytes":"653874746","outboundBitsRate":1453054.96,"internalBytes":"150","internalBitsRate":0.32,"throughBytes":"256089294","throughBitsRate":569087.36,"totalPackets":"804158","totalPacketsRate":"223.38","inboundPackets":"4816","inboundPacketsRate":"1.34","outboundPackets":"482551","outboundPacketsRate":"134.04","internalPackets":"2","internalPacketsRate":"0.00","throughPackets":"205349","throughPacketsRate":"57.04","sessions":"1916","sessionsRate":"0.53"},{"appLabel":"alibaba_cloud","totalBytes":"6147658651","totalBitsRate":1.366146368E7,"inboundBytes":"4143153250","inboundBitsRate":9207007.2,"outboundBytes":"1421738048","outboundBitsRate":3159417.92,"internalBytes":"4854525","internalBitsRate":10787.84,"throughBytes":"289115036","throughBitsRate":642477.84,"totalPackets":"6595485","totalPacketsRate":"1832.08","inboundPackets":"2942206","inboundPacketsRate":"817.28","outboundPackets":"1073316","outboundPacketsRate":"298.14","internalPackets":"5072","internalPacketsRate":"1.41","throughPackets":"290673","throughPacketsRate":"80.74","sessions":"34462","sessionsRate":"9.57"},{"appLabel":"pinduoduo","totalBytes":"1833465929","totalBitsRate":4074368.72,"inboundBytes":"246666554","inboundBitsRate":548147.92,"outboundBytes":"1135892409","outboundBitsRate":2524205.36,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"419379803","throughBitsRate":931955.12,"totalPackets":"1953675","totalPacketsRate":"542.69","inboundPackets":"194148","inboundPacketsRate":"53.93","outboundPackets":"825250","outboundPacketsRate":"229.24","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"453122","throughPacketsRate":"125.87","sessions":"1737","sessionsRate":"0.48"},{"appLabel":"alibaba_group","totalBytes":"470378867","totalBitsRate":1045286.4,"inboundBytes":"1156465","inboundBitsRate":2569.92,"outboundBytes":"366623480","outboundBitsRate":814718.88,"internalBytes":"3447","internalBitsRate":7.68,"throughBytes":"93601727","throughBitsRate":208003.84,"totalPackets":"448050","totalPacketsRate":"124.46","inboundPackets":"1950","inboundPacketsRate":"0.54","outboundPackets":"263802","outboundPacketsRate":"73.28","internalPackets":"27","internalPacketsRate":"0.01","throughPackets":"90907","throughPacketsRate":"25.25","sessions":"1170","sessionsRate":"0.33"},{"appLabel":"chinanetcenter","totalBytes":"499294026","totalBitsRate":1109542.32,"inboundBytes":"6035203","inboundBitsRate":13411.6,"outboundBytes":"444660717","outboundBitsRate":988134.96,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"39839482","throughBitsRate":88532.16,"totalPackets":"491668","totalPacketsRate":"136.57","inboundPackets":"7570","inboundPacketsRate":"2.10","outboundPackets":"322048","outboundPacketsRate":"89.46","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"44267","throughPacketsRate":"12.30","sessions":"1940","sessionsRate":"0.54"},{"appLabel":"sina_weibo","totalBytes":"847390355","totalBitsRate":1883089.68,"inboundBytes":"453841","inboundBitsRate":1008.56,"outboundBytes":"703017964","outboundBitsRate":1562262.16,"internalBytes":"24574250","internalBitsRate":54609.44,"throughBytes":"105787632","throughBitsRate":235083.6,"totalPackets":"824536","totalPacketsRate":"229.04","inboundPackets":"497","inboundPacketsRate":"0.14","outboundPackets":"518395","outboundPacketsRate":"144.00","internalPackets":"19327","internalPacketsRate":"5.37","throughPackets":"103165","throughPacketsRate":"28.66","sessions":"1628","sessionsRate":"0.45"},{"appLabel":"xiaohongshu","totalBytes":"308004810","totalBitsRate":684455.12,"inboundBytes":"95818997","inboundBitsRate":212931.12,"outboundBytes":"146652446","outboundBitsRate":325894.32,"internalBytes":"0","internalBitsRate":0.0,"throughBytes":"57848191","throughBitsRate":128551.52,"totalPackets":"332183","totalPacketsRate":"92.27","inboundPackets":"64102","inboundPacketsRate":"17.81","outboundPackets":"104476","outboundPacketsRate":"29.02","internalPackets":"0","internalPacketsRate":"0.00","throughPackets":"54818","throughPacketsRate":"15.23","sessions":"503","sessionsRate":"0.14"},{"appLabel":"netease_cloud_music","totalBytes":"4556342822","totalBitsRate":1.012520624E7,"inboundBytes":"3134629","inboundBitsRate":6965.84,"outboundBytes":"3544952259","outboundBitsRate":7877671.68,"internalBytes":"8160779","internalBitsRate":18135.04,"throughBytes":"942170506","throughBitsRate":2093712.24,"totalPackets":"4220758","totalPacketsRate":"1172.43","inboundPackets":"2548","inboundPacketsRate":"0.71","outboundPackets":"2555230","outboundPacketsRate":"709.79","internalPackets":"6441","internalPacketsRate":"1.79","throughPackets":"867774","throughPacketsRate":"241.05","sessions":"4594","sessionsRate":"1.28"}]},"originalUrl":"http://192.168.44.55:9999/?query=SELECT common_app_label AS app_label, SUM(common_c2s_byte_num + common_s2c_byte_num) AS total_bytes, SUM(traffic_inbound_byte) AS inbound_bytes, SUM(traffic_outbound_byte) AS outbound_bytes, SUM(traffic_internal_byte) AS internal_bytes, SUM(traffic_through_byte) AS through_bytes, SUM(common_c2s_pkt_num + common_s2c_pkt_num) AS total_packets, SUM(traffic_inbound_pkt) AS inbound_packets, SUM(traffic_outbound_pkt) AS outbound_packets, SUM(traffic_internal_pkt) AS internal_packets, SUM(traffic_through_pkt) AS through_packets, SUM(common_sessions) AS sessions FROM metric_application WHERE stat_time >= toDateTime(1677224704)-3600 AND stat_time < toDateTime(1677228304)-3600 AND app_label IN ( 'douyin','wechat','kuaishou','alibaba_cloud','bmff','netease_cloud_music','qq_web','wtls','bytedance','toutiao','pinduoduo','http2','baidu','netease','flash','kugou','sina_weibo','xiaomi','cibn','bittorrent','appstore','windows_update','iqiyi','ixigua','uc_browser','tencent','jingdong','iperf','office365','alibaba_group','experion','youku','xiaohongshu','taobao','uplive','qqvideo','mitalk','mpegts','huawei','bilibili','chinanetcenter','mango_tv','gaode_map','speedtest','ultrasurf','163com','mgcp','wsp','ximalaya','meitu' ) GROUP BY app_label&format=json&option=real-time","msg":"OK"}} -const mockGetScoreTcpSessionDelay = { "data": {"status":200,"code":200,"queryKey":"f05779a266fb8bbd0c051ed663b01959","success":true,"message":null,"statistics":{"elapsed":2,"rows_read":12982,"bytes_read":434570,"result_size":2278,"result_rows":44},"job":null,"formatType":"json","meta":[{"name":"app_label","type":"string","category":"Dimension"},{"name":"establish_latency_ms","type":"double","category":"Metric"}],"data":{"resultType":"table","result":[{"appLabel":"qqvideo","establishLatencyMs":55.5352},{"appLabel":"uplive","establishLatencyMs":58.6912},{"appLabel":"xiaomi","establishLatencyMs":124.1933},{"appLabel":"qq_web","establishLatencyMs":69.4263},{"appLabel":"mpegts","establishLatencyMs":68.338},{"appLabel":"kuaishou","establishLatencyMs":152.8126},{"appLabel":"iperf","establishLatencyMs":80.6056},{"appLabel":"mango_tv","establishLatencyMs":49.3942},{"appLabel":"youku","establishLatencyMs":80.0452},{"appLabel":"huawei","establishLatencyMs":81.0782},{"appLabel":"ximalaya","establishLatencyMs":51.9153},{"appLabel":"bilibili","establishLatencyMs":59.631},{"appLabel":"ixigua","establishLatencyMs":65.2419},{"appLabel":"mitalk","establishLatencyMs":67.7998},{"appLabel":"163com","establishLatencyMs":93.4482},{"appLabel":"meitu","establishLatencyMs":67.4668},{"appLabel":"tencent","establishLatencyMs":438.6293},{"appLabel":"netease","establishLatencyMs":68.5645},{"appLabel":"http2","establishLatencyMs":90.4227},{"appLabel":"flash","establishLatencyMs":75.2766},{"appLabel":"jingdong","establishLatencyMs":60.4286},{"appLabel":"douyin","establishLatencyMs":77.5058},{"appLabel":"baidu","establishLatencyMs":83.1121},{"appLabel":"taobao","establishLatencyMs":61.2705},{"appLabel":"appstore","establishLatencyMs":37.375},{"appLabel":"toutiao","establishLatencyMs":77.0087},{"appLabel":"cibn","establishLatencyMs":52.5308},{"appLabel":"iqiyi","establishLatencyMs":80.0559},{"appLabel":"bmff","establishLatencyMs":81.9451},{"appLabel":"kugou","establishLatencyMs":84.9294},{"appLabel":"wechat","establishLatencyMs":107.2539},{"appLabel":"windows_update","establishLatencyMs":99.6507},{"appLabel":"gaode_map","establishLatencyMs":214.3703},{"appLabel":"uc_browser","establishLatencyMs":100.8159},{"appLabel":"office365","establishLatencyMs":75.645},{"appLabel":"bytedance","establishLatencyMs":74.9056},{"appLabel":"bittorrent","establishLatencyMs":389.0739},{"appLabel":"alibaba_cloud","establishLatencyMs":68.9263},{"appLabel":"pinduoduo","establishLatencyMs":150.425},{"appLabel":"alibaba_group","establishLatencyMs":96.1614},{"appLabel":"chinanetcenter","establishLatencyMs":93.537},{"appLabel":"sina_weibo","establishLatencyMs":57.2906},{"appLabel":"xiaohongshu","establishLatencyMs":92.3296},{"appLabel":"netease_cloud_music","establishLatencyMs":92.2846}]},"originalUrl":"http://192.168.44.55:9999/?query= SELECT common_app_label AS app_label, ROUND(AVG(avg_establish_latency_ms), 4) AS establish_latency_ms FROM metric_application WHERE stat_time >= toDateTime(1677224704) AND stat_time < toDateTime(1677228304) AND isNotNull(avg_establish_latency_ms) AND app_label IN ( 'douyin','wechat','kuaishou','alibaba_cloud','bmff','netease_cloud_music','qq_web','wtls','bytedance','toutiao','pinduoduo','http2','baidu','netease','flash','kugou','sina_weibo','xiaomi','cibn','bittorrent','appstore','windows_update','iqiyi','ixigua','uc_browser','tencent','jingdong','iperf','office365','alibaba_group','experion','youku','xiaohongshu','taobao','uplive','qqvideo','mitalk','mpegts','huawei','bilibili','chinanetcenter','mango_tv','gaode_map','speedtest','ultrasurf','163com','mgcp','wsp','ximalaya','meitu' ) GROUP BY app_label &format=json&option=real-time","msg":"OK"}} -const mockGetScoreSslConDelay = { "data": {"status":200,"code":200,"queryKey":"aee5b9b64bb69bba39d490fdad1bed7e","success":true,"message":null,"statistics":{"elapsed":2,"rows_read":12982,"bytes_read":434570,"result_size":1672,"result_rows":41},"job":null,"formatType":"json","meta":[{"name":"app_label","type":"string","category":"Dimension"},{"name":"ssl_con_latency","type":"double","category":"Metric"}],"data":{"resultType":"table","result":[{"appLabel":"qqvideo","sslConLatency":0},{"appLabel":"uplive","sslConLatency":0},{"appLabel":"xiaomi","sslConLatency":0},{"appLabel":"qq_web","sslConLatency":0},{"appLabel":"kuaishou","sslConLatency":0},{"appLabel":"iperf","sslConLatency":0},{"appLabel":"mango_tv","sslConLatency":0},{"appLabel":"youku","sslConLatency":0},{"appLabel":"huawei","sslConLatency":0},{"appLabel":"ximalaya","sslConLatency":0},{"appLabel":"bilibili","sslConLatency":0},{"appLabel":"ixigua","sslConLatency":0},{"appLabel":"mitalk","sslConLatency":0},{"appLabel":"163com","sslConLatency":0},{"appLabel":"meitu","sslConLatency":0},{"appLabel":"tencent","sslConLatency":0},{"appLabel":"netease","sslConLatency":0},{"appLabel":"http2","sslConLatency":0},{"appLabel":"jingdong","sslConLatency":0},{"appLabel":"douyin","sslConLatency":0},{"appLabel":"baidu","sslConLatency":0},{"appLabel":"taobao","sslConLatency":0},{"appLabel":"appstore","sslConLatency":0},{"appLabel":"toutiao","sslConLatency":0},{"appLabel":"cibn","sslConLatency":0},{"appLabel":"iqiyi","sslConLatency":0},{"appLabel":"bmff","sslConLatency":0},{"appLabel":"kugou","sslConLatency":0},{"appLabel":"wechat","sslConLatency":0},{"appLabel":"windows_update","sslConLatency":0},{"appLabel":"gaode_map","sslConLatency":0},{"appLabel":"uc_browser","sslConLatency":0},{"appLabel":"office365","sslConLatency":0},{"appLabel":"bytedance","sslConLatency":0},{"appLabel":"alibaba_cloud","sslConLatency":0},{"appLabel":"pinduoduo","sslConLatency":0},{"appLabel":"alibaba_group","sslConLatency":0},{"appLabel":"chinanetcenter","sslConLatency":0},{"appLabel":"sina_weibo","sslConLatency":0},{"appLabel":"xiaohongshu","sslConLatency":0},{"appLabel":"netease_cloud_music","sslConLatency":0}]},"originalUrl":"http://192.168.44.55:9999/?query= SELECT common_app_label AS app_label, ROUND(AVG(avg_ssl_con_latency_ms), 4) AS ssl_con_latency FROM metric_application WHERE stat_time >= toDateTime(1677224704) AND stat_time < toDateTime(1677228304) AND isNotNull(avg_ssl_con_latency_ms) AND app_label IN ( 'douyin','wechat','kuaishou','alibaba_cloud','bmff','netease_cloud_music','qq_web','wtls','bytedance','toutiao','pinduoduo','http2','baidu','netease','flash','kugou','sina_weibo','xiaomi','cibn','bittorrent','appstore','windows_update','iqiyi','ixigua','uc_browser','tencent','jingdong','iperf','office365','alibaba_group','experion','youku','xiaohongshu','taobao','uplive','qqvideo','mitalk','mpegts','huawei','bilibili','chinanetcenter','mango_tv','gaode_map','speedtest','ultrasurf','163com','mgcp','wsp','ximalaya','meitu' ) GROUP BY app_label &format=json&option=real-time","msg":"OK"}} -const mockGetScorePacketRetransPercent = { "data": {"status":200,"code":200,"queryKey":"24535df333204235130f9866135b8476","success":true,"message":null,"statistics":{"elapsed":2,"rows_read":12982,"bytes_read":434570,"result_size":2185,"result_rows":44},"job":null,"formatType":"json","meta":[{"name":"app_label","type":"string","category":"Dimension"},{"name":"pkt_retrans_percent","type":"double","category":"Metric"}],"data":{"resultType":"table","result":[{"appLabel":"qqvideo","pktRetransPercent":0.0535},{"appLabel":"uplive","pktRetransPercent":0.0034},{"appLabel":"xiaomi","pktRetransPercent":0.0382},{"appLabel":"qq_web","pktRetransPercent":0.0587},{"appLabel":"mpegts","pktRetransPercent":0.0114},{"appLabel":"kuaishou","pktRetransPercent":0.0488},{"appLabel":"iperf","pktRetransPercent":0.0048},{"appLabel":"mango_tv","pktRetransPercent":0.0193},{"appLabel":"youku","pktRetransPercent":0.0145},{"appLabel":"huawei","pktRetransPercent":0.0116},{"appLabel":"ximalaya","pktRetransPercent":0.0159},{"appLabel":"bilibili","pktRetransPercent":0.0145},{"appLabel":"ixigua","pktRetransPercent":0.0507},{"appLabel":"mitalk","pktRetransPercent":0.0291},{"appLabel":"163com","pktRetransPercent":0.0154},{"appLabel":"meitu","pktRetransPercent":0.0189},{"appLabel":"tencent","pktRetransPercent":0.0229},{"appLabel":"netease","pktRetransPercent":0.0724},{"appLabel":"http2","pktRetransPercent":0.0298},{"appLabel":"flash","pktRetransPercent":0.0108},{"appLabel":"jingdong","pktRetransPercent":0.0132},{"appLabel":"douyin","pktRetransPercent":0.0313},{"appLabel":"baidu","pktRetransPercent":0.0356},{"appLabel":"taobao","pktRetransPercent":0.0081},{"appLabel":"appstore","pktRetransPercent":6.0E-4},{"appLabel":"toutiao","pktRetransPercent":0.0526},{"appLabel":"cibn","pktRetransPercent":0.0153},{"appLabel":"iqiyi","pktRetransPercent":0.0239},{"appLabel":"bmff","pktRetransPercent":0.0321},{"appLabel":"kugou","pktRetransPercent":0.0395},{"appLabel":"wechat","pktRetransPercent":0.0923},{"appLabel":"windows_update","pktRetransPercent":0.0159},{"appLabel":"gaode_map","pktRetransPercent":0.0404},{"appLabel":"uc_browser","pktRetransPercent":0.04},{"appLabel":"office365","pktRetransPercent":0.0051},{"appLabel":"bytedance","pktRetransPercent":0.0145},{"appLabel":"bittorrent","pktRetransPercent":0.0454},{"appLabel":"alibaba_cloud","pktRetransPercent":0.0135},{"appLabel":"pinduoduo","pktRetransPercent":0.0247},{"appLabel":"alibaba_group","pktRetransPercent":0.032},{"appLabel":"chinanetcenter","pktRetransPercent":0.0119},{"appLabel":"sina_weibo","pktRetransPercent":0.0328},{"appLabel":"xiaohongshu","pktRetransPercent":0.0148},{"appLabel":"netease_cloud_music","pktRetransPercent":0.0558}]},"originalUrl":"http://192.168.44.55:9999/?query= SELECT common_app_label AS app_label, ROUND(AVG(pkt_retrans_ratio), 4) AS pkt_retrans_percent FROM metric_application WHERE stat_time >= toDateTime(1677224704) AND stat_time < toDateTime(1677228304) AND isNotNull(pkt_retrans_ratio) AND app_label IN ( 'douyin','wechat','kuaishou','alibaba_cloud','bmff','netease_cloud_music','qq_web','wtls','bytedance','toutiao','pinduoduo','http2','baidu','netease','flash','kugou','sina_weibo','xiaomi','cibn','bittorrent','appstore','windows_update','iqiyi','ixigua','uc_browser','tencent','jingdong','iperf','office365','alibaba_group','experion','youku','xiaohongshu','taobao','uplive','qqvideo','mitalk','mpegts','huawei','bilibili','chinanetcenter','mango_tv','gaode_map','speedtest','ultrasurf','163com','mgcp','wsp','ximalaya','meitu' ) GROUP BY app_label &format=json&option=real-time","msg":"OK"}} -const mockGetScoreTcpLostlenPercent = { "data": {"status":200,"code":200,"queryKey":"8fb0fc82b2c87b751b3abec5e3544e47","success":true,"message":null,"statistics":{"elapsed":3,"rows_read":12982,"bytes_read":434570,"result_size":2164,"result_rows":44},"job":null,"formatType":"json","meta":[{"name":"app_label","type":"string","category":"Dimension"},{"name":"tcp_lostlen_percent","type":"double","category":"Metric"}],"data":{"resultType":"table","result":[{"appLabel":"qqvideo","tcpLostlenPercent":0.0053},{"appLabel":"uplive","tcpLostlenPercent":0},{"appLabel":"xiaomi","tcpLostlenPercent":0.0084},{"appLabel":"qq_web","tcpLostlenPercent":0.0088},{"appLabel":"mpegts","tcpLostlenPercent":6.0E-4},{"appLabel":"kuaishou","tcpLostlenPercent":0.0073},{"appLabel":"iperf","tcpLostlenPercent":0.0058},{"appLabel":"mango_tv","tcpLostlenPercent":0.0055},{"appLabel":"youku","tcpLostlenPercent":0.0068},{"appLabel":"huawei","tcpLostlenPercent":0.0026},{"appLabel":"ximalaya","tcpLostlenPercent":0.0015},{"appLabel":"bilibili","tcpLostlenPercent":0.01},{"appLabel":"ixigua","tcpLostlenPercent":0.0174},{"appLabel":"mitalk","tcpLostlenPercent":0},{"appLabel":"163com","tcpLostlenPercent":0},{"appLabel":"meitu","tcpLostlenPercent":0.0045},{"appLabel":"tencent","tcpLostlenPercent":0.0045},{"appLabel":"netease","tcpLostlenPercent":4.0E-4},{"appLabel":"http2","tcpLostlenPercent":0.007},{"appLabel":"flash","tcpLostlenPercent":0.0101},{"appLabel":"jingdong","tcpLostlenPercent":0.0041},{"appLabel":"douyin","tcpLostlenPercent":0.0104},{"appLabel":"baidu","tcpLostlenPercent":0.0073},{"appLabel":"taobao","tcpLostlenPercent":0.0045},{"appLabel":"appstore","tcpLostlenPercent":0.0283},{"appLabel":"toutiao","tcpLostlenPercent":6.0E-4},{"appLabel":"cibn","tcpLostlenPercent":0.0054},{"appLabel":"iqiyi","tcpLostlenPercent":0.0016},{"appLabel":"bmff","tcpLostlenPercent":0.008},{"appLabel":"kugou","tcpLostlenPercent":0.0208},{"appLabel":"wechat","tcpLostlenPercent":0.0063},{"appLabel":"windows_update","tcpLostlenPercent":0.0042},{"appLabel":"gaode_map","tcpLostlenPercent":0},{"appLabel":"uc_browser","tcpLostlenPercent":0.0011},{"appLabel":"office365","tcpLostlenPercent":0.0011},{"appLabel":"bytedance","tcpLostlenPercent":0.0096},{"appLabel":"bittorrent","tcpLostlenPercent":0.0084},{"appLabel":"alibaba_cloud","tcpLostlenPercent":0.0043},{"appLabel":"pinduoduo","tcpLostlenPercent":0.0059},{"appLabel":"alibaba_group","tcpLostlenPercent":0.0026},{"appLabel":"chinanetcenter","tcpLostlenPercent":0.0032},{"appLabel":"sina_weibo","tcpLostlenPercent":0.0021},{"appLabel":"xiaohongshu","tcpLostlenPercent":0.0058},{"appLabel":"netease_cloud_music","tcpLostlenPercent":6.0E-4}]},"originalUrl":"http://192.168.44.55:9999/?query= SELECT common_app_label AS app_label, ROUND(AVG(tcp_lostlen_ratio), 4) AS tcp_lostlen_percent FROM metric_application WHERE stat_time >= toDateTime(1677224704) AND stat_time < toDateTime(1677228304) AND isNotNull(tcp_lostlen_ratio) AND app_label IN ( 'douyin','wechat','kuaishou','alibaba_cloud','bmff','netease_cloud_music','qq_web','wtls','bytedance','toutiao','pinduoduo','http2','baidu','netease','flash','kugou','sina_weibo','xiaomi','cibn','bittorrent','appstore','windows_update','iqiyi','ixigua','uc_browser','tencent','jingdong','iperf','office365','alibaba_group','experion','youku','xiaohongshu','taobao','uplive','qqvideo','mitalk','mpegts','huawei','bilibili','chinanetcenter','mango_tv','gaode_map','speedtest','ultrasurf','163com','mgcp','wsp','ximalaya','meitu' ) GROUP BY app_label &format=json&option=real-time","msg":"OK"}} -const mockGetScoreHttpResponseDelay = { "data": {"status":200,"code":200,"queryKey":"a22d7812f9faed42f14406c603f2d8b1","success":true,"message":null,"statistics":{"elapsed":3,"rows_read":12982,"bytes_read":434570,"result_size":2245,"result_rows":42},"job":null,"formatType":"json","meta":[{"name":"app_label","type":"string","category":"Dimension"},{"name":"http_response_latency","type":"double","category":"Metric"}],"data":{"resultType":"table","result":[{"appLabel":"qqvideo","httpResponseLatency":65.8873},{"appLabel":"uplive","httpResponseLatency":59.2162},{"appLabel":"xiaomi","httpResponseLatency":155.2906},{"appLabel":"qq_web","httpResponseLatency":113.7327},{"appLabel":"mpegts","httpResponseLatency":74.393},{"appLabel":"kuaishou","httpResponseLatency":385.5914},{"appLabel":"iperf","httpResponseLatency":125.3333},{"appLabel":"mango_tv","httpResponseLatency":545.9437},{"appLabel":"youku","httpResponseLatency":55.9517},{"appLabel":"huawei","httpResponseLatency":108.8767},{"appLabel":"ximalaya","httpResponseLatency":67.2947},{"appLabel":"bilibili","httpResponseLatency":113.9537},{"appLabel":"ixigua","httpResponseLatency":546.6292},{"appLabel":"mitalk","httpResponseLatency":51},{"appLabel":"163com","httpResponseLatency":146.1114},{"appLabel":"meitu","httpResponseLatency":390.7221},{"appLabel":"tencent","httpResponseLatency":562.1833},{"appLabel":"netease","httpResponseLatency":269.2048},{"appLabel":"flash","httpResponseLatency":80.7997},{"appLabel":"jingdong","httpResponseLatency":51.5389},{"appLabel":"douyin","httpResponseLatency":147.1872},{"appLabel":"baidu","httpResponseLatency":137.3964},{"appLabel":"taobao","httpResponseLatency":62.6976},{"appLabel":"toutiao","httpResponseLatency":211.3539},{"appLabel":"cibn","httpResponseLatency":114.5115},{"appLabel":"iqiyi","httpResponseLatency":100.5626},{"appLabel":"bmff","httpResponseLatency":293.3617},{"appLabel":"kugou","httpResponseLatency":183.6093},{"appLabel":"wechat","httpResponseLatency":150.4299},{"appLabel":"windows_update","httpResponseLatency":142.1594},{"appLabel":"gaode_map","httpResponseLatency":1082.5312},{"appLabel":"uc_browser","httpResponseLatency":498.1972},{"appLabel":"office365","httpResponseLatency":233.9082},{"appLabel":"bytedance","httpResponseLatency":185.3557},{"appLabel":"bittorrent","httpResponseLatency":578.7939},{"appLabel":"alibaba_cloud","httpResponseLatency":126.2049},{"appLabel":"pinduoduo","httpResponseLatency":1788.5914},{"appLabel":"alibaba_group","httpResponseLatency":194.3976},{"appLabel":"chinanetcenter","httpResponseLatency":177.1662},{"appLabel":"sina_weibo","httpResponseLatency":55.1753},{"appLabel":"xiaohongshu","httpResponseLatency":101.6416},{"appLabel":"netease_cloud_music","httpResponseLatency":430.9772}]},"originalUrl":"http://192.168.44.55:9999/?query= SELECT common_app_label AS app_label, ROUND(AVG(avg_http_response_latency_ms), 4) AS http_response_latency FROM metric_application WHERE stat_time >= toDateTime(1677224704) AND stat_time < toDateTime(1677228304) AND isNotNull(avg_http_response_latency_ms) AND app_label IN ( 'douyin','wechat','kuaishou','alibaba_cloud','bmff','netease_cloud_music','qq_web','wtls','bytedance','toutiao','pinduoduo','http2','baidu','netease','flash','kugou','sina_weibo','xiaomi','cibn','bittorrent','appstore','windows_update','iqiyi','ixigua','uc_browser','tencent','jingdong','iperf','office365','alibaba_group','experion','youku','xiaohongshu','taobao','uplive','qqvideo','mitalk','mpegts','huawei','bilibili','chinanetcenter','mango_tv','gaode_map','speedtest','ultrasurf','163com','mgcp','wsp','ximalaya','meitu' ) GROUP BY app_label &format=json&option=real-time","msg":"OK"}} +const mockGetScoreTcpSessionDelay = { "status":200, "data": {"status":200,"code":200,"queryKey":"f05779a266fb8bbd0c051ed663b01959","success":true,"message":null,"statistics":{"elapsed":2,"rows_read":12982,"bytes_read":434570,"result_size":2278,"result_rows":44},"job":null,"formatType":"json","meta":[{"name":"app_label","type":"string","category":"Dimension"},{"name":"establish_latency_ms","type":"double","category":"Metric"}],"data":{"resultType":"table","result":[{"appLabel":"qqvideo","establishLatencyMs":55.5352},{"appLabel":"uplive","establishLatencyMs":58.6912},{"appLabel":"xiaomi","establishLatencyMs":124.1933},{"appLabel":"qq_web","establishLatencyMs":69.4263},{"appLabel":"mpegts","establishLatencyMs":68.338},{"appLabel":"kuaishou","establishLatencyMs":152.8126},{"appLabel":"iperf","establishLatencyMs":80.6056},{"appLabel":"mango_tv","establishLatencyMs":49.3942},{"appLabel":"youku","establishLatencyMs":80.0452},{"appLabel":"huawei","establishLatencyMs":81.0782},{"appLabel":"ximalaya","establishLatencyMs":51.9153},{"appLabel":"bilibili","establishLatencyMs":59.631},{"appLabel":"ixigua","establishLatencyMs":65.2419},{"appLabel":"mitalk","establishLatencyMs":67.7998},{"appLabel":"163com","establishLatencyMs":93.4482},{"appLabel":"meitu","establishLatencyMs":67.4668},{"appLabel":"tencent","establishLatencyMs":438.6293},{"appLabel":"netease","establishLatencyMs":68.5645},{"appLabel":"http2","establishLatencyMs":90.4227},{"appLabel":"flash","establishLatencyMs":75.2766},{"appLabel":"jingdong","establishLatencyMs":60.4286},{"appLabel":"douyin","establishLatencyMs":77.5058},{"appLabel":"baidu","establishLatencyMs":83.1121},{"appLabel":"taobao","establishLatencyMs":61.2705},{"appLabel":"appstore","establishLatencyMs":37.375},{"appLabel":"toutiao","establishLatencyMs":77.0087},{"appLabel":"cibn","establishLatencyMs":52.5308},{"appLabel":"iqiyi","establishLatencyMs":80.0559},{"appLabel":"bmff","establishLatencyMs":81.9451},{"appLabel":"kugou","establishLatencyMs":84.9294},{"appLabel":"wechat","establishLatencyMs":107.2539},{"appLabel":"windows_update","establishLatencyMs":99.6507},{"appLabel":"gaode_map","establishLatencyMs":214.3703},{"appLabel":"uc_browser","establishLatencyMs":100.8159},{"appLabel":"office365","establishLatencyMs":75.645},{"appLabel":"bytedance","establishLatencyMs":74.9056},{"appLabel":"bittorrent","establishLatencyMs":389.0739},{"appLabel":"alibaba_cloud","establishLatencyMs":68.9263},{"appLabel":"pinduoduo","establishLatencyMs":150.425},{"appLabel":"alibaba_group","establishLatencyMs":96.1614},{"appLabel":"chinanetcenter","establishLatencyMs":93.537},{"appLabel":"sina_weibo","establishLatencyMs":57.2906},{"appLabel":"xiaohongshu","establishLatencyMs":92.3296},{"appLabel":"netease_cloud_music","establishLatencyMs":92.2846}]},"originalUrl":"http://192.168.44.55:9999/?query= SELECT common_app_label AS app_label, ROUND(AVG(avg_establish_latency_ms), 4) AS establish_latency_ms FROM metric_application WHERE stat_time >= toDateTime(1677224704) AND stat_time < toDateTime(1677228304) AND isNotNull(avg_establish_latency_ms) AND app_label IN ( 'douyin','wechat','kuaishou','alibaba_cloud','bmff','netease_cloud_music','qq_web','wtls','bytedance','toutiao','pinduoduo','http2','baidu','netease','flash','kugou','sina_weibo','xiaomi','cibn','bittorrent','appstore','windows_update','iqiyi','ixigua','uc_browser','tencent','jingdong','iperf','office365','alibaba_group','experion','youku','xiaohongshu','taobao','uplive','qqvideo','mitalk','mpegts','huawei','bilibili','chinanetcenter','mango_tv','gaode_map','speedtest','ultrasurf','163com','mgcp','wsp','ximalaya','meitu' ) GROUP BY app_label &format=json&option=real-time","msg":"OK"}} +const mockGetScoreSslConDelay = { "status":200, "data": {"status":200,"code":200,"queryKey":"aee5b9b64bb69bba39d490fdad1bed7e","success":true,"message":null,"statistics":{"elapsed":2,"rows_read":12982,"bytes_read":434570,"result_size":1672,"result_rows":41},"job":null,"formatType":"json","meta":[{"name":"app_label","type":"string","category":"Dimension"},{"name":"ssl_con_latency","type":"double","category":"Metric"}],"data":{"resultType":"table","result":[{"appLabel":"qqvideo","sslConLatency":0},{"appLabel":"uplive","sslConLatency":0},{"appLabel":"xiaomi","sslConLatency":0},{"appLabel":"qq_web","sslConLatency":0},{"appLabel":"kuaishou","sslConLatency":0},{"appLabel":"iperf","sslConLatency":0},{"appLabel":"mango_tv","sslConLatency":0},{"appLabel":"youku","sslConLatency":0},{"appLabel":"huawei","sslConLatency":0},{"appLabel":"ximalaya","sslConLatency":0},{"appLabel":"bilibili","sslConLatency":0},{"appLabel":"ixigua","sslConLatency":0},{"appLabel":"mitalk","sslConLatency":0},{"appLabel":"163com","sslConLatency":0},{"appLabel":"meitu","sslConLatency":0},{"appLabel":"tencent","sslConLatency":0},{"appLabel":"netease","sslConLatency":0},{"appLabel":"http2","sslConLatency":0},{"appLabel":"jingdong","sslConLatency":0},{"appLabel":"douyin","sslConLatency":0},{"appLabel":"baidu","sslConLatency":0},{"appLabel":"taobao","sslConLatency":0},{"appLabel":"appstore","sslConLatency":0},{"appLabel":"toutiao","sslConLatency":0},{"appLabel":"cibn","sslConLatency":0},{"appLabel":"iqiyi","sslConLatency":0},{"appLabel":"bmff","sslConLatency":0},{"appLabel":"kugou","sslConLatency":0},{"appLabel":"wechat","sslConLatency":0},{"appLabel":"windows_update","sslConLatency":0},{"appLabel":"gaode_map","sslConLatency":0},{"appLabel":"uc_browser","sslConLatency":0},{"appLabel":"office365","sslConLatency":0},{"appLabel":"bytedance","sslConLatency":0},{"appLabel":"alibaba_cloud","sslConLatency":0},{"appLabel":"pinduoduo","sslConLatency":0},{"appLabel":"alibaba_group","sslConLatency":0},{"appLabel":"chinanetcenter","sslConLatency":0},{"appLabel":"sina_weibo","sslConLatency":0},{"appLabel":"xiaohongshu","sslConLatency":0},{"appLabel":"netease_cloud_music","sslConLatency":0}]},"originalUrl":"http://192.168.44.55:9999/?query= SELECT common_app_label AS app_label, ROUND(AVG(avg_ssl_con_latency_ms), 4) AS ssl_con_latency FROM metric_application WHERE stat_time >= toDateTime(1677224704) AND stat_time < toDateTime(1677228304) AND isNotNull(avg_ssl_con_latency_ms) AND app_label IN ( 'douyin','wechat','kuaishou','alibaba_cloud','bmff','netease_cloud_music','qq_web','wtls','bytedance','toutiao','pinduoduo','http2','baidu','netease','flash','kugou','sina_weibo','xiaomi','cibn','bittorrent','appstore','windows_update','iqiyi','ixigua','uc_browser','tencent','jingdong','iperf','office365','alibaba_group','experion','youku','xiaohongshu','taobao','uplive','qqvideo','mitalk','mpegts','huawei','bilibili','chinanetcenter','mango_tv','gaode_map','speedtest','ultrasurf','163com','mgcp','wsp','ximalaya','meitu' ) GROUP BY app_label &format=json&option=real-time","msg":"OK"}} +const mockGetScorePacketRetransPercent = { "status":200, "data": {"status":200,"code":200,"queryKey":"24535df333204235130f9866135b8476","success":true,"message":null,"statistics":{"elapsed":2,"rows_read":12982,"bytes_read":434570,"result_size":2185,"result_rows":44},"job":null,"formatType":"json","meta":[{"name":"app_label","type":"string","category":"Dimension"},{"name":"pkt_retrans_percent","type":"double","category":"Metric"}],"data":{"resultType":"table","result":[{"appLabel":"qqvideo","pktRetransPercent":0.0535},{"appLabel":"uplive","pktRetransPercent":0.0034},{"appLabel":"xiaomi","pktRetransPercent":0.0382},{"appLabel":"qq_web","pktRetransPercent":0.0587},{"appLabel":"mpegts","pktRetransPercent":0.0114},{"appLabel":"kuaishou","pktRetransPercent":0.0488},{"appLabel":"iperf","pktRetransPercent":0.0048},{"appLabel":"mango_tv","pktRetransPercent":0.0193},{"appLabel":"youku","pktRetransPercent":0.0145},{"appLabel":"huawei","pktRetransPercent":0.0116},{"appLabel":"ximalaya","pktRetransPercent":0.0159},{"appLabel":"bilibili","pktRetransPercent":0.0145},{"appLabel":"ixigua","pktRetransPercent":0.0507},{"appLabel":"mitalk","pktRetransPercent":0.0291},{"appLabel":"163com","pktRetransPercent":0.0154},{"appLabel":"meitu","pktRetransPercent":0.0189},{"appLabel":"tencent","pktRetransPercent":0.0229},{"appLabel":"netease","pktRetransPercent":0.0724},{"appLabel":"http2","pktRetransPercent":0.0298},{"appLabel":"flash","pktRetransPercent":0.0108},{"appLabel":"jingdong","pktRetransPercent":0.0132},{"appLabel":"douyin","pktRetransPercent":0.0313},{"appLabel":"baidu","pktRetransPercent":0.0356},{"appLabel":"taobao","pktRetransPercent":0.0081},{"appLabel":"appstore","pktRetransPercent":6.0E-4},{"appLabel":"toutiao","pktRetransPercent":0.0526},{"appLabel":"cibn","pktRetransPercent":0.0153},{"appLabel":"iqiyi","pktRetransPercent":0.0239},{"appLabel":"bmff","pktRetransPercent":0.0321},{"appLabel":"kugou","pktRetransPercent":0.0395},{"appLabel":"wechat","pktRetransPercent":0.0923},{"appLabel":"windows_update","pktRetransPercent":0.0159},{"appLabel":"gaode_map","pktRetransPercent":0.0404},{"appLabel":"uc_browser","pktRetransPercent":0.04},{"appLabel":"office365","pktRetransPercent":0.0051},{"appLabel":"bytedance","pktRetransPercent":0.0145},{"appLabel":"bittorrent","pktRetransPercent":0.0454},{"appLabel":"alibaba_cloud","pktRetransPercent":0.0135},{"appLabel":"pinduoduo","pktRetransPercent":0.0247},{"appLabel":"alibaba_group","pktRetransPercent":0.032},{"appLabel":"chinanetcenter","pktRetransPercent":0.0119},{"appLabel":"sina_weibo","pktRetransPercent":0.0328},{"appLabel":"xiaohongshu","pktRetransPercent":0.0148},{"appLabel":"netease_cloud_music","pktRetransPercent":0.0558}]},"originalUrl":"http://192.168.44.55:9999/?query= SELECT common_app_label AS app_label, ROUND(AVG(pkt_retrans_ratio), 4) AS pkt_retrans_percent FROM metric_application WHERE stat_time >= toDateTime(1677224704) AND stat_time < toDateTime(1677228304) AND isNotNull(pkt_retrans_ratio) AND app_label IN ( 'douyin','wechat','kuaishou','alibaba_cloud','bmff','netease_cloud_music','qq_web','wtls','bytedance','toutiao','pinduoduo','http2','baidu','netease','flash','kugou','sina_weibo','xiaomi','cibn','bittorrent','appstore','windows_update','iqiyi','ixigua','uc_browser','tencent','jingdong','iperf','office365','alibaba_group','experion','youku','xiaohongshu','taobao','uplive','qqvideo','mitalk','mpegts','huawei','bilibili','chinanetcenter','mango_tv','gaode_map','speedtest','ultrasurf','163com','mgcp','wsp','ximalaya','meitu' ) GROUP BY app_label &format=json&option=real-time","msg":"OK"}} +const mockGetScoreTcpLostlenPercent = { "status":200, "data": {"status":200,"code":200,"queryKey":"8fb0fc82b2c87b751b3abec5e3544e47","success":true,"message":null,"statistics":{"elapsed":3,"rows_read":12982,"bytes_read":434570,"result_size":2164,"result_rows":44},"job":null,"formatType":"json","meta":[{"name":"app_label","type":"string","category":"Dimension"},{"name":"tcp_lostlen_percent","type":"double","category":"Metric"}],"data":{"resultType":"table","result":[{"appLabel":"qqvideo","tcpLostlenPercent":0.0053},{"appLabel":"uplive","tcpLostlenPercent":0},{"appLabel":"xiaomi","tcpLostlenPercent":0.0084},{"appLabel":"qq_web","tcpLostlenPercent":0.0088},{"appLabel":"mpegts","tcpLostlenPercent":6.0E-4},{"appLabel":"kuaishou","tcpLostlenPercent":0.0073},{"appLabel":"iperf","tcpLostlenPercent":0.0058},{"appLabel":"mango_tv","tcpLostlenPercent":0.0055},{"appLabel":"youku","tcpLostlenPercent":0.0068},{"appLabel":"huawei","tcpLostlenPercent":0.0026},{"appLabel":"ximalaya","tcpLostlenPercent":0.0015},{"appLabel":"bilibili","tcpLostlenPercent":0.01},{"appLabel":"ixigua","tcpLostlenPercent":0.0174},{"appLabel":"mitalk","tcpLostlenPercent":0},{"appLabel":"163com","tcpLostlenPercent":0},{"appLabel":"meitu","tcpLostlenPercent":0.0045},{"appLabel":"tencent","tcpLostlenPercent":0.0045},{"appLabel":"netease","tcpLostlenPercent":4.0E-4},{"appLabel":"http2","tcpLostlenPercent":0.007},{"appLabel":"flash","tcpLostlenPercent":0.0101},{"appLabel":"jingdong","tcpLostlenPercent":0.0041},{"appLabel":"douyin","tcpLostlenPercent":0.0104},{"appLabel":"baidu","tcpLostlenPercent":0.0073},{"appLabel":"taobao","tcpLostlenPercent":0.0045},{"appLabel":"appstore","tcpLostlenPercent":0.0283},{"appLabel":"toutiao","tcpLostlenPercent":6.0E-4},{"appLabel":"cibn","tcpLostlenPercent":0.0054},{"appLabel":"iqiyi","tcpLostlenPercent":0.0016},{"appLabel":"bmff","tcpLostlenPercent":0.008},{"appLabel":"kugou","tcpLostlenPercent":0.0208},{"appLabel":"wechat","tcpLostlenPercent":0.0063},{"appLabel":"windows_update","tcpLostlenPercent":0.0042},{"appLabel":"gaode_map","tcpLostlenPercent":0},{"appLabel":"uc_browser","tcpLostlenPercent":0.0011},{"appLabel":"office365","tcpLostlenPercent":0.0011},{"appLabel":"bytedance","tcpLostlenPercent":0.0096},{"appLabel":"bittorrent","tcpLostlenPercent":0.0084},{"appLabel":"alibaba_cloud","tcpLostlenPercent":0.0043},{"appLabel":"pinduoduo","tcpLostlenPercent":0.0059},{"appLabel":"alibaba_group","tcpLostlenPercent":0.0026},{"appLabel":"chinanetcenter","tcpLostlenPercent":0.0032},{"appLabel":"sina_weibo","tcpLostlenPercent":0.0021},{"appLabel":"xiaohongshu","tcpLostlenPercent":0.0058},{"appLabel":"netease_cloud_music","tcpLostlenPercent":6.0E-4}]},"originalUrl":"http://192.168.44.55:9999/?query= SELECT common_app_label AS app_label, ROUND(AVG(tcp_lostlen_ratio), 4) AS tcp_lostlen_percent FROM metric_application WHERE stat_time >= toDateTime(1677224704) AND stat_time < toDateTime(1677228304) AND isNotNull(tcp_lostlen_ratio) AND app_label IN ( 'douyin','wechat','kuaishou','alibaba_cloud','bmff','netease_cloud_music','qq_web','wtls','bytedance','toutiao','pinduoduo','http2','baidu','netease','flash','kugou','sina_weibo','xiaomi','cibn','bittorrent','appstore','windows_update','iqiyi','ixigua','uc_browser','tencent','jingdong','iperf','office365','alibaba_group','experion','youku','xiaohongshu','taobao','uplive','qqvideo','mitalk','mpegts','huawei','bilibili','chinanetcenter','mango_tv','gaode_map','speedtest','ultrasurf','163com','mgcp','wsp','ximalaya','meitu' ) GROUP BY app_label &format=json&option=real-time","msg":"OK"}} +const mockGetScoreHttpResponseDelay = { "status":200, "data": {"status":200,"code":200,"queryKey":"a22d7812f9faed42f14406c603f2d8b1","success":true,"message":null,"statistics":{"elapsed":3,"rows_read":12982,"bytes_read":434570,"result_size":2245,"result_rows":42},"job":null,"formatType":"json","meta":[{"name":"app_label","type":"string","category":"Dimension"},{"name":"http_response_latency","type":"double","category":"Metric"}],"data":{"resultType":"table","result":[{"appLabel":"qqvideo","httpResponseLatency":65.8873},{"appLabel":"uplive","httpResponseLatency":59.2162},{"appLabel":"xiaomi","httpResponseLatency":155.2906},{"appLabel":"qq_web","httpResponseLatency":113.7327},{"appLabel":"mpegts","httpResponseLatency":74.393},{"appLabel":"kuaishou","httpResponseLatency":385.5914},{"appLabel":"iperf","httpResponseLatency":125.3333},{"appLabel":"mango_tv","httpResponseLatency":545.9437},{"appLabel":"youku","httpResponseLatency":55.9517},{"appLabel":"huawei","httpResponseLatency":108.8767},{"appLabel":"ximalaya","httpResponseLatency":67.2947},{"appLabel":"bilibili","httpResponseLatency":113.9537},{"appLabel":"ixigua","httpResponseLatency":546.6292},{"appLabel":"mitalk","httpResponseLatency":51},{"appLabel":"163com","httpResponseLatency":146.1114},{"appLabel":"meitu","httpResponseLatency":390.7221},{"appLabel":"tencent","httpResponseLatency":562.1833},{"appLabel":"netease","httpResponseLatency":269.2048},{"appLabel":"flash","httpResponseLatency":80.7997},{"appLabel":"jingdong","httpResponseLatency":51.5389},{"appLabel":"douyin","httpResponseLatency":147.1872},{"appLabel":"baidu","httpResponseLatency":137.3964},{"appLabel":"taobao","httpResponseLatency":62.6976},{"appLabel":"toutiao","httpResponseLatency":211.3539},{"appLabel":"cibn","httpResponseLatency":114.5115},{"appLabel":"iqiyi","httpResponseLatency":100.5626},{"appLabel":"bmff","httpResponseLatency":293.3617},{"appLabel":"kugou","httpResponseLatency":183.6093},{"appLabel":"wechat","httpResponseLatency":150.4299},{"appLabel":"windows_update","httpResponseLatency":142.1594},{"appLabel":"gaode_map","httpResponseLatency":1082.5312},{"appLabel":"uc_browser","httpResponseLatency":498.1972},{"appLabel":"office365","httpResponseLatency":233.9082},{"appLabel":"bytedance","httpResponseLatency":185.3557},{"appLabel":"bittorrent","httpResponseLatency":578.7939},{"appLabel":"alibaba_cloud","httpResponseLatency":126.2049},{"appLabel":"pinduoduo","httpResponseLatency":1788.5914},{"appLabel":"alibaba_group","httpResponseLatency":194.3976},{"appLabel":"chinanetcenter","httpResponseLatency":177.1662},{"appLabel":"sina_weibo","httpResponseLatency":55.1753},{"appLabel":"xiaohongshu","httpResponseLatency":101.6416},{"appLabel":"netease_cloud_music","httpResponseLatency":430.9772}]},"originalUrl":"http://192.168.44.55:9999/?query= SELECT common_app_label AS app_label, ROUND(AVG(avg_http_response_latency_ms), 4) AS http_response_latency FROM metric_application WHERE stat_time >= toDateTime(1677224704) AND stat_time < toDateTime(1677228304) AND isNotNull(avg_http_response_latency_ms) AND app_label IN ( 'douyin','wechat','kuaishou','alibaba_cloud','bmff','netease_cloud_music','qq_web','wtls','bytedance','toutiao','pinduoduo','http2','baidu','netease','flash','kugou','sina_weibo','xiaomi','cibn','bittorrent','appstore','windows_update','iqiyi','ixigua','uc_browser','tencent','jingdong','iperf','office365','alibaba_group','experion','youku','xiaohongshu','taobao','uplive','qqvideo','mitalk','mpegts','huawei','bilibili','chinanetcenter','mango_tv','gaode_map','speedtest','ultrasurf','163com','mgcp','wsp','ximalaya','meitu' ) GROUP BY app_label &format=json&option=real-time","msg":"OK"}} -const mockGetScoreTcpSessionDelayCycle = { "data": {"status":200,"code":200,"queryKey":"51c36b067aae8c9ce3a544062d9d1d3c","success":true,"message":null,"statistics":{"elapsed":2,"rows_read":8192,"bytes_read":274195,"result_size":2277,"result_rows":44},"job":null,"formatType":"json","meta":[{"name":"app_label","type":"string","category":"Dimension"},{"name":"establish_latency_ms","type":"double","category":"Metric"}],"data":{"resultType":"table","result":[{"appLabel":"qqvideo","establishLatencyMs":52.0227},{"appLabel":"uplive","establishLatencyMs":57.1237},{"appLabel":"xiaomi","establishLatencyMs":162.0899},{"appLabel":"qq_web","establishLatencyMs":82.0772},{"appLabel":"mpegts","establishLatencyMs":71.1648},{"appLabel":"kuaishou","establishLatencyMs":153.9623},{"appLabel":"iperf","establishLatencyMs":93.5649},{"appLabel":"mango_tv","establishLatencyMs":93.977},{"appLabel":"youku","establishLatencyMs":83.5077},{"appLabel":"huawei","establishLatencyMs":78.5598},{"appLabel":"ximalaya","establishLatencyMs":52.4955},{"appLabel":"bilibili","establishLatencyMs":61.5685},{"appLabel":"ixigua","establishLatencyMs":66.1651},{"appLabel":"mitalk","establishLatencyMs":72.6713},{"appLabel":"163com","establishLatencyMs":128.0682},{"appLabel":"meitu","establishLatencyMs":56.8629},{"appLabel":"tencent","establishLatencyMs":213.9663},{"appLabel":"netease","establishLatencyMs":71.2493},{"appLabel":"http2","establishLatencyMs":91.948},{"appLabel":"flash","establishLatencyMs":67.2667},{"appLabel":"jingdong","establishLatencyMs":60.9477},{"appLabel":"douyin","establishLatencyMs":78.1607},{"appLabel":"baidu","establishLatencyMs":70.7046},{"appLabel":"taobao","establishLatencyMs":61.4626},{"appLabel":"appstore","establishLatencyMs":23.3},{"appLabel":"toutiao","establishLatencyMs":72.3915},{"appLabel":"cibn","establishLatencyMs":36.5924},{"appLabel":"iqiyi","establishLatencyMs":111.4572},{"appLabel":"bmff","establishLatencyMs":106.0877},{"appLabel":"kugou","establishLatencyMs":96.988},{"appLabel":"wechat","establishLatencyMs":94.9763},{"appLabel":"windows_update","establishLatencyMs":223.8323},{"appLabel":"gaode_map","establishLatencyMs":81.6277},{"appLabel":"uc_browser","establishLatencyMs":83.8552},{"appLabel":"office365","establishLatencyMs":58.2968},{"appLabel":"bytedance","establishLatencyMs":81.104},{"appLabel":"bittorrent","establishLatencyMs":874.1813},{"appLabel":"alibaba_cloud","establishLatencyMs":70.9071},{"appLabel":"pinduoduo","establishLatencyMs":85.4756},{"appLabel":"alibaba_group","establishLatencyMs":105.4614},{"appLabel":"chinanetcenter","establishLatencyMs":98.7178},{"appLabel":"sina_weibo","establishLatencyMs":60.8279},{"appLabel":"xiaohongshu","establishLatencyMs":61.516},{"appLabel":"netease_cloud_music","establishLatencyMs":92.2605}]},"originalUrl":"http://192.168.44.55:9999/?query= SELECT common_app_label AS app_label, ROUND(AVG(avg_establish_latency_ms), 4) AS establish_latency_ms FROM metric_application WHERE stat_time >= toDateTime(1677224704)-3600 AND stat_time < toDateTime(1677228304)-3600 AND isNotNull(avg_establish_latency_ms) AND app_label IN ( 'douyin','wechat','kuaishou','alibaba_cloud','bmff','netease_cloud_music','qq_web','wtls','bytedance','toutiao','pinduoduo','http2','baidu','netease','flash','kugou','sina_weibo','xiaomi','cibn','bittorrent','appstore','windows_update','iqiyi','ixigua','uc_browser','tencent','jingdong','iperf','office365','alibaba_group','experion','youku','xiaohongshu','taobao','uplive','qqvideo','mitalk','mpegts','huawei','bilibili','chinanetcenter','mango_tv','gaode_map','speedtest','ultrasurf','163com','mgcp','wsp','ximalaya','meitu' ) GROUP BY app_label &format=json&option=real-time","msg":"OK"}} -const mockGetScoreSslConDelayCycle = { "data": {"status":200,"code":200,"queryKey":"95eb971572401d8f48341554d6adec34","success":true,"message":null,"statistics":{"elapsed":2,"rows_read":8192,"bytes_read":274195,"result_size":1672,"result_rows":41},"job":null,"formatType":"json","meta":[{"name":"app_label","type":"string","category":"Dimension"},{"name":"ssl_con_latency","type":"double","category":"Metric"}],"data":{"resultType":"table","result":[{"appLabel":"qqvideo","sslConLatency":0},{"appLabel":"uplive","sslConLatency":0},{"appLabel":"xiaomi","sslConLatency":0},{"appLabel":"qq_web","sslConLatency":0},{"appLabel":"kuaishou","sslConLatency":0},{"appLabel":"iperf","sslConLatency":0},{"appLabel":"mango_tv","sslConLatency":0},{"appLabel":"youku","sslConLatency":0},{"appLabel":"huawei","sslConLatency":0},{"appLabel":"ximalaya","sslConLatency":0},{"appLabel":"bilibili","sslConLatency":0},{"appLabel":"ixigua","sslConLatency":0},{"appLabel":"mitalk","sslConLatency":0},{"appLabel":"163com","sslConLatency":0},{"appLabel":"meitu","sslConLatency":0},{"appLabel":"tencent","sslConLatency":0},{"appLabel":"netease","sslConLatency":0},{"appLabel":"http2","sslConLatency":0},{"appLabel":"jingdong","sslConLatency":0},{"appLabel":"douyin","sslConLatency":0},{"appLabel":"baidu","sslConLatency":0},{"appLabel":"taobao","sslConLatency":0},{"appLabel":"appstore","sslConLatency":0},{"appLabel":"toutiao","sslConLatency":0},{"appLabel":"cibn","sslConLatency":0},{"appLabel":"iqiyi","sslConLatency":0},{"appLabel":"bmff","sslConLatency":0},{"appLabel":"kugou","sslConLatency":0},{"appLabel":"wechat","sslConLatency":0},{"appLabel":"windows_update","sslConLatency":0},{"appLabel":"gaode_map","sslConLatency":0},{"appLabel":"uc_browser","sslConLatency":0},{"appLabel":"office365","sslConLatency":0},{"appLabel":"bytedance","sslConLatency":0},{"appLabel":"alibaba_cloud","sslConLatency":0},{"appLabel":"pinduoduo","sslConLatency":0},{"appLabel":"alibaba_group","sslConLatency":0},{"appLabel":"chinanetcenter","sslConLatency":0},{"appLabel":"sina_weibo","sslConLatency":0},{"appLabel":"xiaohongshu","sslConLatency":0},{"appLabel":"netease_cloud_music","sslConLatency":0}]},"originalUrl":"http://192.168.44.55:9999/?query= SELECT common_app_label AS app_label, ROUND(AVG(avg_ssl_con_latency_ms), 4) AS ssl_con_latency FROM metric_application WHERE stat_time >= toDateTime(1677224704)-3600 AND stat_time < toDateTime(1677228304)-3600 AND isNotNull(avg_ssl_con_latency_ms) AND app_label IN ( 'douyin','wechat','kuaishou','alibaba_cloud','bmff','netease_cloud_music','qq_web','wtls','bytedance','toutiao','pinduoduo','http2','baidu','netease','flash','kugou','sina_weibo','xiaomi','cibn','bittorrent','appstore','windows_update','iqiyi','ixigua','uc_browser','tencent','jingdong','iperf','office365','alibaba_group','experion','youku','xiaohongshu','taobao','uplive','qqvideo','mitalk','mpegts','huawei','bilibili','chinanetcenter','mango_tv','gaode_map','speedtest','ultrasurf','163com','mgcp','wsp','ximalaya','meitu' ) GROUP BY app_label &format=json&option=real-time","msg":"OK"}} -const mockGetScorePacketRetransPercentCycle = { "data": {"status":200,"code":200,"queryKey":"245fb420ba7acc36daad95cf055593c7","success":true,"message":null,"statistics":{"elapsed":2,"rows_read":8192,"bytes_read":274195,"result_size":2179,"result_rows":44},"job":null,"formatType":"json","meta":[{"name":"app_label","type":"string","category":"Dimension"},{"name":"pkt_retrans_percent","type":"double","category":"Metric"}],"data":{"resultType":"table","result":[{"appLabel":"qqvideo","pktRetransPercent":0.0596},{"appLabel":"uplive","pktRetransPercent":0},{"appLabel":"xiaomi","pktRetransPercent":0.0539},{"appLabel":"qq_web","pktRetransPercent":0.0578},{"appLabel":"mpegts","pktRetransPercent":0.0099},{"appLabel":"kuaishou","pktRetransPercent":0.0549},{"appLabel":"iperf","pktRetransPercent":0.0056},{"appLabel":"mango_tv","pktRetransPercent":0.0245},{"appLabel":"youku","pktRetransPercent":0.0211},{"appLabel":"huawei","pktRetransPercent":0.0182},{"appLabel":"ximalaya","pktRetransPercent":0.0074},{"appLabel":"bilibili","pktRetransPercent":0.02},{"appLabel":"ixigua","pktRetransPercent":0.0324},{"appLabel":"mitalk","pktRetransPercent":0.0206},{"appLabel":"163com","pktRetransPercent":0.0274},{"appLabel":"meitu","pktRetransPercent":0.0173},{"appLabel":"tencent","pktRetransPercent":0.0785},{"appLabel":"netease","pktRetransPercent":0.0685},{"appLabel":"http2","pktRetransPercent":0.0282},{"appLabel":"flash","pktRetransPercent":0.0295},{"appLabel":"jingdong","pktRetransPercent":0.0077},{"appLabel":"douyin","pktRetransPercent":0.0302},{"appLabel":"baidu","pktRetransPercent":0.0337},{"appLabel":"taobao","pktRetransPercent":0.0083},{"appLabel":"appstore","pktRetransPercent":6.0E-4},{"appLabel":"toutiao","pktRetransPercent":0.062},{"appLabel":"cibn","pktRetransPercent":0.0049},{"appLabel":"iqiyi","pktRetransPercent":0.0249},{"appLabel":"bmff","pktRetransPercent":0.0349},{"appLabel":"kugou","pktRetransPercent":0.0499},{"appLabel":"wechat","pktRetransPercent":0.095},{"appLabel":"windows_update","pktRetransPercent":0.0071},{"appLabel":"gaode_map","pktRetransPercent":0.0325},{"appLabel":"uc_browser","pktRetransPercent":0.0495},{"appLabel":"office365","pktRetransPercent":0.0021},{"appLabel":"bytedance","pktRetransPercent":0.0153},{"appLabel":"bittorrent","pktRetransPercent":0.0335},{"appLabel":"alibaba_cloud","pktRetransPercent":0.0135},{"appLabel":"pinduoduo","pktRetransPercent":0.0272},{"appLabel":"alibaba_group","pktRetransPercent":0.0443},{"appLabel":"chinanetcenter","pktRetransPercent":0.0086},{"appLabel":"sina_weibo","pktRetransPercent":0.0357},{"appLabel":"xiaohongshu","pktRetransPercent":0.0065},{"appLabel":"netease_cloud_music","pktRetransPercent":0.0608}]},"originalUrl":"http://192.168.44.55:9999/?query= SELECT common_app_label AS app_label, ROUND(AVG(pkt_retrans_ratio), 4) AS pkt_retrans_percent FROM metric_application WHERE stat_time >= toDateTime(1677224704)-3600 AND stat_time < toDateTime(1677228304)-3600 AND isNotNull(pkt_retrans_ratio) AND app_label IN ( 'douyin','wechat','kuaishou','alibaba_cloud','bmff','netease_cloud_music','qq_web','wtls','bytedance','toutiao','pinduoduo','http2','baidu','netease','flash','kugou','sina_weibo','xiaomi','cibn','bittorrent','appstore','windows_update','iqiyi','ixigua','uc_browser','tencent','jingdong','iperf','office365','alibaba_group','experion','youku','xiaohongshu','taobao','uplive','qqvideo','mitalk','mpegts','huawei','bilibili','chinanetcenter','mango_tv','gaode_map','speedtest','ultrasurf','163com','mgcp','wsp','ximalaya','meitu' ) GROUP BY app_label &format=json&option=real-time","msg":"OK"}} -const mockGetScoreTcpLostlenPercentCycle = { "data": {"status":200,"code":200,"queryKey":"6ec5f2ef9e9bfd55f663ac533ec005de","success":true,"message":null,"statistics":{"elapsed":2,"rows_read":8192,"bytes_read":274195,"result_size":2174,"result_rows":44},"job":null,"formatType":"json","meta":[{"name":"app_label","type":"string","category":"Dimension"},{"name":"tcp_lostlen_percent","type":"double","category":"Metric"}],"data":{"resultType":"table","result":[{"appLabel":"qqvideo","tcpLostlenPercent":0.0043},{"appLabel":"uplive","tcpLostlenPercent":0},{"appLabel":"xiaomi","tcpLostlenPercent":0.023},{"appLabel":"qq_web","tcpLostlenPercent":0.0076},{"appLabel":"mpegts","tcpLostlenPercent":0.0027},{"appLabel":"kuaishou","tcpLostlenPercent":0.0069},{"appLabel":"iperf","tcpLostlenPercent":0.007},{"appLabel":"mango_tv","tcpLostlenPercent":0.0038},{"appLabel":"youku","tcpLostlenPercent":0.0047},{"appLabel":"huawei","tcpLostlenPercent":0.0025},{"appLabel":"ximalaya","tcpLostlenPercent":0.0021},{"appLabel":"bilibili","tcpLostlenPercent":0.0166},{"appLabel":"ixigua","tcpLostlenPercent":0.0155},{"appLabel":"mitalk","tcpLostlenPercent":0.0021},{"appLabel":"163com","tcpLostlenPercent":0},{"appLabel":"meitu","tcpLostlenPercent":0.0029},{"appLabel":"tencent","tcpLostlenPercent":0.0034},{"appLabel":"netease","tcpLostlenPercent":3.0E-4},{"appLabel":"http2","tcpLostlenPercent":0.0149},{"appLabel":"flash","tcpLostlenPercent":0.005},{"appLabel":"jingdong","tcpLostlenPercent":0.0048},{"appLabel":"douyin","tcpLostlenPercent":0.0091},{"appLabel":"baidu","tcpLostlenPercent":0.0087},{"appLabel":"taobao","tcpLostlenPercent":0.0036},{"appLabel":"appstore","tcpLostlenPercent":0.0218},{"appLabel":"toutiao","tcpLostlenPercent":4.0E-4},{"appLabel":"cibn","tcpLostlenPercent":0.0087},{"appLabel":"iqiyi","tcpLostlenPercent":0.005},{"appLabel":"bmff","tcpLostlenPercent":0.0079},{"appLabel":"kugou","tcpLostlenPercent":0.0142},{"appLabel":"wechat","tcpLostlenPercent":0.0086},{"appLabel":"windows_update","tcpLostlenPercent":0.0022},{"appLabel":"gaode_map","tcpLostlenPercent":4.0E-4},{"appLabel":"uc_browser","tcpLostlenPercent":0.0046},{"appLabel":"office365","tcpLostlenPercent":0.0029},{"appLabel":"bytedance","tcpLostlenPercent":0.0085},{"appLabel":"bittorrent","tcpLostlenPercent":0.0139},{"appLabel":"alibaba_cloud","tcpLostlenPercent":0.0037},{"appLabel":"pinduoduo","tcpLostlenPercent":0.0063},{"appLabel":"alibaba_group","tcpLostlenPercent":0.0033},{"appLabel":"chinanetcenter","tcpLostlenPercent":0.0066},{"appLabel":"sina_weibo","tcpLostlenPercent":0.0052},{"appLabel":"xiaohongshu","tcpLostlenPercent":0.0084},{"appLabel":"netease_cloud_music","tcpLostlenPercent":2.0E-4}]},"originalUrl":"http://192.168.44.55:9999/?query= SELECT common_app_label AS app_label, ROUND(AVG(tcp_lostlen_ratio), 4) AS tcp_lostlen_percent FROM metric_application WHERE stat_time >= toDateTime(1677224704)-3600 AND stat_time < toDateTime(1677228304)-3600 AND isNotNull(tcp_lostlen_ratio) AND app_label IN ( 'douyin','wechat','kuaishou','alibaba_cloud','bmff','netease_cloud_music','qq_web','wtls','bytedance','toutiao','pinduoduo','http2','baidu','netease','flash','kugou','sina_weibo','xiaomi','cibn','bittorrent','appstore','windows_update','iqiyi','ixigua','uc_browser','tencent','jingdong','iperf','office365','alibaba_group','experion','youku','xiaohongshu','taobao','uplive','qqvideo','mitalk','mpegts','huawei','bilibili','chinanetcenter','mango_tv','gaode_map','speedtest','ultrasurf','163com','mgcp','wsp','ximalaya','meitu' ) GROUP BY app_label &format=json&option=real-time","msg":"OK"}} -const mockGetScoreHttpResponseDelayCycle = { "data": {"status":200,"code":200,"queryKey":"a5089f743bce34d5507bb5735a1e1bb9","success":true,"message":null,"statistics":{"elapsed":2,"rows_read":8192,"bytes_read":274195,"result_size":2239,"result_rows":42},"job":null,"formatType":"json","meta":[{"name":"app_label","type":"string","category":"Dimension"},{"name":"http_response_latency","type":"double","category":"Metric"}],"data":{"resultType":"table","result":[{"appLabel":"qqvideo","httpResponseLatency":58.3586},{"appLabel":"uplive","httpResponseLatency":58.3276},{"appLabel":"xiaomi","httpResponseLatency":255.5454},{"appLabel":"qq_web","httpResponseLatency":121.0739},{"appLabel":"mpegts","httpResponseLatency":73.4589},{"appLabel":"kuaishou","httpResponseLatency":415.5194},{"appLabel":"iperf","httpResponseLatency":122.8889},{"appLabel":"mango_tv","httpResponseLatency":483.2962},{"appLabel":"youku","httpResponseLatency":52.168},{"appLabel":"huawei","httpResponseLatency":109.4998},{"appLabel":"ximalaya","httpResponseLatency":56.2959},{"appLabel":"bilibili","httpResponseLatency":137.4569},{"appLabel":"ixigua","httpResponseLatency":63.9122},{"appLabel":"mitalk","httpResponseLatency":51},{"appLabel":"163com","httpResponseLatency":526.3931},{"appLabel":"meitu","httpResponseLatency":212.8459},{"appLabel":"tencent","httpResponseLatency":360.977},{"appLabel":"netease","httpResponseLatency":252.1966},{"appLabel":"flash","httpResponseLatency":116.1838},{"appLabel":"jingdong","httpResponseLatency":55.0174},{"appLabel":"douyin","httpResponseLatency":163.4641},{"appLabel":"baidu","httpResponseLatency":121.4797},{"appLabel":"taobao","httpResponseLatency":62.7715},{"appLabel":"toutiao","httpResponseLatency":226.9452},{"appLabel":"cibn","httpResponseLatency":65.2762},{"appLabel":"iqiyi","httpResponseLatency":88.4371},{"appLabel":"bmff","httpResponseLatency":313.0338},{"appLabel":"kugou","httpResponseLatency":144.8374},{"appLabel":"wechat","httpResponseLatency":215.028},{"appLabel":"windows_update","httpResponseLatency":302.4741},{"appLabel":"gaode_map","httpResponseLatency":121.5773},{"appLabel":"uc_browser","httpResponseLatency":268.5431},{"appLabel":"office365","httpResponseLatency":144.6031},{"appLabel":"bytedance","httpResponseLatency":165.572},{"appLabel":"bittorrent","httpResponseLatency":1288.7593},{"appLabel":"alibaba_cloud","httpResponseLatency":132.5711},{"appLabel":"pinduoduo","httpResponseLatency":1458.2452},{"appLabel":"alibaba_group","httpResponseLatency":244.2192},{"appLabel":"chinanetcenter","httpResponseLatency":100.6967},{"appLabel":"sina_weibo","httpResponseLatency":56.6954},{"appLabel":"xiaohongshu","httpResponseLatency":66.0377},{"appLabel":"netease_cloud_music","httpResponseLatency":326.9596}]},"originalUrl":"http://192.168.44.55:9999/?query= SELECT common_app_label AS app_label, ROUND(AVG(avg_http_response_latency_ms), 4) AS http_response_latency FROM metric_application WHERE stat_time >= toDateTime(1677224704)-3600 AND stat_time < toDateTime(1677228304)-3600 AND isNotNull(avg_http_response_latency_ms) AND app_label IN ( 'douyin','wechat','kuaishou','alibaba_cloud','bmff','netease_cloud_music','qq_web','wtls','bytedance','toutiao','pinduoduo','http2','baidu','netease','flash','kugou','sina_weibo','xiaomi','cibn','bittorrent','appstore','windows_update','iqiyi','ixigua','uc_browser','tencent','jingdong','iperf','office365','alibaba_group','experion','youku','xiaohongshu','taobao','uplive','qqvideo','mitalk','mpegts','huawei','bilibili','chinanetcenter','mango_tv','gaode_map','speedtest','ultrasurf','163com','mgcp','wsp','ximalaya','meitu' ) GROUP BY app_label &format=json&option=real-time","msg":"OK"}} +const mockGetScoreTcpSessionDelayCycle = { status: 200, "data": {"status":200,"code":200,"queryKey":"51c36b067aae8c9ce3a544062d9d1d3c","success":true,"message":null,"statistics":{"elapsed":2,"rows_read":8192,"bytes_read":274195,"result_size":2277,"result_rows":44},"job":null,"formatType":"json","meta":[{"name":"app_label","type":"string","category":"Dimension"},{"name":"establish_latency_ms","type":"double","category":"Metric"}],"data":{"resultType":"table","result":[{"appLabel":"qqvideo","establishLatencyMs":52.0227},{"appLabel":"uplive","establishLatencyMs":57.1237},{"appLabel":"xiaomi","establishLatencyMs":162.0899},{"appLabel":"qq_web","establishLatencyMs":82.0772},{"appLabel":"mpegts","establishLatencyMs":71.1648},{"appLabel":"kuaishou","establishLatencyMs":153.9623},{"appLabel":"iperf","establishLatencyMs":93.5649},{"appLabel":"mango_tv","establishLatencyMs":93.977},{"appLabel":"youku","establishLatencyMs":83.5077},{"appLabel":"huawei","establishLatencyMs":78.5598},{"appLabel":"ximalaya","establishLatencyMs":52.4955},{"appLabel":"bilibili","establishLatencyMs":61.5685},{"appLabel":"ixigua","establishLatencyMs":66.1651},{"appLabel":"mitalk","establishLatencyMs":72.6713},{"appLabel":"163com","establishLatencyMs":128.0682},{"appLabel":"meitu","establishLatencyMs":56.8629},{"appLabel":"tencent","establishLatencyMs":213.9663},{"appLabel":"netease","establishLatencyMs":71.2493},{"appLabel":"http2","establishLatencyMs":91.948},{"appLabel":"flash","establishLatencyMs":67.2667},{"appLabel":"jingdong","establishLatencyMs":60.9477},{"appLabel":"douyin","establishLatencyMs":78.1607},{"appLabel":"baidu","establishLatencyMs":70.7046},{"appLabel":"taobao","establishLatencyMs":61.4626},{"appLabel":"appstore","establishLatencyMs":23.3},{"appLabel":"toutiao","establishLatencyMs":72.3915},{"appLabel":"cibn","establishLatencyMs":36.5924},{"appLabel":"iqiyi","establishLatencyMs":111.4572},{"appLabel":"bmff","establishLatencyMs":106.0877},{"appLabel":"kugou","establishLatencyMs":96.988},{"appLabel":"wechat","establishLatencyMs":94.9763},{"appLabel":"windows_update","establishLatencyMs":223.8323},{"appLabel":"gaode_map","establishLatencyMs":81.6277},{"appLabel":"uc_browser","establishLatencyMs":83.8552},{"appLabel":"office365","establishLatencyMs":58.2968},{"appLabel":"bytedance","establishLatencyMs":81.104},{"appLabel":"bittorrent","establishLatencyMs":874.1813},{"appLabel":"alibaba_cloud","establishLatencyMs":70.9071},{"appLabel":"pinduoduo","establishLatencyMs":85.4756},{"appLabel":"alibaba_group","establishLatencyMs":105.4614},{"appLabel":"chinanetcenter","establishLatencyMs":98.7178},{"appLabel":"sina_weibo","establishLatencyMs":60.8279},{"appLabel":"xiaohongshu","establishLatencyMs":61.516},{"appLabel":"netease_cloud_music","establishLatencyMs":92.2605}]},"originalUrl":"http://192.168.44.55:9999/?query= SELECT common_app_label AS app_label, ROUND(AVG(avg_establish_latency_ms), 4) AS establish_latency_ms FROM metric_application WHERE stat_time >= toDateTime(1677224704)-3600 AND stat_time < toDateTime(1677228304)-3600 AND isNotNull(avg_establish_latency_ms) AND app_label IN ( 'douyin','wechat','kuaishou','alibaba_cloud','bmff','netease_cloud_music','qq_web','wtls','bytedance','toutiao','pinduoduo','http2','baidu','netease','flash','kugou','sina_weibo','xiaomi','cibn','bittorrent','appstore','windows_update','iqiyi','ixigua','uc_browser','tencent','jingdong','iperf','office365','alibaba_group','experion','youku','xiaohongshu','taobao','uplive','qqvideo','mitalk','mpegts','huawei','bilibili','chinanetcenter','mango_tv','gaode_map','speedtest','ultrasurf','163com','mgcp','wsp','ximalaya','meitu' ) GROUP BY app_label &format=json&option=real-time","msg":"OK"}} +const mockGetScoreSslConDelayCycle = { status: 200, "data": {"status":200,"code":200,"queryKey":"95eb971572401d8f48341554d6adec34","success":true,"message":null,"statistics":{"elapsed":2,"rows_read":8192,"bytes_read":274195,"result_size":1672,"result_rows":41},"job":null,"formatType":"json","meta":[{"name":"app_label","type":"string","category":"Dimension"},{"name":"ssl_con_latency","type":"double","category":"Metric"}],"data":{"resultType":"table","result":[{"appLabel":"qqvideo","sslConLatency":0},{"appLabel":"uplive","sslConLatency":0},{"appLabel":"xiaomi","sslConLatency":0},{"appLabel":"qq_web","sslConLatency":0},{"appLabel":"kuaishou","sslConLatency":0},{"appLabel":"iperf","sslConLatency":0},{"appLabel":"mango_tv","sslConLatency":0},{"appLabel":"youku","sslConLatency":0},{"appLabel":"huawei","sslConLatency":0},{"appLabel":"ximalaya","sslConLatency":0},{"appLabel":"bilibili","sslConLatency":0},{"appLabel":"ixigua","sslConLatency":0},{"appLabel":"mitalk","sslConLatency":0},{"appLabel":"163com","sslConLatency":0},{"appLabel":"meitu","sslConLatency":0},{"appLabel":"tencent","sslConLatency":0},{"appLabel":"netease","sslConLatency":0},{"appLabel":"http2","sslConLatency":0},{"appLabel":"jingdong","sslConLatency":0},{"appLabel":"douyin","sslConLatency":0},{"appLabel":"baidu","sslConLatency":0},{"appLabel":"taobao","sslConLatency":0},{"appLabel":"appstore","sslConLatency":0},{"appLabel":"toutiao","sslConLatency":0},{"appLabel":"cibn","sslConLatency":0},{"appLabel":"iqiyi","sslConLatency":0},{"appLabel":"bmff","sslConLatency":0},{"appLabel":"kugou","sslConLatency":0},{"appLabel":"wechat","sslConLatency":0},{"appLabel":"windows_update","sslConLatency":0},{"appLabel":"gaode_map","sslConLatency":0},{"appLabel":"uc_browser","sslConLatency":0},{"appLabel":"office365","sslConLatency":0},{"appLabel":"bytedance","sslConLatency":0},{"appLabel":"alibaba_cloud","sslConLatency":0},{"appLabel":"pinduoduo","sslConLatency":0},{"appLabel":"alibaba_group","sslConLatency":0},{"appLabel":"chinanetcenter","sslConLatency":0},{"appLabel":"sina_weibo","sslConLatency":0},{"appLabel":"xiaohongshu","sslConLatency":0},{"appLabel":"netease_cloud_music","sslConLatency":0}]},"originalUrl":"http://192.168.44.55:9999/?query= SELECT common_app_label AS app_label, ROUND(AVG(avg_ssl_con_latency_ms), 4) AS ssl_con_latency FROM metric_application WHERE stat_time >= toDateTime(1677224704)-3600 AND stat_time < toDateTime(1677228304)-3600 AND isNotNull(avg_ssl_con_latency_ms) AND app_label IN ( 'douyin','wechat','kuaishou','alibaba_cloud','bmff','netease_cloud_music','qq_web','wtls','bytedance','toutiao','pinduoduo','http2','baidu','netease','flash','kugou','sina_weibo','xiaomi','cibn','bittorrent','appstore','windows_update','iqiyi','ixigua','uc_browser','tencent','jingdong','iperf','office365','alibaba_group','experion','youku','xiaohongshu','taobao','uplive','qqvideo','mitalk','mpegts','huawei','bilibili','chinanetcenter','mango_tv','gaode_map','speedtest','ultrasurf','163com','mgcp','wsp','ximalaya','meitu' ) GROUP BY app_label &format=json&option=real-time","msg":"OK"}} +const mockGetScorePacketRetransPercentCycle = { status: 200, "data": {"status":200,"code":200,"queryKey":"245fb420ba7acc36daad95cf055593c7","success":true,"message":null,"statistics":{"elapsed":2,"rows_read":8192,"bytes_read":274195,"result_size":2179,"result_rows":44},"job":null,"formatType":"json","meta":[{"name":"app_label","type":"string","category":"Dimension"},{"name":"pkt_retrans_percent","type":"double","category":"Metric"}],"data":{"resultType":"table","result":[{"appLabel":"qqvideo","pktRetransPercent":0.0596},{"appLabel":"uplive","pktRetransPercent":0},{"appLabel":"xiaomi","pktRetransPercent":0.0539},{"appLabel":"qq_web","pktRetransPercent":0.0578},{"appLabel":"mpegts","pktRetransPercent":0.0099},{"appLabel":"kuaishou","pktRetransPercent":0.0549},{"appLabel":"iperf","pktRetransPercent":0.0056},{"appLabel":"mango_tv","pktRetransPercent":0.0245},{"appLabel":"youku","pktRetransPercent":0.0211},{"appLabel":"huawei","pktRetransPercent":0.0182},{"appLabel":"ximalaya","pktRetransPercent":0.0074},{"appLabel":"bilibili","pktRetransPercent":0.02},{"appLabel":"ixigua","pktRetransPercent":0.0324},{"appLabel":"mitalk","pktRetransPercent":0.0206},{"appLabel":"163com","pktRetransPercent":0.0274},{"appLabel":"meitu","pktRetransPercent":0.0173},{"appLabel":"tencent","pktRetransPercent":0.0785},{"appLabel":"netease","pktRetransPercent":0.0685},{"appLabel":"http2","pktRetransPercent":0.0282},{"appLabel":"flash","pktRetransPercent":0.0295},{"appLabel":"jingdong","pktRetransPercent":0.0077},{"appLabel":"douyin","pktRetransPercent":0.0302},{"appLabel":"baidu","pktRetransPercent":0.0337},{"appLabel":"taobao","pktRetransPercent":0.0083},{"appLabel":"appstore","pktRetransPercent":6.0E-4},{"appLabel":"toutiao","pktRetransPercent":0.062},{"appLabel":"cibn","pktRetransPercent":0.0049},{"appLabel":"iqiyi","pktRetransPercent":0.0249},{"appLabel":"bmff","pktRetransPercent":0.0349},{"appLabel":"kugou","pktRetransPercent":0.0499},{"appLabel":"wechat","pktRetransPercent":0.095},{"appLabel":"windows_update","pktRetransPercent":0.0071},{"appLabel":"gaode_map","pktRetransPercent":0.0325},{"appLabel":"uc_browser","pktRetransPercent":0.0495},{"appLabel":"office365","pktRetransPercent":0.0021},{"appLabel":"bytedance","pktRetransPercent":0.0153},{"appLabel":"bittorrent","pktRetransPercent":0.0335},{"appLabel":"alibaba_cloud","pktRetransPercent":0.0135},{"appLabel":"pinduoduo","pktRetransPercent":0.0272},{"appLabel":"alibaba_group","pktRetransPercent":0.0443},{"appLabel":"chinanetcenter","pktRetransPercent":0.0086},{"appLabel":"sina_weibo","pktRetransPercent":0.0357},{"appLabel":"xiaohongshu","pktRetransPercent":0.0065},{"appLabel":"netease_cloud_music","pktRetransPercent":0.0608}]},"originalUrl":"http://192.168.44.55:9999/?query= SELECT common_app_label AS app_label, ROUND(AVG(pkt_retrans_ratio), 4) AS pkt_retrans_percent FROM metric_application WHERE stat_time >= toDateTime(1677224704)-3600 AND stat_time < toDateTime(1677228304)-3600 AND isNotNull(pkt_retrans_ratio) AND app_label IN ( 'douyin','wechat','kuaishou','alibaba_cloud','bmff','netease_cloud_music','qq_web','wtls','bytedance','toutiao','pinduoduo','http2','baidu','netease','flash','kugou','sina_weibo','xiaomi','cibn','bittorrent','appstore','windows_update','iqiyi','ixigua','uc_browser','tencent','jingdong','iperf','office365','alibaba_group','experion','youku','xiaohongshu','taobao','uplive','qqvideo','mitalk','mpegts','huawei','bilibili','chinanetcenter','mango_tv','gaode_map','speedtest','ultrasurf','163com','mgcp','wsp','ximalaya','meitu' ) GROUP BY app_label &format=json&option=real-time","msg":"OK"}} +const mockGetScoreTcpLostlenPercentCycle = { status: 200, "data": {"status":200,"code":200,"queryKey":"6ec5f2ef9e9bfd55f663ac533ec005de","success":true,"message":null,"statistics":{"elapsed":2,"rows_read":8192,"bytes_read":274195,"result_size":2174,"result_rows":44},"job":null,"formatType":"json","meta":[{"name":"app_label","type":"string","category":"Dimension"},{"name":"tcp_lostlen_percent","type":"double","category":"Metric"}],"data":{"resultType":"table","result":[{"appLabel":"qqvideo","tcpLostlenPercent":0.0043},{"appLabel":"uplive","tcpLostlenPercent":0},{"appLabel":"xiaomi","tcpLostlenPercent":0.023},{"appLabel":"qq_web","tcpLostlenPercent":0.0076},{"appLabel":"mpegts","tcpLostlenPercent":0.0027},{"appLabel":"kuaishou","tcpLostlenPercent":0.0069},{"appLabel":"iperf","tcpLostlenPercent":0.007},{"appLabel":"mango_tv","tcpLostlenPercent":0.0038},{"appLabel":"youku","tcpLostlenPercent":0.0047},{"appLabel":"huawei","tcpLostlenPercent":0.0025},{"appLabel":"ximalaya","tcpLostlenPercent":0.0021},{"appLabel":"bilibili","tcpLostlenPercent":0.0166},{"appLabel":"ixigua","tcpLostlenPercent":0.0155},{"appLabel":"mitalk","tcpLostlenPercent":0.0021},{"appLabel":"163com","tcpLostlenPercent":0},{"appLabel":"meitu","tcpLostlenPercent":0.0029},{"appLabel":"tencent","tcpLostlenPercent":0.0034},{"appLabel":"netease","tcpLostlenPercent":3.0E-4},{"appLabel":"http2","tcpLostlenPercent":0.0149},{"appLabel":"flash","tcpLostlenPercent":0.005},{"appLabel":"jingdong","tcpLostlenPercent":0.0048},{"appLabel":"douyin","tcpLostlenPercent":0.0091},{"appLabel":"baidu","tcpLostlenPercent":0.0087},{"appLabel":"taobao","tcpLostlenPercent":0.0036},{"appLabel":"appstore","tcpLostlenPercent":0.0218},{"appLabel":"toutiao","tcpLostlenPercent":4.0E-4},{"appLabel":"cibn","tcpLostlenPercent":0.0087},{"appLabel":"iqiyi","tcpLostlenPercent":0.005},{"appLabel":"bmff","tcpLostlenPercent":0.0079},{"appLabel":"kugou","tcpLostlenPercent":0.0142},{"appLabel":"wechat","tcpLostlenPercent":0.0086},{"appLabel":"windows_update","tcpLostlenPercent":0.0022},{"appLabel":"gaode_map","tcpLostlenPercent":4.0E-4},{"appLabel":"uc_browser","tcpLostlenPercent":0.0046},{"appLabel":"office365","tcpLostlenPercent":0.0029},{"appLabel":"bytedance","tcpLostlenPercent":0.0085},{"appLabel":"bittorrent","tcpLostlenPercent":0.0139},{"appLabel":"alibaba_cloud","tcpLostlenPercent":0.0037},{"appLabel":"pinduoduo","tcpLostlenPercent":0.0063},{"appLabel":"alibaba_group","tcpLostlenPercent":0.0033},{"appLabel":"chinanetcenter","tcpLostlenPercent":0.0066},{"appLabel":"sina_weibo","tcpLostlenPercent":0.0052},{"appLabel":"xiaohongshu","tcpLostlenPercent":0.0084},{"appLabel":"netease_cloud_music","tcpLostlenPercent":2.0E-4}]},"originalUrl":"http://192.168.44.55:9999/?query= SELECT common_app_label AS app_label, ROUND(AVG(tcp_lostlen_ratio), 4) AS tcp_lostlen_percent FROM metric_application WHERE stat_time >= toDateTime(1677224704)-3600 AND stat_time < toDateTime(1677228304)-3600 AND isNotNull(tcp_lostlen_ratio) AND app_label IN ( 'douyin','wechat','kuaishou','alibaba_cloud','bmff','netease_cloud_music','qq_web','wtls','bytedance','toutiao','pinduoduo','http2','baidu','netease','flash','kugou','sina_weibo','xiaomi','cibn','bittorrent','appstore','windows_update','iqiyi','ixigua','uc_browser','tencent','jingdong','iperf','office365','alibaba_group','experion','youku','xiaohongshu','taobao','uplive','qqvideo','mitalk','mpegts','huawei','bilibili','chinanetcenter','mango_tv','gaode_map','speedtest','ultrasurf','163com','mgcp','wsp','ximalaya','meitu' ) GROUP BY app_label &format=json&option=real-time","msg":"OK"}} +const mockGetScoreHttpResponseDelayCycle = { status: 200,"data": {"status":200,"code":200,"queryKey":"a5089f743bce34d5507bb5735a1e1bb9","success":true,"message":null,"statistics":{"elapsed":2,"rows_read":8192,"bytes_read":274195,"result_size":2239,"result_rows":42},"job":null,"formatType":"json","meta":[{"name":"app_label","type":"string","category":"Dimension"},{"name":"http_response_latency","type":"double","category":"Metric"}],"data":{"resultType":"table","result":[{"appLabel":"qqvideo","httpResponseLatency":58.3586},{"appLabel":"uplive","httpResponseLatency":58.3276},{"appLabel":"xiaomi","httpResponseLatency":255.5454},{"appLabel":"qq_web","httpResponseLatency":121.0739},{"appLabel":"mpegts","httpResponseLatency":73.4589},{"appLabel":"kuaishou","httpResponseLatency":415.5194},{"appLabel":"iperf","httpResponseLatency":122.8889},{"appLabel":"mango_tv","httpResponseLatency":483.2962},{"appLabel":"youku","httpResponseLatency":52.168},{"appLabel":"huawei","httpResponseLatency":109.4998},{"appLabel":"ximalaya","httpResponseLatency":56.2959},{"appLabel":"bilibili","httpResponseLatency":137.4569},{"appLabel":"ixigua","httpResponseLatency":63.9122},{"appLabel":"mitalk","httpResponseLatency":51},{"appLabel":"163com","httpResponseLatency":526.3931},{"appLabel":"meitu","httpResponseLatency":212.8459},{"appLabel":"tencent","httpResponseLatency":360.977},{"appLabel":"netease","httpResponseLatency":252.1966},{"appLabel":"flash","httpResponseLatency":116.1838},{"appLabel":"jingdong","httpResponseLatency":55.0174},{"appLabel":"douyin","httpResponseLatency":163.4641},{"appLabel":"baidu","httpResponseLatency":121.4797},{"appLabel":"taobao","httpResponseLatency":62.7715},{"appLabel":"toutiao","httpResponseLatency":226.9452},{"appLabel":"cibn","httpResponseLatency":65.2762},{"appLabel":"iqiyi","httpResponseLatency":88.4371},{"appLabel":"bmff","httpResponseLatency":313.0338},{"appLabel":"kugou","httpResponseLatency":144.8374},{"appLabel":"wechat","httpResponseLatency":215.028},{"appLabel":"windows_update","httpResponseLatency":302.4741},{"appLabel":"gaode_map","httpResponseLatency":121.5773},{"appLabel":"uc_browser","httpResponseLatency":268.5431},{"appLabel":"office365","httpResponseLatency":144.6031},{"appLabel":"bytedance","httpResponseLatency":165.572},{"appLabel":"bittorrent","httpResponseLatency":1288.7593},{"appLabel":"alibaba_cloud","httpResponseLatency":132.5711},{"appLabel":"pinduoduo","httpResponseLatency":1458.2452},{"appLabel":"alibaba_group","httpResponseLatency":244.2192},{"appLabel":"chinanetcenter","httpResponseLatency":100.6967},{"appLabel":"sina_weibo","httpResponseLatency":56.6954},{"appLabel":"xiaohongshu","httpResponseLatency":66.0377},{"appLabel":"netease_cloud_music","httpResponseLatency":326.9596}]},"originalUrl":"http://192.168.44.55:9999/?query= SELECT common_app_label AS app_label, ROUND(AVG(avg_http_response_latency_ms), 4) AS http_response_latency FROM metric_application WHERE stat_time >= toDateTime(1677224704)-3600 AND stat_time < toDateTime(1677228304)-3600 AND isNotNull(avg_http_response_latency_ms) AND app_label IN ( 'douyin','wechat','kuaishou','alibaba_cloud','bmff','netease_cloud_music','qq_web','wtls','bytedance','toutiao','pinduoduo','http2','baidu','netease','flash','kugou','sina_weibo','xiaomi','cibn','bittorrent','appstore','windows_update','iqiyi','ixigua','uc_browser','tencent','jingdong','iperf','office365','alibaba_group','experion','youku','xiaohongshu','taobao','uplive','qqvideo','mitalk','mpegts','huawei','bilibili','chinanetcenter','mango_tv','gaode_map','speedtest','ultrasurf','163com','mgcp','wsp','ximalaya','meitu' ) GROUP BY app_label &format=json&option=real-time","msg":"OK"}} //DNS模块:Qypes列 -const mockGetDnsQTypes = { data: {"status":200,"code":200,"queryKey":"bb0ffaa439ecafcae5b1e7adc2ba6f4b","success":true,"message":null,"statistics":{"elapsed":2,"rows_read":2294,"bytes_read":149110,"result_size":1241,"result_rows":9},"job":null,"formatType":"json","meta":[{"name":"qtype","type":"long","category":"Dimension"},{"name":"query_num","type":"long","category":"Metric"},{"name":"total_internal_query_num","type":"long","category":"Metric"},{"name":"total_external_query_num","type":"long","category":"Metric"},{"name":"dns_response_latency_avg","type":"double","category":"Metric"},{"name":"total_bytes","type":"long","category":"Metric"}],"data":{"resultType":"table","result":[{"qtype":"0","queryNum":"229365","queryRate":63.71,"totalInternalQueryNum":"228537","totalExternalQueryNum":"828","dnsResponseLatencyAvg":38.2818,"totalBytes":"29604599","totalBitsRate":65788.0},{"qtype":"1","queryNum":"15944","queryRate":4.43,"totalInternalQueryNum":"15836","totalExternalQueryNum":"108","dnsResponseLatencyAvg":66.3829,"totalBytes":"37137","totalBitsRate":82.56},{"qtype":"28","queryNum":"5537","queryRate":1.54,"totalInternalQueryNum":"5508","totalExternalQueryNum":"29","dnsResponseLatencyAvg":112.7023,"totalBytes":"20010","totalBitsRate":44.48},{"qtype":"33","queryNum":"141","queryRate":0.04,"totalInternalQueryNum":"141","totalExternalQueryNum":"0","dnsResponseLatencyAvg":61.2329,"totalBytes":"11222","totalBitsRate":24.96},{"qtype":"65","queryNum":"170","queryRate":0.05,"totalInternalQueryNum":"134","totalExternalQueryNum":"36","dnsResponseLatencyAvg":302.7225,"totalBytes":"7687","totalBitsRate":17.12},{"qtype":"12","queryNum":"315","queryRate":0.09,"totalInternalQueryNum":"307","totalExternalQueryNum":"8","dnsResponseLatencyAvg":345.1078,"totalBytes":"6398","totalBitsRate":14.24},{"qtype":"5","queryNum":"25","queryRate":0.01,"totalInternalQueryNum":"25","totalExternalQueryNum":"0","dnsResponseLatencyAvg":54.5,"totalBytes":"3073","totalBitsRate":6.8},{"qtype":"16","queryNum":"26","queryRate":0.01,"totalInternalQueryNum":"26","totalExternalQueryNum":"0","dnsResponseLatencyAvg":50.3333,"totalBytes":"896","totalBitsRate":2.0},{"qtype":"2","queryNum":"2","queryRate":0.0,"totalInternalQueryNum":"2","totalExternalQueryNum":"0","dnsResponseLatencyAvg":45.5,"totalBytes":"592","totalBitsRate":1.28}]},"originalUrl":"http://192.168.44.55:9999/?query=SELECT qtype AS qtype, SUM(query_num) AS query_num, SUM(internal_query_num) AS total_internal_query_num, SUM(external_query_num) AS total_external_query_num, ROUND(AVG(avg_response_latency_ms),4) AS dns_response_latency_avg, SUM(traffic_inbound_byte + traffic_outbound_byte) AS total_bytes FROM metric_dns_qtype WHERE stat_time >= toDateTime(1677304830) AND stat_time < toDateTime(1677308430) GROUP BY qtype ORDER BY total_bytes desc LIMIT 50 &format=json&option=real-time","msg":"OK"}} -const mockGetDnsQTypesCycle = { data: {"status":200,"code":200,"queryKey":"8164c38e9cb012b44b72bcb9df2495e0","success":true,"message":null,"statistics":{"elapsed":1,"rows_read":2294,"bytes_read":112406,"result_size":710,"result_rows":9},"job":null,"formatType":"json","meta":[{"name":"qtype","type":"long","category":"Dimension"},{"name":"query_num","type":"long","category":"Metric"},{"name":"dns_response_latency_avg","type":"double","category":"Metric"},{"name":"total_bytes","type":"long","category":"Metric"}],"data":{"resultType":"table","result":[{"qtype":"0","queryNum":"234705","queryRate":65.2,"dnsResponseLatencyAvg":37.9805,"totalBytes":"29712991","totalBitsRate":66028.88},{"qtype":"2","queryNum":"4","queryRate":0.0,"dnsResponseLatencyAvg":23,"totalBytes":"1522","totalBitsRate":3.36},{"qtype":"5","queryNum":"16","queryRate":0.0,"dnsResponseLatencyAvg":37.2564,"totalBytes":"3349","totalBitsRate":7.44},{"qtype":"1","queryNum":"16667","queryRate":4.63,"dnsResponseLatencyAvg":63.652,"totalBytes":"33594","totalBitsRate":74.64},{"qtype":"65","queryNum":"174","queryRate":0.05,"dnsResponseLatencyAvg":332.1654,"totalBytes":"8606","totalBitsRate":19.12},{"qtype":"28","queryNum":"5472","queryRate":1.52,"dnsResponseLatencyAvg":105.5314,"totalBytes":"17670","totalBitsRate":39.28},{"qtype":"16","queryNum":"19","queryRate":0.01,"dnsResponseLatencyAvg":47.381,"totalBytes":"999","totalBitsRate":2.24},{"qtype":"12","queryNum":"95","queryRate":0.03,"dnsResponseLatencyAvg":652.0599,"totalBytes":"4353","totalBitsRate":9.68},{"qtype":"33","queryNum":"158","queryRate":0.04,"dnsResponseLatencyAvg":54.3488,"totalBytes":"10475","totalBitsRate":23.28}]},"originalUrl":"http://192.168.44.55:9999/?query=SELECT qtype AS qtype, SUM(query_num) AS query_num, ROUND(AVG(avg_response_latency_ms),4) AS dns_response_latency_avg, SUM(traffic_inbound_byte + traffic_outbound_byte) AS total_bytes FROM metric_dns_qtype WHERE stat_time >= toDateTime(1677304830)-3600 AND stat_time < toDateTime(1677308430)-3600 AND qtype IN( '0','1','28','33','65','12','5','16','2' ) GROUP BY qtype&format=json&option=real-time","msg":"OK"}} -const mockGetDnsQTypesDict = { data: {"code":200,"data":{"total":97,"pageSize":-1,"pages":1,"pageNo":1,"list":[{"id":5632,"name":"DNS qtype","type":"dnsQtype","code":"8","value":"MG","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5633,"name":"DNS qtype","type":"dnsQtype","code":"9","value":"MR","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5634,"name":"DNS qtype","type":"dnsQtype","code":"10","value":"NULL","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5635,"name":"DNS qtype","type":"dnsQtype","code":"11","value":"WKS","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5636,"name":"DNS qtype","type":"dnsQtype","code":"12","value":"PTR","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5637,"name":"DNS qtype","type":"dnsQtype","code":"13","value":"HINFO","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5638,"name":"DNS qtype","type":"dnsQtype","code":"14","value":"MINFO","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5639,"name":"DNS qtype","type":"dnsQtype","code":"15","value":"MX","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5640,"name":"DNS qtype","type":"dnsQtype","code":"16","value":"TXT","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5641,"name":"DNS qtype","type":"dnsQtype","code":"17","value":"RP","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5642,"name":"DNS qtype","type":"dnsQtype","code":"18","value":"AFSDB","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5643,"name":"DNS qtype","type":"dnsQtype","code":"19","value":"X25","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5644,"name":"DNS qtype","type":"dnsQtype","code":"20","value":"ISDN","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5645,"name":"DNS qtype","type":"dnsQtype","code":"21","value":"RT","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5646,"name":"DNS qtype","type":"dnsQtype","code":"22","value":"NSAP","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5647,"name":"DNS qtype","type":"dnsQtype","code":"23","value":"NSAP-PTR","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5648,"name":"DNS qtype","type":"dnsQtype","code":"24","value":"SIG","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5649,"name":"DNS qtype","type":"dnsQtype","code":"25","value":"KEY","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5650,"name":"DNS qtype","type":"dnsQtype","code":"26","value":"PX","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5651,"name":"DNS qtype","type":"dnsQtype","code":"27","value":"GPOS","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5652,"name":"DNS qtype","type":"dnsQtype","code":"28","value":"AAAA","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5653,"name":"DNS qtype","type":"dnsQtype","code":"29","value":"LOC","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5654,"name":"DNS qtype","type":"dnsQtype","code":"30","value":"NXT","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5655,"name":"DNS qtype","type":"dnsQtype","code":"31","value":"EID","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5656,"name":"DNS qtype","type":"dnsQtype","code":"32","value":"NIMLOC","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5657,"name":"DNS qtype","type":"dnsQtype","code":"33","value":"SRV","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5658,"name":"DNS qtype","type":"dnsQtype","code":"34","value":"ATMA","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5659,"name":"DNS qtype","type":"dnsQtype","code":"35","value":"NAPTR","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5660,"name":"DNS qtype","type":"dnsQtype","code":"36","value":"KX","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5661,"name":"DNS qtype","type":"dnsQtype","code":"37","value":"CERT","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5662,"name":"DNS qtype","type":"dnsQtype","code":"38","value":"A6","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5663,"name":"DNS qtype","type":"dnsQtype","code":"39","value":"DNAME","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5664,"name":"DNS qtype","type":"dnsQtype","code":"40","value":"SINK","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5665,"name":"DNS qtype","type":"dnsQtype","code":"41","value":"OPT","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5666,"name":"DNS qtype","type":"dnsQtype","code":"42","value":"APL","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5667,"name":"DNS qtype","type":"dnsQtype","code":"43","value":"DS","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5668,"name":"DNS qtype","type":"dnsQtype","code":"44","value":"SSHFP","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5669,"name":"DNS qtype","type":"dnsQtype","code":"45","value":"IPSECKEY","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5670,"name":"DNS qtype","type":"dnsQtype","code":"46","value":"RRSIG","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5671,"name":"DNS qtype","type":"dnsQtype","code":"47","value":"NSEC","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5672,"name":"DNS qtype","type":"dnsQtype","code":"48","value":"DNSKEY","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5673,"name":"DNS qtype","type":"dnsQtype","code":"49","value":"DHCID","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5674,"name":"DNS qtype","type":"dnsQtype","code":"50","value":"NSEC3","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5675,"name":"DNS qtype","type":"dnsQtype","code":"51","value":"NSEC3PARAM","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5676,"name":"DNS qtype","type":"dnsQtype","code":"52","value":"TLSA","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5677,"name":"DNS qtype","type":"dnsQtype","code":"53","value":"SMIMEA","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5678,"name":"DNS qtype","type":"dnsQtype","code":"54","value":"Unassigned","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5679,"name":"DNS qtype","type":"dnsQtype","code":"55","value":"HIP","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5680,"name":"DNS qtype","type":"dnsQtype","code":"56","value":"NINFO","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5681,"name":"DNS qtype","type":"dnsQtype","code":"57","value":"RKEY","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5682,"name":"DNS qtype","type":"dnsQtype","code":"58","value":"TALINK","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5683,"name":"DNS qtype","type":"dnsQtype","code":"59","value":"CDS","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5684,"name":"DNS qtype","type":"dnsQtype","code":"60","value":"CDNSKEY","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5685,"name":"DNS qtype","type":"dnsQtype","code":"61","value":"OPENPGPKEY","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5686,"name":"DNS qtype","type":"dnsQtype","code":"62","value":"CSYNC","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5687,"name":"DNS qtype","type":"dnsQtype","code":"63","value":"ZONEMD","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5688,"name":"DNS qtype","type":"dnsQtype","code":"64","value":"SVCB","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5689,"name":"DNS qtype","type":"dnsQtype","code":"65","value":"HTTPS","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5690,"name":"DNS qtype","type":"dnsQtype","code":"66-98","value":"Unassigned","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5691,"name":"DNS qtype","type":"dnsQtype","code":"99","value":"SPF","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5692,"name":"DNS qtype","type":"dnsQtype","code":"100","value":"UINFO","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5693,"name":"DNS qtype","type":"dnsQtype","code":"101","value":"UID","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5694,"name":"DNS qtype","type":"dnsQtype","code":"102","value":"GID","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5695,"name":"DNS qtype","type":"dnsQtype","code":"103","value":"UNSPEC","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5696,"name":"DNS qtype","type":"dnsQtype","code":"104","value":"NID","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5697,"name":"DNS qtype","type":"dnsQtype","code":"105","value":"L32","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5698,"name":"DNS qtype","type":"dnsQtype","code":"106","value":"L64","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5699,"name":"DNS qtype","type":"dnsQtype","code":"107","value":"LP","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5700,"name":"DNS qtype","type":"dnsQtype","code":"108","value":"EUI48","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5701,"name":"DNS qtype","type":"dnsQtype","code":"109","value":"EUI64","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5702,"name":"DNS qtype","type":"dnsQtype","code":"110-248","value":"Unassigned","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5703,"name":"DNS qtype","type":"dnsQtype","code":"249","value":"TKEY","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5704,"name":"DNS qtype","type":"dnsQtype","code":"250","value":"TSIG","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5705,"name":"DNS qtype","type":"dnsQtype","code":"251","value":"IXFR","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5706,"name":"DNS qtype","type":"dnsQtype","code":"252","value":"AXFR","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5707,"name":"DNS qtype","type":"dnsQtype","code":"253","value":"MAILB","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5708,"name":"DNS qtype","type":"dnsQtype","code":"254","value":"MAILA","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5709,"name":"DNS qtype","type":"dnsQtype","code":"255","value":"*","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5710,"name":"DNS qtype","type":"dnsQtype","code":"256","value":"URI","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5711,"name":"DNS qtype","type":"dnsQtype","code":"257","value":"CAA","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5712,"name":"DNS qtype","type":"dnsQtype","code":"258","value":"AVC","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5713,"name":"DNS qtype","type":"dnsQtype","code":"259","value":"DOA","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5714,"name":"DNS qtype","type":"dnsQtype","code":"260","value":"AMTRELAY","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5715,"name":"DNS qtype","type":"dnsQtype","code":"261-32767","value":"Unassigned","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5716,"name":"DNS qtype","type":"dnsQtype","code":"32768","value":"TA","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5717,"name":"DNS qtype","type":"dnsQtype","code":"32769","value":"DLV","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5718,"name":"DNS qtype","type":"dnsQtype","code":"32770-65279","value":"Unassigned","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5719,"name":"DNS qtype","type":"dnsQtype","code":"65280-65534","value":"Private use","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5720,"name":"DNS qtype","type":"dnsQtype","code":"65535","value":"Reserved","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5624,"name":"DNS qtype","type":"dnsQtype","code":"0","value":"Reserved","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5625,"name":"DNS qtype","type":"dnsQtype","code":"1","value":"A","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5626,"name":"DNS qtype","type":"dnsQtype","code":"2","value":"NS","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5627,"name":"DNS qtype","type":"dnsQtype","code":"3","value":"MD","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5628,"name":"DNS qtype","type":"dnsQtype","code":"4","value":"MF","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5629,"name":"DNS qtype","type":"dnsQtype","code":"5","value":"CNAME","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5630,"name":"DNS qtype","type":"dnsQtype","code":"6","value":"SOA","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5631,"name":"DNS qtype","type":"dnsQtype","code":"7","value":"MB","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}}]},"time":"2023-02-25 07:53:16","message":"success"}} +const mockGetDnsQTypes = { status: 200, data: {"status":200,"code":200,"queryKey":"bb0ffaa439ecafcae5b1e7adc2ba6f4b","success":true,"message":null,"statistics":{"elapsed":2,"rows_read":2294,"bytes_read":149110,"result_size":1241,"result_rows":9},"job":null,"formatType":"json","meta":[{"name":"qtype","type":"long","category":"Dimension"},{"name":"query_num","type":"long","category":"Metric"},{"name":"total_internal_query_num","type":"long","category":"Metric"},{"name":"total_external_query_num","type":"long","category":"Metric"},{"name":"dns_response_latency_avg","type":"double","category":"Metric"},{"name":"total_bytes","type":"long","category":"Metric"}],"data":{"resultType":"table","result":[{"qtype":"0","queryNum":"229365","queryRate":63.71,"totalInternalQueryNum":"228537","totalExternalQueryNum":"828","dnsResponseLatencyAvg":38.2818,"totalBytes":"29604599","totalBitsRate":65788.0},{"qtype":"1","queryNum":"15944","queryRate":4.43,"totalInternalQueryNum":"15836","totalExternalQueryNum":"108","dnsResponseLatencyAvg":66.3829,"totalBytes":"37137","totalBitsRate":82.56},{"qtype":"28","queryNum":"5537","queryRate":1.54,"totalInternalQueryNum":"5508","totalExternalQueryNum":"29","dnsResponseLatencyAvg":112.7023,"totalBytes":"20010","totalBitsRate":44.48},{"qtype":"33","queryNum":"141","queryRate":0.04,"totalInternalQueryNum":"141","totalExternalQueryNum":"0","dnsResponseLatencyAvg":61.2329,"totalBytes":"11222","totalBitsRate":24.96},{"qtype":"65","queryNum":"170","queryRate":0.05,"totalInternalQueryNum":"134","totalExternalQueryNum":"36","dnsResponseLatencyAvg":302.7225,"totalBytes":"7687","totalBitsRate":17.12},{"qtype":"12","queryNum":"315","queryRate":0.09,"totalInternalQueryNum":"307","totalExternalQueryNum":"8","dnsResponseLatencyAvg":345.1078,"totalBytes":"6398","totalBitsRate":14.24},{"qtype":"5","queryNum":"25","queryRate":0.01,"totalInternalQueryNum":"25","totalExternalQueryNum":"0","dnsResponseLatencyAvg":54.5,"totalBytes":"3073","totalBitsRate":6.8},{"qtype":"16","queryNum":"26","queryRate":0.01,"totalInternalQueryNum":"26","totalExternalQueryNum":"0","dnsResponseLatencyAvg":50.3333,"totalBytes":"896","totalBitsRate":2.0},{"qtype":"2","queryNum":"2","queryRate":0.0,"totalInternalQueryNum":"2","totalExternalQueryNum":"0","dnsResponseLatencyAvg":45.5,"totalBytes":"592","totalBitsRate":1.28}]},"originalUrl":"http://192.168.44.55:9999/?query=SELECT qtype AS qtype, SUM(query_num) AS query_num, SUM(internal_query_num) AS total_internal_query_num, SUM(external_query_num) AS total_external_query_num, ROUND(AVG(avg_response_latency_ms),4) AS dns_response_latency_avg, SUM(traffic_inbound_byte + traffic_outbound_byte) AS total_bytes FROM metric_dns_qtype WHERE stat_time >= toDateTime(1677304830) AND stat_time < toDateTime(1677308430) GROUP BY qtype ORDER BY total_bytes desc LIMIT 50 &format=json&option=real-time","msg":"OK"}} +const mockGetDnsQTypesCycle = { status: 200, data: {"status":200,"code":200,"queryKey":"8164c38e9cb012b44b72bcb9df2495e0","success":true,"message":null,"statistics":{"elapsed":1,"rows_read":2294,"bytes_read":112406,"result_size":710,"result_rows":9},"job":null,"formatType":"json","meta":[{"name":"qtype","type":"long","category":"Dimension"},{"name":"query_num","type":"long","category":"Metric"},{"name":"dns_response_latency_avg","type":"double","category":"Metric"},{"name":"total_bytes","type":"long","category":"Metric"}],"data":{"resultType":"table","result":[{"qtype":"0","queryNum":"234705","queryRate":65.2,"dnsResponseLatencyAvg":37.9805,"totalBytes":"29712991","totalBitsRate":66028.88},{"qtype":"2","queryNum":"4","queryRate":0.0,"dnsResponseLatencyAvg":23,"totalBytes":"1522","totalBitsRate":3.36},{"qtype":"5","queryNum":"16","queryRate":0.0,"dnsResponseLatencyAvg":37.2564,"totalBytes":"3349","totalBitsRate":7.44},{"qtype":"1","queryNum":"16667","queryRate":4.63,"dnsResponseLatencyAvg":63.652,"totalBytes":"33594","totalBitsRate":74.64},{"qtype":"65","queryNum":"174","queryRate":0.05,"dnsResponseLatencyAvg":332.1654,"totalBytes":"8606","totalBitsRate":19.12},{"qtype":"28","queryNum":"5472","queryRate":1.52,"dnsResponseLatencyAvg":105.5314,"totalBytes":"17670","totalBitsRate":39.28},{"qtype":"16","queryNum":"19","queryRate":0.01,"dnsResponseLatencyAvg":47.381,"totalBytes":"999","totalBitsRate":2.24},{"qtype":"12","queryNum":"95","queryRate":0.03,"dnsResponseLatencyAvg":652.0599,"totalBytes":"4353","totalBitsRate":9.68},{"qtype":"33","queryNum":"158","queryRate":0.04,"dnsResponseLatencyAvg":54.3488,"totalBytes":"10475","totalBitsRate":23.28}]},"originalUrl":"http://192.168.44.55:9999/?query=SELECT qtype AS qtype, SUM(query_num) AS query_num, ROUND(AVG(avg_response_latency_ms),4) AS dns_response_latency_avg, SUM(traffic_inbound_byte + traffic_outbound_byte) AS total_bytes FROM metric_dns_qtype WHERE stat_time >= toDateTime(1677304830)-3600 AND stat_time < toDateTime(1677308430)-3600 AND qtype IN( '0','1','28','33','65','12','5','16','2' ) GROUP BY qtype&format=json&option=real-time","msg":"OK"}} +const mockGetDnsQTypesDict = { status: 200, data: {"code":200,"data":{"total":97,"pageSize":-1,"pages":1,"pageNo":1,"list":[{"id":5632,"name":"DNS qtype","type":"dnsQtype","code":"8","value":"MG","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5633,"name":"DNS qtype","type":"dnsQtype","code":"9","value":"MR","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5634,"name":"DNS qtype","type":"dnsQtype","code":"10","value":"NULL","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5635,"name":"DNS qtype","type":"dnsQtype","code":"11","value":"WKS","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5636,"name":"DNS qtype","type":"dnsQtype","code":"12","value":"PTR","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5637,"name":"DNS qtype","type":"dnsQtype","code":"13","value":"HINFO","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5638,"name":"DNS qtype","type":"dnsQtype","code":"14","value":"MINFO","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5639,"name":"DNS qtype","type":"dnsQtype","code":"15","value":"MX","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5640,"name":"DNS qtype","type":"dnsQtype","code":"16","value":"TXT","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5641,"name":"DNS qtype","type":"dnsQtype","code":"17","value":"RP","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5642,"name":"DNS qtype","type":"dnsQtype","code":"18","value":"AFSDB","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5643,"name":"DNS qtype","type":"dnsQtype","code":"19","value":"X25","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5644,"name":"DNS qtype","type":"dnsQtype","code":"20","value":"ISDN","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5645,"name":"DNS qtype","type":"dnsQtype","code":"21","value":"RT","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5646,"name":"DNS qtype","type":"dnsQtype","code":"22","value":"NSAP","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5647,"name":"DNS qtype","type":"dnsQtype","code":"23","value":"NSAP-PTR","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5648,"name":"DNS qtype","type":"dnsQtype","code":"24","value":"SIG","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5649,"name":"DNS qtype","type":"dnsQtype","code":"25","value":"KEY","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5650,"name":"DNS qtype","type":"dnsQtype","code":"26","value":"PX","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5651,"name":"DNS qtype","type":"dnsQtype","code":"27","value":"GPOS","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5652,"name":"DNS qtype","type":"dnsQtype","code":"28","value":"AAAA","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5653,"name":"DNS qtype","type":"dnsQtype","code":"29","value":"LOC","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5654,"name":"DNS qtype","type":"dnsQtype","code":"30","value":"NXT","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5655,"name":"DNS qtype","type":"dnsQtype","code":"31","value":"EID","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5656,"name":"DNS qtype","type":"dnsQtype","code":"32","value":"NIMLOC","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5657,"name":"DNS qtype","type":"dnsQtype","code":"33","value":"SRV","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5658,"name":"DNS qtype","type":"dnsQtype","code":"34","value":"ATMA","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5659,"name":"DNS qtype","type":"dnsQtype","code":"35","value":"NAPTR","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5660,"name":"DNS qtype","type":"dnsQtype","code":"36","value":"KX","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5661,"name":"DNS qtype","type":"dnsQtype","code":"37","value":"CERT","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5662,"name":"DNS qtype","type":"dnsQtype","code":"38","value":"A6","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5663,"name":"DNS qtype","type":"dnsQtype","code":"39","value":"DNAME","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5664,"name":"DNS qtype","type":"dnsQtype","code":"40","value":"SINK","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5665,"name":"DNS qtype","type":"dnsQtype","code":"41","value":"OPT","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5666,"name":"DNS qtype","type":"dnsQtype","code":"42","value":"APL","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5667,"name":"DNS qtype","type":"dnsQtype","code":"43","value":"DS","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5668,"name":"DNS qtype","type":"dnsQtype","code":"44","value":"SSHFP","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5669,"name":"DNS qtype","type":"dnsQtype","code":"45","value":"IPSECKEY","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5670,"name":"DNS qtype","type":"dnsQtype","code":"46","value":"RRSIG","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5671,"name":"DNS qtype","type":"dnsQtype","code":"47","value":"NSEC","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5672,"name":"DNS qtype","type":"dnsQtype","code":"48","value":"DNSKEY","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5673,"name":"DNS qtype","type":"dnsQtype","code":"49","value":"DHCID","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5674,"name":"DNS qtype","type":"dnsQtype","code":"50","value":"NSEC3","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5675,"name":"DNS qtype","type":"dnsQtype","code":"51","value":"NSEC3PARAM","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5676,"name":"DNS qtype","type":"dnsQtype","code":"52","value":"TLSA","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5677,"name":"DNS qtype","type":"dnsQtype","code":"53","value":"SMIMEA","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5678,"name":"DNS qtype","type":"dnsQtype","code":"54","value":"Unassigned","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5679,"name":"DNS qtype","type":"dnsQtype","code":"55","value":"HIP","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5680,"name":"DNS qtype","type":"dnsQtype","code":"56","value":"NINFO","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5681,"name":"DNS qtype","type":"dnsQtype","code":"57","value":"RKEY","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5682,"name":"DNS qtype","type":"dnsQtype","code":"58","value":"TALINK","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5683,"name":"DNS qtype","type":"dnsQtype","code":"59","value":"CDS","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5684,"name":"DNS qtype","type":"dnsQtype","code":"60","value":"CDNSKEY","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5685,"name":"DNS qtype","type":"dnsQtype","code":"61","value":"OPENPGPKEY","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5686,"name":"DNS qtype","type":"dnsQtype","code":"62","value":"CSYNC","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5687,"name":"DNS qtype","type":"dnsQtype","code":"63","value":"ZONEMD","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5688,"name":"DNS qtype","type":"dnsQtype","code":"64","value":"SVCB","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5689,"name":"DNS qtype","type":"dnsQtype","code":"65","value":"HTTPS","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5690,"name":"DNS qtype","type":"dnsQtype","code":"66-98","value":"Unassigned","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5691,"name":"DNS qtype","type":"dnsQtype","code":"99","value":"SPF","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5692,"name":"DNS qtype","type":"dnsQtype","code":"100","value":"UINFO","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5693,"name":"DNS qtype","type":"dnsQtype","code":"101","value":"UID","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5694,"name":"DNS qtype","type":"dnsQtype","code":"102","value":"GID","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5695,"name":"DNS qtype","type":"dnsQtype","code":"103","value":"UNSPEC","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5696,"name":"DNS qtype","type":"dnsQtype","code":"104","value":"NID","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5697,"name":"DNS qtype","type":"dnsQtype","code":"105","value":"L32","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5698,"name":"DNS qtype","type":"dnsQtype","code":"106","value":"L64","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5699,"name":"DNS qtype","type":"dnsQtype","code":"107","value":"LP","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5700,"name":"DNS qtype","type":"dnsQtype","code":"108","value":"EUI48","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5701,"name":"DNS qtype","type":"dnsQtype","code":"109","value":"EUI64","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5702,"name":"DNS qtype","type":"dnsQtype","code":"110-248","value":"Unassigned","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5703,"name":"DNS qtype","type":"dnsQtype","code":"249","value":"TKEY","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5704,"name":"DNS qtype","type":"dnsQtype","code":"250","value":"TSIG","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5705,"name":"DNS qtype","type":"dnsQtype","code":"251","value":"IXFR","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5706,"name":"DNS qtype","type":"dnsQtype","code":"252","value":"AXFR","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5707,"name":"DNS qtype","type":"dnsQtype","code":"253","value":"MAILB","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5708,"name":"DNS qtype","type":"dnsQtype","code":"254","value":"MAILA","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5709,"name":"DNS qtype","type":"dnsQtype","code":"255","value":"*","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5710,"name":"DNS qtype","type":"dnsQtype","code":"256","value":"URI","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5711,"name":"DNS qtype","type":"dnsQtype","code":"257","value":"CAA","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5712,"name":"DNS qtype","type":"dnsQtype","code":"258","value":"AVC","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5713,"name":"DNS qtype","type":"dnsQtype","code":"259","value":"DOA","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5714,"name":"DNS qtype","type":"dnsQtype","code":"260","value":"AMTRELAY","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5715,"name":"DNS qtype","type":"dnsQtype","code":"261-32767","value":"Unassigned","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5716,"name":"DNS qtype","type":"dnsQtype","code":"32768","value":"TA","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5717,"name":"DNS qtype","type":"dnsQtype","code":"32769","value":"DLV","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5718,"name":"DNS qtype","type":"dnsQtype","code":"32770-65279","value":"Unassigned","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5719,"name":"DNS qtype","type":"dnsQtype","code":"65280-65534","value":"Private use","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5720,"name":"DNS qtype","type":"dnsQtype","code":"65535","value":"Reserved","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5624,"name":"DNS qtype","type":"dnsQtype","code":"0","value":"Reserved","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5625,"name":"DNS qtype","type":"dnsQtype","code":"1","value":"A","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5626,"name":"DNS qtype","type":"dnsQtype","code":"2","value":"NS","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5627,"name":"DNS qtype","type":"dnsQtype","code":"3","value":"MD","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5628,"name":"DNS qtype","type":"dnsQtype","code":"4","value":"MF","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5629,"name":"DNS qtype","type":"dnsQtype","code":"5","value":"CNAME","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5630,"name":"DNS qtype","type":"dnsQtype","code":"6","value":"SOA","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5631,"name":"DNS qtype","type":"dnsQtype","code":"7","value":"MB","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}}]},"time":"2023-02-25 07:53:16","message":"success"}} //DNS模块:RCodes列 -const mockGetDnsRCodes = { data: {"status":200,"code":200,"queryKey":"0895e2bdf85b8758d4b52774dc8dcace","success":true,"message":null,"statistics":{"elapsed":363,"rows_read":449,"bytes_read":29185,"result_size":687,"result_rows":5},"job":null,"formatType":"json","meta":[{"name":"rcode","type":"long","category":"Dimension"},{"name":"query_num","type":"long","category":"Metric"},{"name":"total_internal_query_num","type":"long","category":"Metric"},{"name":"total_external_query_num","type":"long","category":"Metric"},{"name":"dns_response_latency_avg","type":"double","category":"Metric"},{"name":"total_bytes","type":"long","category":"Metric"}],"data":{"resultType":"table","result":[{"rcode":"0","queryNum":"242600","queryRate":67.39,"totalInternalQueryNum":"241720","totalExternalQueryNum":"880","dnsResponseLatencyAvg":45.7425,"totalBytes":"29094099","totalBitsRate":64653.52},{"rcode":"3","queryNum":"1512","queryRate":0.42,"totalInternalQueryNum":"1476","totalExternalQueryNum":"36","dnsResponseLatencyAvg":77.3129,"totalBytes":"20175","totalBitsRate":44.8},{"rcode":"5","queryNum":"144","queryRate":0.04,"totalInternalQueryNum":"89","totalExternalQueryNum":"55","dnsResponseLatencyAvg":94.4913,"totalBytes":"6529","totalBitsRate":14.48},{"rcode":"2","queryNum":"575","queryRate":0.16,"totalInternalQueryNum":"573","totalExternalQueryNum":"2","dnsResponseLatencyAvg":1807.2043,"totalBytes":"5659","totalBitsRate":12.56},{"rcode":"4","queryNum":"2","queryRate":0.0,"totalInternalQueryNum":"2","totalExternalQueryNum":"0","dnsResponseLatencyAvg":71,"totalBytes":"77","totalBitsRate":0.16}]},"originalUrl":"http://192.168.44.55:9999/?query=SELECT rcode AS rcode, SUM(query_num) AS query_num, SUM(internal_query_num) AS total_internal_query_num, SUM(external_query_num) AS total_external_query_num, ROUND(AVG(avg_response_latency_ms),4) AS dns_response_latency_avg, SUM(traffic_inbound_byte + traffic_outbound_byte) AS total_bytes FROM metric_dns_rcode WHERE stat_time >= toDateTime(1677200319) AND stat_time < toDateTime(1677203919) GROUP BY rcode ORDER BY total_bytes desc LIMIT 50 &format=json&option=real-time","msg":"OK"} } -const mockGetDnsRCodesCycle = { data: {"status":200,"code":200,"queryKey":"6f6568746dd7ddfe88ae3165bb7be5cf","success":true,"message":null,"statistics":{"elapsed":46,"rows_read":454,"bytes_read":22246,"result_size":396,"result_rows":5},"job":null,"formatType":"json","meta":[{"name":"rcode","type":"long","category":"Dimension"},{"name":"query_num","type":"long","category":"Metric"},{"name":"dns_response_latency_avg","type":"double","category":"Metric"},{"name":"total_bytes","type":"long","category":"Metric"}],"data":{"resultType":"table","result":[{"rcode":"0","queryNum":"258775","queryRate":71.88,"dnsResponseLatencyAvg":40.2086,"totalBytes":"31109812","totalBitsRate":69132.88},{"rcode":"4","queryNum":"3","queryRate":0.0,"dnsResponseLatencyAvg":75.25,"totalBytes":"157","totalBitsRate":0.32},{"rcode":"3","queryNum":"1409","queryRate":0.39,"dnsResponseLatencyAvg":76.1114,"totalBytes":"24481","totalBitsRate":54.4},{"rcode":"2","queryNum":"503","queryRate":0.14,"dnsResponseLatencyAvg":1784.9738,"totalBytes":"5299","totalBitsRate":11.76},{"rcode":"5","queryNum":"147","queryRate":0.04,"dnsResponseLatencyAvg":93.1845,"totalBytes":"7175","totalBitsRate":15.92}]},"originalUrl":"http://192.168.44.55:9999/?query=SELECT rcode AS rcode, SUM(query_num) AS query_num, ROUND(AVG(avg_response_latency_ms),4) AS dns_response_latency_avg, SUM(traffic_inbound_byte + traffic_outbound_byte) AS total_bytes FROM metric_dns_rcode WHERE stat_time >= toDateTime(1677200319)-3600 AND stat_time < toDateTime(1677203919)-3600 AND rcode IN( '0','3','5','2','4' ) GROUP BY rcode&format=json&option=real-time","msg":"OK"} } -const mockGetDnsRCodesDict = { data: {"code":200,"data":{"total":25,"pageSize":-1,"pages":1,"pageNo":1,"list":[{"id":5599,"name":"DNS rcode","type":"dnsRcode","code":"0","value":"NoError","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5600,"name":"DNS rcode","type":"dnsRcode","code":"1","value":"FormErr","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5601,"name":"DNS rcode","type":"dnsRcode","code":"2","value":"ServFail","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5602,"name":"DNS rcode","type":"dnsRcode","code":"3","value":"NXDomain","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5603,"name":"DNS rcode","type":"dnsRcode","code":"4","value":"NotImp","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5604,"name":"DNS rcode","type":"dnsRcode","code":"5","value":"Refused","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5605,"name":"DNS rcode","type":"dnsRcode","code":"6","value":"YXDomain","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5606,"name":"DNS rcode","type":"dnsRcode","code":"7","value":"YXRRSet","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5607,"name":"DNS rcode","type":"dnsRcode","code":"8","value":"NXRRSet","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5608,"name":"DNS rcode","type":"dnsRcode","code":"9","value":"NotAuth","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5609,"name":"DNS rcode","type":"dnsRcode","code":"10","value":"NotZone","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5610,"name":"DNS rcode","type":"dnsRcode","code":"11","value":"DSOTYPENI","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5611,"name":"DNS rcode","type":"dnsRcode","code":"12-15","value":"Unassigned","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5612,"name":"DNS rcode","type":"dnsRcode","code":"16","value":"BADVERS / BADSIG","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5613,"name":"DNS rcode","type":"dnsRcode","code":"17","value":"BADKEY","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5614,"name":"DNS rcode","type":"dnsRcode","code":"18","value":"BADTIME","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5615,"name":"DNS rcode","type":"dnsRcode","code":"19","value":"BADMODE","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5616,"name":"DNS rcode","type":"dnsRcode","code":"20","value":"BADNAME","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5617,"name":"DNS rcode","type":"dnsRcode","code":"21","value":"BADALG","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5618,"name":"DNS rcode","type":"dnsRcode","code":"22","value":"BADTRUNC","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5619,"name":"DNS rcode","type":"dnsRcode","code":"23","value":"BADCOOKIE","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5620,"name":"DNS rcode","type":"dnsRcode","code":"24-3840","value":"Unassigned","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5621,"name":"DNS rcode","type":"dnsRcode","code":"3841-4095","value":"Reserved for Private Use","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5622,"name":"DNS rcode","type":"dnsRcode","code":"4096-65534","value":"Unassigned","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5623,"name":"DNS rcode","type":"dnsRcode","code":"65535","value":"Reserved, can be allocated by Standards Action","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}}]},"time":"2023-02-25 07:53:16","message":"success"}} +const mockGetDnsRCodes = { status: 200, data: {"status":200,"code":200,"queryKey":"0895e2bdf85b8758d4b52774dc8dcace","success":true,"message":null,"statistics":{"elapsed":363,"rows_read":449,"bytes_read":29185,"result_size":687,"result_rows":5},"job":null,"formatType":"json","meta":[{"name":"rcode","type":"long","category":"Dimension"},{"name":"query_num","type":"long","category":"Metric"},{"name":"total_internal_query_num","type":"long","category":"Metric"},{"name":"total_external_query_num","type":"long","category":"Metric"},{"name":"dns_response_latency_avg","type":"double","category":"Metric"},{"name":"total_bytes","type":"long","category":"Metric"}],"data":{"resultType":"table","result":[{"rcode":"0","queryNum":"242600","queryRate":67.39,"totalInternalQueryNum":"241720","totalExternalQueryNum":"880","dnsResponseLatencyAvg":45.7425,"totalBytes":"29094099","totalBitsRate":64653.52},{"rcode":"3","queryNum":"1512","queryRate":0.42,"totalInternalQueryNum":"1476","totalExternalQueryNum":"36","dnsResponseLatencyAvg":77.3129,"totalBytes":"20175","totalBitsRate":44.8},{"rcode":"5","queryNum":"144","queryRate":0.04,"totalInternalQueryNum":"89","totalExternalQueryNum":"55","dnsResponseLatencyAvg":94.4913,"totalBytes":"6529","totalBitsRate":14.48},{"rcode":"2","queryNum":"575","queryRate":0.16,"totalInternalQueryNum":"573","totalExternalQueryNum":"2","dnsResponseLatencyAvg":1807.2043,"totalBytes":"5659","totalBitsRate":12.56},{"rcode":"4","queryNum":"2","queryRate":0.0,"totalInternalQueryNum":"2","totalExternalQueryNum":"0","dnsResponseLatencyAvg":71,"totalBytes":"77","totalBitsRate":0.16}]},"originalUrl":"http://192.168.44.55:9999/?query=SELECT rcode AS rcode, SUM(query_num) AS query_num, SUM(internal_query_num) AS total_internal_query_num, SUM(external_query_num) AS total_external_query_num, ROUND(AVG(avg_response_latency_ms),4) AS dns_response_latency_avg, SUM(traffic_inbound_byte + traffic_outbound_byte) AS total_bytes FROM metric_dns_rcode WHERE stat_time >= toDateTime(1677200319) AND stat_time < toDateTime(1677203919) GROUP BY rcode ORDER BY total_bytes desc LIMIT 50 &format=json&option=real-time","msg":"OK"} } +const mockGetDnsRCodesCycle = { status: 200, data: {"status":200,"code":200,"queryKey":"6f6568746dd7ddfe88ae3165bb7be5cf","success":true,"message":null,"statistics":{"elapsed":46,"rows_read":454,"bytes_read":22246,"result_size":396,"result_rows":5},"job":null,"formatType":"json","meta":[{"name":"rcode","type":"long","category":"Dimension"},{"name":"query_num","type":"long","category":"Metric"},{"name":"dns_response_latency_avg","type":"double","category":"Metric"},{"name":"total_bytes","type":"long","category":"Metric"}],"data":{"resultType":"table","result":[{"rcode":"0","queryNum":"258775","queryRate":71.88,"dnsResponseLatencyAvg":40.2086,"totalBytes":"31109812","totalBitsRate":69132.88},{"rcode":"4","queryNum":"3","queryRate":0.0,"dnsResponseLatencyAvg":75.25,"totalBytes":"157","totalBitsRate":0.32},{"rcode":"3","queryNum":"1409","queryRate":0.39,"dnsResponseLatencyAvg":76.1114,"totalBytes":"24481","totalBitsRate":54.4},{"rcode":"2","queryNum":"503","queryRate":0.14,"dnsResponseLatencyAvg":1784.9738,"totalBytes":"5299","totalBitsRate":11.76},{"rcode":"5","queryNum":"147","queryRate":0.04,"dnsResponseLatencyAvg":93.1845,"totalBytes":"7175","totalBitsRate":15.92}]},"originalUrl":"http://192.168.44.55:9999/?query=SELECT rcode AS rcode, SUM(query_num) AS query_num, ROUND(AVG(avg_response_latency_ms),4) AS dns_response_latency_avg, SUM(traffic_inbound_byte + traffic_outbound_byte) AS total_bytes FROM metric_dns_rcode WHERE stat_time >= toDateTime(1677200319)-3600 AND stat_time < toDateTime(1677203919)-3600 AND rcode IN( '0','3','5','2','4' ) GROUP BY rcode&format=json&option=real-time","msg":"OK"} } +const mockGetDnsRCodesDict = { status: 200, data: {"code":200,"data":{"total":25,"pageSize":-1,"pages":1,"pageNo":1,"list":[{"id":5599,"name":"DNS rcode","type":"dnsRcode","code":"0","value":"NoError","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5600,"name":"DNS rcode","type":"dnsRcode","code":"1","value":"FormErr","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5601,"name":"DNS rcode","type":"dnsRcode","code":"2","value":"ServFail","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5602,"name":"DNS rcode","type":"dnsRcode","code":"3","value":"NXDomain","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5603,"name":"DNS rcode","type":"dnsRcode","code":"4","value":"NotImp","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5604,"name":"DNS rcode","type":"dnsRcode","code":"5","value":"Refused","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5605,"name":"DNS rcode","type":"dnsRcode","code":"6","value":"YXDomain","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5606,"name":"DNS rcode","type":"dnsRcode","code":"7","value":"YXRRSet","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5607,"name":"DNS rcode","type":"dnsRcode","code":"8","value":"NXRRSet","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5608,"name":"DNS rcode","type":"dnsRcode","code":"9","value":"NotAuth","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5609,"name":"DNS rcode","type":"dnsRcode","code":"10","value":"NotZone","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5610,"name":"DNS rcode","type":"dnsRcode","code":"11","value":"DSOTYPENI","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5611,"name":"DNS rcode","type":"dnsRcode","code":"12-15","value":"Unassigned","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5612,"name":"DNS rcode","type":"dnsRcode","code":"16","value":"BADVERS / BADSIG","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5613,"name":"DNS rcode","type":"dnsRcode","code":"17","value":"BADKEY","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5614,"name":"DNS rcode","type":"dnsRcode","code":"18","value":"BADTIME","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5615,"name":"DNS rcode","type":"dnsRcode","code":"19","value":"BADMODE","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5616,"name":"DNS rcode","type":"dnsRcode","code":"20","value":"BADNAME","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5617,"name":"DNS rcode","type":"dnsRcode","code":"21","value":"BADALG","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5618,"name":"DNS rcode","type":"dnsRcode","code":"22","value":"BADTRUNC","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5619,"name":"DNS rcode","type":"dnsRcode","code":"23","value":"BADCOOKIE","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5620,"name":"DNS rcode","type":"dnsRcode","code":"24-3840","value":"Unassigned","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5621,"name":"DNS rcode","type":"dnsRcode","code":"3841-4095","value":"Reserved for Private Use","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5622,"name":"DNS rcode","type":"dnsRcode","code":"4096-65534","value":"Unassigned","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}},{"id":5623,"name":"DNS rcode","type":"dnsRcode","code":"65535","value":"Reserved, can be allocated by Standards Action","sort":0,"remark":"","uby":1,"utime":"2022-11-02 16:11:07","i18n":"en","state":1,"buildIn":0,"uuser":{"id":1,"name":null,"username":"admin","salt":null,"lang":null,"theme":null,"lastLoginIp":null,"lastLoginTime":null,"ctime":null,"cby":null,"email":null,"mobile":null,"status":null,"source":null,"buildIn":null,"roleIds":null,"usergroupIds":null,"roles":null,"apiKeyId":null}}]},"time":"2023-02-25 07:53:16","message":"success"}} function initIndexedDbData() { // 模拟indexedDB的内容 @@ -64,17 +64,17 @@ function initIndexedDbData() { delete: jest.fn() }) } -function initMuiltUrlData() { +function initMuiltUrlData () { // 测试内容有多个url不同的axios请求的话,需分开写 axios.get.mockImplementation((url,params) => { - if(params.cycle === 1){ + if (params.cycle === 1) { url = url + 'Cycle' } - if(params.params.type === 'rcode' || params.params.type === 'qtype'){ + if (params.params.type === 'rcode' || params.params.type === 'qtype') { url = url + params.params.type } - if((params.params && params.params.type === 'dnsRcode') || (params.params && params.params.type === 'dnsQtype')){ + if ((params.params && params.params.type === 'dnsRcode') || (params.params && params.params.type === 'dnsQtype')){ url = url + params.params.type } switch (url) { @@ -82,7 +82,7 @@ function initMuiltUrlData() { return Promise.resolve(mockGetScore) case '/interface/application/performance/overview/dimensionCycleTrafficAnalysis': return Promise.resolve(mockGetScoreCycle) - /*1-5 计算分数*/ + /* 1-5 计算分数 */ case '/interface/application/performance/overview/dimensionTcpSessionDelay': return Promise.resolve(mockGetScoreTcpSessionDelay) case '/interface/application/performance/overview/dimensionSslConDelay': @@ -93,7 +93,7 @@ function initMuiltUrlData() { return Promise.resolve(mockGetScoreTcpLostlenPercent) case '/interface/application/performance/overview/dimensionHttpResponseDelay': return Promise.resolve(mockGetScoreHttpResponseDelay) - /*上一周期的数据*/ + /* 上一周期的数据 */ case '/interface/application/performance/overview/dimensionTcpSessionDelayCycle': return Promise.resolve(mockGetScoreTcpSessionDelayCycle) case '/interface/application/performance/overview/dimensionSslConDelayCycle': @@ -254,13 +254,13 @@ describe('views/charts2/charts/networkOverview/NetworkOverviewTabs.vue测试', ( const wrapper = mount(NetworkOverviewTabs, { global: { plugins: [ElementPlus], - mocks:{ + mocks: { $route: { query: { curTab: 'appLabel', tabOperationBeforeType: '5', tabOperationType: '5', - tableShowMore:10 + tableShowMore: 10 }, params: { typeName: 'networkAppPerformance' @@ -274,7 +274,7 @@ describe('views/charts2/charts/networkOverview/NetworkOverviewTabs.vue测试', ( }) await new Promise(resolve => setTimeout(() => { - //背景色验证:重传率列 + // 背景色验证:重传率列 const trendNode0 = wrapper.find('[test-id="data-trend-totalBytes0"]') const trendNode1 = wrapper.find('[test-id="data-trend-totalBytes1"]') const trendNode2 = wrapper.find('[test-id="data-trend-totalBytes2"]') @@ -506,21 +506,21 @@ describe('views/charts2/charts/networkOverview/NetworkOverviewTabs.vue测试', ( test('DNS服务洞察 下钻表格:RCodes列 数据转换验证', async () => { require('vue-router').useRoute.mockReturnValue({ query: {} }) // 模拟 axios 数据 - //axios.get.mockResolvedValue(mockGetDnsRCodes) + // axios.get.mockResolvedValue(mockGetDnsRCodes) initMuiltUrlData() // 模拟indexedDB的内容 initIndexedDbData() // 加载vue组件,获得实例 const wrapper = mount(NetworkOverviewTabs, { global: { - plugins: [ElementPlus,store], - mocks:{ + plugins: [ElementPlus, store], + mocks: { $route: { query: { curTab: 'rcode', tabOperationBeforeType: '5', tabOperationType: '5', - tableShowMore:10 + tableShowMore: 10 }, params: { typeName: 'dnsServiceInsights' @@ -534,18 +534,18 @@ describe('views/charts2/charts/networkOverview/NetworkOverviewTabs.vue测试', ( }) await new Promise(resolve => setTimeout(() => { - //背景色验证 + // 背景色验证 const dnsMapTypeNode0 = wrapper.find('[test-id="dnsMapType-0"]') const dnsMapTypeNode1 = wrapper.find('[test-id="dnsMapType-1"]') const dnsMapTypeNode2 = wrapper.find('[test-id="dnsMapType-2"]') const dnsMapTypeNode3 = wrapper.find('[test-id="dnsMapType-3"]') const dnsMapTypeNode4 = wrapper.find('[test-id="dnsMapType-4"]') - expect(dnsMapTypeNode0.text()).toBe('NoError')//0 - expect(dnsMapTypeNode1.text()).toBe('NXDomain')//4 - expect(dnsMapTypeNode2.text()).toBe('Refused')//3 - expect(dnsMapTypeNode3.text()).toBe('ServFail')//2 - expect(dnsMapTypeNode4.text()).toBe('NotImp')//5 + expect(dnsMapTypeNode0.text()).toBe('NoError') // 0 + expect(dnsMapTypeNode1.text()).toBe('NXDomain') // 4 + expect(dnsMapTypeNode2.text()).toBe('Refused') // 3 + expect(dnsMapTypeNode3.text()).toBe('ServFail') // 2 + expect(dnsMapTypeNode4.text()).toBe('NotImp') // 5 resolve() }, 200)) diff --git a/test/views/charts2/charts/networkOverview/mockData/NetworkOverviewApps.js b/test/views/charts2/charts/networkOverview/mockData/NetworkOverviewApps.js index 1edf9e11..f0771df7 100644 --- a/test/views/charts2/charts/networkOverview/mockData/NetworkOverviewApps.js +++ b/test/views/charts2/charts/networkOverview/mockData/NetworkOverviewApps.js @@ -1,18 +1,19 @@ export const mockData = { common: { mockGet: [ - { data: { status: 200, code: 200, queryKey: 'd9f5b7769b8c9025354794d6eb053f5c', success: true, message: null, statistics: { elapsed: 8, rows_read: 151581, bytes_read: 9780720, result_size: 364, result_rows: 4 }, job: null, formatType: 'json', meta: [{ name: 'app_label', type: 'string', category: 'Dimension' }, { name: 'bytes_total', type: 'long', category: 'Metric' }, { name: 'packets_total', type: 'long', category: 'Metric' }, { name: 'sessions_total', type: 'long', category: 'Metric' }], data: { resultType: 'object', result: [{ type: 'bytes', qq: { rate: 1010.16, total: 21819167 }, douyin: { rate: '0', total: 589724424997 }, kuaishou: { rate: 7390882.56, total: 159642139901 } }, { type: 'packets', qq: { rate: 2.64, total: 57117 }, douyin: { rate: 25025.84, total: 540554929 }, kuaishou: { rate: 6813.36, total: 147167390 } }, { type: 'sessions', qq: { rate: 0.08, total: 2042 }, douyin: { rate: 25.04, total: 541472 }, kuaishou: { rate: 5.04, total: 108589 } }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20common_app_label%20AS%20app_label%2C%20SUM%28common_c2s_byte_num%20%2B%20common_s2c_byte_num%29%20AS%20bytes_total%2C%20SUM%28common_c2s_pkt_num%20%2B%20common_s2c_pkt_num%29%20AS%20packets_total%2C%20SUM%28common_sessions%29%20AS%20sessions_total%20FROM%20metric_application%20WHERE%20stat_time%20%3E%3D%201675180800-172799%20AND%20stat_time%20%3C%201675353599-172799%20AND%20common_app_label%20IN%20%28%20%27douyin%27%2C%27kuaishou%27%2C%27qq%27%2C%27wechat%27%20%29%20GROUP%20BY%20app_label&format=json&option=real-time', msg: 'OK' } }, - { data: { status: 200, code: 200, queryKey: '0d6d3c03e630309af3ff000a353145bc', success: true, message: null, statistics: { elapsed: 40, rows_read: 633867, bytes_read: 23030397, result_size: 43140, result_rows: 404 }, job: null, formatType: 'json', meta: [{ name: 'stat_time', type: 'long', category: 'Dimension' }, { name: 'app_label', type: 'string', category: 'Dimension' }, { name: 'bytes_total', type: 'long', category: 'Metric' }, { name: 'packets_total', type: 'long', category: 'Metric' }, { name: 'sessions_total', type: 'long', category: 'Metric' }], data: { resultType: 'object', result: [{ type: 'bytes', qq: { values: [['1675180224', '0'], ['1675181952', '227614'], ['1675183680', '38412'], ['1675185408', '116041'], ['1675187136', '128653'], ['1675188864', '135713'], ['1675190592', '122184'], ['1675192320', '129864'], ['1675194048', '1964603'], ['1675195776', '125529'], ['1675197504', '40230'], ['1675199232', '77972'], ['1675200960', '78289'], ['1675202688', '67906'], ['1675204416', '57945'], ['1675206144', '109257'], ['1675207872', '143575'], ['1675209600', '118119'], ['1675211328', '175533'], ['1675213056', '69095'], ['1675214784', '108809'], ['1675216512', '130300'], ['1675218240', '68447'], ['1675219968', '630788'], ['1675221696', '155681'], ['1675223424', '176030'], ['1675225152', '128553'], ['1675226880', '113247'], ['1675228608', '50118'], ['1675230336', '84248'], ['1675232064', '142975'], ['1675233792', '93655'], ['1675235520', '33835'], ['1675237248', '139744'], ['1675238976', '77275'], ['1675240704', '121832'], ['1675242432', '96674'], ['1675244160', '117739'], ['1675245888', '167341'], ['1675247616', '111160'], ['1675249344', '121214'], ['1675251072', '52357'], ['1675252800', '64871'], ['1675254528', '175765'], ['1675256256', '198280'], ['1675257984', '313557'], ['1675259712', '130227'], ['1675261440', '104428'], ['1675263168', '274705'], ['1675264896', '70431'], ['1675266624', '140682'], ['1675268352', '83156'], ['1675270080', '1294611'], ['1675271808', '62669'], ['1675273536', '95395'], ['1675275264', '65723'], ['1675276992', '100901'], ['1675278720', '79062'], ['1675280448', '169488'], ['1675282176', '129568'], ['1675283904', '53631'], ['1675285632', '97518'], ['1675287360', '119426'], ['1675289088', '52308'], ['1675290816', '1361035'], ['1675292544', '156913'], ['1675294272', '215434'], ['1675296000', '54255'], ['1675297728', '288032'], ['1675299456', '772642'], ['1675301184', '107272'], ['1675302912', '92936'], ['1675304640', '498593'], ['1675306368', '102826'], ['1675308096', '76248'], ['1675309824', '145622'], ['1675311552', '55976'], ['1675313280', '75229'], ['1675315008', '162535'], ['1675316736', '180897'], ['1675318464', '60033'], ['1675320192', '64638'], ['1675321920', '129043'], ['1675323648', '579694'], ['1675325376', '51898'], ['1675327104', '75191'], ['1675328832', '333430'], ['1675330560', '39211'], ['1675332288', '1735358'], ['1675334016', '58490'], ['1675335744', '104864'], ['1675337472', '264375'], ['1675339200', '269080'], ['1675340928', '70592'], ['1675342656', '93411'], ['1675344384', '112441'], ['1675346112', '90449'], ['1675347840', '70863'], ['1675349568', '96436'], ['1675351296', '185547'], ['1675353024', '119575']], analysis: { rate: 910.96, total: 1.9676022E7 } }, douyin: { values: [['1675180224', '0'], ['1675181952', '6840349207'], ['1675183680', '6938901016'], ['1675185408', '7305187539'], ['1675187136', '8188141571'], ['1675188864', '7247690661'], ['1675190592', '6926759120'], ['1675192320', '7380048772'], ['1675194048', '7993802965'], ['1675195776', '6965741583'], ['1675197504', '8346510734'], ['1675199232', '6825635569'], ['1675200960', '8038915184'], ['1675202688', '8477225356'], ['1675204416', '8038673785'], ['1675206144', '7753302399'], ['1675207872', '7465742788'], ['1675209600', '7584210058'], ['1675211328', '7588104529'], ['1675213056', '8582557129'], ['1675214784', '6841255319'], ['1675216512', '7587872713'], ['1675218240', '7466607445'], ['1675219968', '7870624721'], ['1675221696', '7412764966'], ['1675223424', '8223871918'], ['1675225152', '8243945377'], ['1675226880', '7638363700'], ['1675228608', '7540615267'], ['1675230336', '7650851184'], ['1675232064', '7617949860'], ['1675233792', '7329955659'], ['1675235520', '8245178822'], ['1675237248', '7792148620'], ['1675238976', '7534743840'], ['1675240704', '7851088104'], ['1675242432', '7635228927'], ['1675244160', '6951204213'], ['1675245888', '6381170963'], ['1675247616', '6813650211'], ['1675249344', '7076447245'], ['1675251072', '6632590990'], ['1675252800', '7598778382'], ['1675254528', '7116694268'], ['1675256256', '7626461803'], ['1675257984', '7264879741'], ['1675259712', '7752671679'], ['1675261440', '7515853750'], ['1675263168', '7579932467'], ['1675264896', '7486997643'], ['1675266624', '7051686793'], ['1675268352', '6873607777'], ['1675270080', '7164166983'], ['1675271808', '8195989021'], ['1675273536', '7704140177'], ['1675275264', '6922140060'], ['1675276992', '6681666225'], ['1675278720', '7215000735'], ['1675280448', '7308499670'], ['1675282176', '7296427060'], ['1675283904', '7580297764'], ['1675285632', '6448511494'], ['1675287360', '7480200181'], ['1675289088', '7233539573'], ['1675290816', '7604079203'], ['1675292544', '7347409713'], ['1675294272', '7539122424'], ['1675296000', '8268929988'], ['1675297728', '7904603396'], ['1675299456', '7481158268'], ['1675301184', '7979103862'], ['1675302912', '8030132482'], ['1675304640', '6815551453'], ['1675306368', '6998980883'], ['1675308096', '6637269462'], ['1675309824', '7831818720'], ['1675311552', '6318916982'], ['1675313280', '7442258523'], ['1675315008', '7118095146'], ['1675316736', '7402017517'], ['1675318464', '7493982868'], ['1675320192', '6520083159'], ['1675321920', '7032318182'], ['1675323648', '6905781093'], ['1675325376', '7802918848'], ['1675327104', '7176212380'], ['1675328832', '7211668065'], ['1675330560', '6843290032'], ['1675332288', '7283947628'], ['1675334016', '7177682226'], ['1675335744', '7391199988'], ['1675337472', '6754687853'], ['1675339200', '6993139381'], ['1675340928', '6874136769'], ['1675342656', '6783677168'], ['1675344384', '7349291166'], ['1675346112', '6556961502'], ['1675347840', '7491223967'], ['1675349568', '7842238132'], ['1675351296', '6221073616'], ['1675353024', '7242494202']], analysis: { rate: 3.414793976E7, total: 7.37591229522E11 } }, kuaishou: { values: [['1675180224', '0'], ['1675181952', '1868006861'], ['1675183680', '1732168677'], ['1675185408', '2131898696'], ['1675187136', '2063010277'], ['1675188864', '1937537679'], ['1675190592', '1936788154'], ['1675192320', '2112580028'], ['1675194048', '1507654055'], ['1675195776', '2391037476'], ['1675197504', '2299446264'], ['1675199232', '1735303680'], ['1675200960', '1914095622'], ['1675202688', '1631022968'], ['1675204416', '2460019472'], ['1675206144', '1862981044'], ['1675207872', '1928704280'], ['1675209600', '1908009754'], ['1675211328', '1654220896'], ['1675213056', '2077381841'], ['1675214784', '2446500655'], ['1675216512', '2521067191'], ['1675218240', '1898347189'], ['1675219968', '1773018533'], ['1675221696', '1763549248'], ['1675223424', '1987857147'], ['1675225152', '1923607018'], ['1675226880', '2088989063'], ['1675228608', '2282878819'], ['1675230336', '1984472550'], ['1675232064', '1973641852'], ['1675233792', '2171240776'], ['1675235520', '2398440034'], ['1675237248', '1653378142'], ['1675238976', '1706909466'], ['1675240704', '2129291289'], ['1675242432', '1855368544'], ['1675244160', '1749240925'], ['1675245888', '1989494774'], ['1675247616', '1845322089'], ['1675249344', '2654426983'], ['1675251072', '1727183617'], ['1675252800', '1788630455'], ['1675254528', '1752731900'], ['1675256256', '1792192548'], ['1675257984', '2093031894'], ['1675259712', '1647678097'], ['1675261440', '2330265624'], ['1675263168', '1944482494'], ['1675264896', '1803569696'], ['1675266624', '2439742888'], ['1675268352', '3347846376'], ['1675270080', '1505440347'], ['1675271808', '2190442219'], ['1675273536', '1993445094'], ['1675275264', '1902837201'], ['1675276992', '2996332903'], ['1675278720', '1961133544'], ['1675280448', '1928639573'], ['1675282176', '2156986535'], ['1675283904', '1865411850'], ['1675285632', '1817765812'], ['1675287360', '1864996543'], ['1675289088', '1675537740'], ['1675290816', '1961491179'], ['1675292544', '1872641081'], ['1675294272', '1982193032'], ['1675296000', '2438454944'], ['1675297728', '2174619701'], ['1675299456', '1786626737'], ['1675301184', '1834178614'], ['1675302912', '1910990943'], ['1675304640', '2182469866'], ['1675306368', '1865110834'], ['1675308096', '2078719494'], ['1675309824', '2032641504'], ['1675311552', '1972714687'], ['1675313280', '1768457473'], ['1675315008', '1742922515'], ['1675316736', '2271077831'], ['1675318464', '1859973394'], ['1675320192', '1732928389'], ['1675321920', '1719608554'], ['1675323648', '1822114739'], ['1675325376', '1932173415'], ['1675327104', '2063384929'], ['1675328832', '2090741727'], ['1675330560', '1579268455'], ['1675332288', '2046765417'], ['1675334016', '2331961077'], ['1675335744', '2016304838'], ['1675337472', '1492052833'], ['1675339200', '1897359803'], ['1675340928', '1819642960'], ['1675342656', '1533538421'], ['1675344384', '2190655674'], ['1675346112', '1588408379'], ['1675347840', '1979353840'], ['1675349568', '2107484915'], ['1675351296', '2249064595'], ['1675353024', '1920902044']], analysis: { rate: 9181730.64, total: 1.98324233794E11 } } }, { type: 'packets', qq: { values: [['1675180224', '0'], ['1675181952', '606'], ['1675183680', '214'], ['1675185408', '526'], ['1675187136', '658'], ['1675188864', '962'], ['1675190592', '699'], ['1675192320', '497'], ['1675194048', '4134'], ['1675195776', '430'], ['1675197504', '242'], ['1675199232', '429'], ['1675200960', '346'], ['1675202688', '340'], ['1675204416', '337'], ['1675206144', '546'], ['1675207872', '614'], ['1675209600', '540'], ['1675211328', '463'], ['1675213056', '376'], ['1675214784', '451'], ['1675216512', '682'], ['1675218240', '396'], ['1675219968', '1123'], ['1675221696', '736'], ['1675223424', '771'], ['1675225152', '850'], ['1675226880', '569'], ['1675228608', '280'], ['1675230336', '389'], ['1675232064', '695'], ['1675233792', '457'], ['1675235520', '180'], ['1675237248', '487'], ['1675238976', '388'], ['1675240704', '553'], ['1675242432', '454'], ['1675244160', '514'], ['1675245888', '551'], ['1675247616', '446'], ['1675249344', '523'], ['1675251072', '324'], ['1675252800', '338'], ['1675254528', '473'], ['1675256256', '732'], ['1675257984', '649'], ['1675259712', '689'], ['1675261440', '490'], ['1675263168', '735'], ['1675264896', '339'], ['1675266624', '657'], ['1675268352', '383'], ['1675270080', '1747'], ['1675271808', '263'], ['1675273536', '349'], ['1675275264', '316'], ['1675276992', '520'], ['1675278720', '380'], ['1675280448', '486'], ['1675282176', '550'], ['1675283904', '319'], ['1675285632', '478'], ['1675287360', '604'], ['1675289088', '266'], ['1675290816', '1751'], ['1675292544', '416'], ['1675294272', '1045'], ['1675296000', '273'], ['1675297728', '644'], ['1675299456', '1215'], ['1675301184', '507'], ['1675302912', '436'], ['1675304640', '1353'], ['1675306368', '431'], ['1675308096', '409'], ['1675309824', '384'], ['1675311552', '209'], ['1675313280', '399'], ['1675315008', '435'], ['1675316736', '443'], ['1675318464', '241'], ['1675320192', '368'], ['1675321920', '399'], ['1675323648', '1294'], ['1675325376', '300'], ['1675327104', '384'], ['1675328832', '962'], ['1675330560', '234'], ['1675332288', '6718'], ['1675334016', '254'], ['1675335744', '446'], ['1675337472', '615'], ['1675339200', '877'], ['1675340928', '404'], ['1675342656', '548'], ['1675344384', '458'], ['1675346112', '347'], ['1675347840', '354'], ['1675349568', '417'], ['1675351296', '387'], ['1675353024', '441']], analysis: { rate: 2.96, total: 63339.0 } }, douyin: { values: [['1675180224', '0'], ['1675181952', '6197371'], ['1675183680', '6358852'], ['1675185408', '6715754'], ['1675187136', '7436866'], ['1675188864', '6557821'], ['1675190592', '6355871'], ['1675192320', '6859765'], ['1675194048', '7127026'], ['1675195776', '6381159'], ['1675197504', '7567599'], ['1675199232', '6226694'], ['1675200960', '7369356'], ['1675202688', '7712436'], ['1675204416', '7345952'], ['1675206144', '7218586'], ['1675207872', '6839080'], ['1675209600', '6887533'], ['1675211328', '6935752'], ['1675213056', '7890836'], ['1675214784', '6251184'], ['1675216512', '6845634'], ['1675218240', '6892309'], ['1675219968', '7150591'], ['1675221696', '6823704'], ['1675223424', '7646335'], ['1675225152', '7486344'], ['1675226880', '7040943'], ['1675228608', '6899602'], ['1675230336', '7066419'], ['1675232064', '7012961'], ['1675233792', '6734310'], ['1675235520', '7507330'], ['1675237248', '7328470'], ['1675238976', '7038404'], ['1675240704', '7173446'], ['1675242432', '6993118'], ['1675244160', '6410795'], ['1675245888', '5911194'], ['1675247616', '6277144'], ['1675249344', '6534898'], ['1675251072', '6118595'], ['1675252800', '6991938'], ['1675254528', '6519410'], ['1675256256', '7181072'], ['1675257984', '6615763'], ['1675259712', '7021918'], ['1675261440', '6878676'], ['1675263168', '7164503'], ['1675264896', '6874729'], ['1675266624', '6432753'], ['1675268352', '6307274'], ['1675270080', '6647741'], ['1675271808', '7462350'], ['1675273536', '7142099'], ['1675275264', '6328964'], ['1675276992', '6183940'], ['1675278720', '6791555'], ['1675280448', '6685349'], ['1675282176', '6661602'], ['1675283904', '6946903'], ['1675285632', '5897413'], ['1675287360', '6805796'], ['1675289088', '6568242'], ['1675290816', '7007823'], ['1675292544', '6610019'], ['1675294272', '6858170'], ['1675296000', '7744211'], ['1675297728', '7208221'], ['1675299456', '6815118'], ['1675301184', '7357640'], ['1675302912', '7459213'], ['1675304640', '6214814'], ['1675306368', '6458755'], ['1675308096', '6134159'], ['1675309824', '7139250'], ['1675311552', '5874017'], ['1675313280', '6848695'], ['1675315008', '6519852'], ['1675316736', '6777270'], ['1675318464', '6846661'], ['1675320192', '5884151'], ['1675321920', '6489480'], ['1675323648', '6293153'], ['1675325376', '7195451'], ['1675327104', '6517878'], ['1675328832', '6551928'], ['1675330560', '6274616'], ['1675332288', '6631027'], ['1675334016', '6614058'], ['1675335744', '6771588'], ['1675337472', '6188863'], ['1675339200', '6427004'], ['1675340928', '6343710'], ['1675342656', '6178169'], ['1675344384', '6657322'], ['1675346112', '6091040'], ['1675347840', '6871382'], ['1675349568', '7173669'], ['1675351296', '5823930'], ['1675353024', '6710423']], analysis: { rate: 31333.52, total: 6.76800759E8 } }, kuaishou: { values: [['1675180224', '0'], ['1675181952', '1705580'], ['1675183680', '1593727'], ['1675185408', '1946915'], ['1675187136', '1917429'], ['1675188864', '1795867'], ['1675190592', '1767678'], ['1675192320', '1863517'], ['1675194048', '1378238'], ['1675195776', '2133321'], ['1675197504', '2221475'], ['1675199232', '1603668'], ['1675200960', '1738494'], ['1675202688', '1513171'], ['1675204416', '2255791'], ['1675206144', '1716124'], ['1675207872', '1782197'], ['1675209600', '1744454'], ['1675211328', '1554832'], ['1675213056', '1984725'], ['1675214784', '2233360'], ['1675216512', '2297592'], ['1675218240', '1741490'], ['1675219968', '1624499'], ['1675221696', '1630196'], ['1675223424', '1815006'], ['1675225152', '1756123'], ['1675226880', '1899440'], ['1675228608', '2100577'], ['1675230336', '1831805'], ['1675232064', '1819676'], ['1675233792', '1978645'], ['1675235520', '2167573'], ['1675237248', '1557262'], ['1675238976', '1559497'], ['1675240704', '1944289'], ['1675242432', '1674776'], ['1675244160', '1614920'], ['1675245888', '1791181'], ['1675247616', '1675268'], ['1675249344', '2693715'], ['1675251072', '1642608'], ['1675252800', '1644117'], ['1675254528', '1562746'], ['1675256256', '1641479'], ['1675257984', '1935089'], ['1675259712', '1524063'], ['1675261440', '2144236'], ['1675263168', '1744826'], ['1675264896', '1644469'], ['1675266624', '2158417'], ['1675268352', '3294854'], ['1675270080', '1368127'], ['1675271808', '2014564'], ['1675273536', '1810232'], ['1675275264', '1759498'], ['1675276992', '2605599'], ['1675278720', '1780170'], ['1675280448', '1760412'], ['1675282176', '1996901'], ['1675283904', '1750576'], ['1675285632', '1661220'], ['1675287360', '1712123'], ['1675289088', '1536965'], ['1675290816', '1817954'], ['1675292544', '1733340'], ['1675294272', '1790373'], ['1675296000', '2469841'], ['1675297728', '2010199'], ['1675299456', '1642746'], ['1675301184', '1702235'], ['1675302912', '1732882'], ['1675304640', '2004182'], ['1675306368', '1718766'], ['1675308096', '1878088'], ['1675309824', '1969171'], ['1675311552', '1767540'], ['1675313280', '1637693'], ['1675315008', '1596693'], ['1675316736', '2018056'], ['1675318464', '1771415'], ['1675320192', '1595262'], ['1675321920', '1592882'], ['1675323648', '1902703'], ['1675325376', '1749528'], ['1675327104', '1848181'], ['1675328832', '1939436'], ['1675330560', '1443588'], ['1675332288', '1861515'], ['1675334016', '2110223'], ['1675335744', '1842995'], ['1675337472', '1374125'], ['1675339200', '1718740'], ['1675340928', '1665297'], ['1675342656', '1425021'], ['1675344384', '1991077'], ['1675346112', '1444718'], ['1675347840', '1873466'], ['1675349568', '1936970'], ['1675351296', '2080810'], ['1675353024', '1736479']], analysis: { rate: 8458.88, total: 1.82711574E8 } } }, { type: 'sessions', qq: { values: [['1675180224', '0'], ['1675181952', '31'], ['1675183680', '20'], ['1675185408', '34'], ['1675187136', '74'], ['1675188864', '279'], ['1675190592', '109'], ['1675192320', '29'], ['1675194048', '24'], ['1675195776', '27'], ['1675197504', '17'], ['1675199232', '29'], ['1675200960', '19'], ['1675202688', '22'], ['1675204416', '22'], ['1675206144', '38'], ['1675207872', '36'], ['1675209600', '31'], ['1675211328', '30'], ['1675213056', '24'], ['1675214784', '23'], ['1675216512', '41'], ['1675218240', '24'], ['1675219968', '32'], ['1675221696', '41'], ['1675223424', '51'], ['1675225152', '29'], ['1675226880', '35'], ['1675228608', '24'], ['1675230336', '22'], ['1675232064', '33'], ['1675233792', '31'], ['1675235520', '15'], ['1675237248', '18'], ['1675238976', '24'], ['1675240704', '34'], ['1675242432', '34'], ['1675244160', '30'], ['1675245888', '23'], ['1675247616', '29'], ['1675249344', '27'], ['1675251072', '26'], ['1675252800', '22'], ['1675254528', '27'], ['1675256256', '29'], ['1675257984', '24'], ['1675259712', '34'], ['1675261440', '22'], ['1675263168', '22'], ['1675264896', '22'], ['1675266624', '27'], ['1675268352', '21'], ['1675270080', '30'], ['1675271808', '19'], ['1675273536', '20'], ['1675275264', '20'], ['1675276992', '24'], ['1675278720', '28'], ['1675280448', '31'], ['1675282176', '25'], ['1675283904', '19'], ['1675285632', '31'], ['1675287360', '30'], ['1675289088', '19'], ['1675290816', '32'], ['1675292544', '23'], ['1675294272', '28'], ['1675296000', '29'], ['1675297728', '25'], ['1675299456', '33'], ['1675301184', '26'], ['1675302912', '23'], ['1675304640', '37'], ['1675306368', '24'], ['1675308096', '28'], ['1675309824', '17'], ['1675311552', '15'], ['1675313280', '28'], ['1675315008', '27'], ['1675316736', '29'], ['1675318464', '22'], ['1675320192', '22'], ['1675321920', '25'], ['1675323648', '30'], ['1675325376', '20'], ['1675327104', '28'], ['1675328832', '25'], ['1675330560', '12'], ['1675332288', '34'], ['1675334016', '19'], ['1675335744', '22'], ['1675337472', '31'], ['1675339200', '29'], ['1675340928', '31'], ['1675342656', '23'], ['1675344384', '36'], ['1675346112', '22'], ['1675347840', '25'], ['1675349568', '24'], ['1675351296', '26'], ['1675353024', '16']], analysis: { rate: 0.16, total: 3033.0 } }, douyin: { values: [['1675180224', '0'], ['1675181952', '6307'], ['1675183680', '6702'], ['1675185408', '6756'], ['1675187136', '6828'], ['1675188864', '6497'], ['1675190592', '6185'], ['1675192320', '6583'], ['1675194048', '6532'], ['1675195776', '6740'], ['1675197504', '7292'], ['1675199232', '6741'], ['1675200960', '7047'], ['1675202688', '7131'], ['1675204416', '7279'], ['1675206144', '7196'], ['1675207872', '6783'], ['1675209600', '6854'], ['1675211328', '7270'], ['1675213056', '7356'], ['1675214784', '6577'], ['1675216512', '6797'], ['1675218240', '6803'], ['1675219968', '7000'], ['1675221696', '7003'], ['1675223424', '7239'], ['1675225152', '7020'], ['1675226880', '6913'], ['1675228608', '7101'], ['1675230336', '6999'], ['1675232064', '6962'], ['1675233792', '6751'], ['1675235520', '6536'], ['1675237248', '6941'], ['1675238976', '6415'], ['1675240704', '6791'], ['1675242432', '6908'], ['1675244160', '6860'], ['1675245888', '5950'], ['1675247616', '6232'], ['1675249344', '6511'], ['1675251072', '6425'], ['1675252800', '6286'], ['1675254528', '6372'], ['1675256256', '6196'], ['1675257984', '6540'], ['1675259712', '6727'], ['1675261440', '6848'], ['1675263168', '6384'], ['1675264896', '6558'], ['1675266624', '6920'], ['1675268352', '6138'], ['1675270080', '6483'], ['1675271808', '6787'], ['1675273536', '7100'], ['1675275264', '6471'], ['1675276992', '6572'], ['1675278720', '6853'], ['1675280448', '6651'], ['1675282176', '6495'], ['1675283904', '6561'], ['1675285632', '5679'], ['1675287360', '6804'], ['1675289088', '6701'], ['1675290816', '7207'], ['1675292544', '6823'], ['1675294272', '6503'], ['1675296000', '6936'], ['1675297728', '6897'], ['1675299456', '6850'], ['1675301184', '6706'], ['1675302912', '7029'], ['1675304640', '6323'], ['1675306368', '6737'], ['1675308096', '6051'], ['1675309824', '6497'], ['1675311552', '6195'], ['1675313280', '6366'], ['1675315008', '6814'], ['1675316736', '6815'], ['1675318464', '6703'], ['1675320192', '5984'], ['1675321920', '6553'], ['1675323648', '6695'], ['1675325376', '6797'], ['1675327104', '6273'], ['1675328832', '6351'], ['1675330560', '6805'], ['1675332288', '6460'], ['1675334016', '6957'], ['1675335744', '6849'], ['1675337472', '6486'], ['1675339200', '6635'], ['1675340928', '6558'], ['1675342656', '6865'], ['1675344384', '6716'], ['1675346112', '6258'], ['1675347840', '6677'], ['1675349568', '6991'], ['1675351296', '6307'], ['1675353024', '6618']], analysis: { rate: 30.96, total: 668226.0 } }, kuaishou: { values: [['1675180224', '0'], ['1675181952', '1250'], ['1675183680', '1337'], ['1675185408', '1466'], ['1675187136', '1327'], ['1675188864', '1350'], ['1675190592', '1221'], ['1675192320', '1433'], ['1675194048', '1462'], ['1675195776', '1386'], ['1675197504', '1476'], ['1675199232', '1403'], ['1675200960', '1413'], ['1675202688', '1518'], ['1675204416', '1436'], ['1675206144', '1578'], ['1675207872', '1496'], ['1675209600', '1490'], ['1675211328', '1479'], ['1675213056', '1541'], ['1675214784', '1394'], ['1675216512', '1371'], ['1675218240', '1345'], ['1675219968', '1397'], ['1675221696', '1368'], ['1675223424', '1425'], ['1675225152', '1284'], ['1675226880', '1380'], ['1675228608', '1426'], ['1675230336', '1419'], ['1675232064', '1382'], ['1675233792', '1303'], ['1675235520', '1312'], ['1675237248', '1364'], ['1675238976', '1253'], ['1675240704', '1373'], ['1675242432', '1353'], ['1675244160', '1371'], ['1675245888', '1189'], ['1675247616', '1287'], ['1675249344', '1319'], ['1675251072', '1232'], ['1675252800', '1223'], ['1675254528', '1254'], ['1675256256', '1250'], ['1675257984', '1289'], ['1675259712', '1271'], ['1675261440', '1315'], ['1675263168', '1216'], ['1675264896', '1283'], ['1675266624', '1368'], ['1675268352', '1204'], ['1675270080', '1269'], ['1675271808', '1338'], ['1675273536', '1431'], ['1675275264', '1407'], ['1675276992', '1283'], ['1675278720', '1285'], ['1675280448', '1306'], ['1675282176', '1387'], ['1675283904', '1393'], ['1675285632', '1246'], ['1675287360', '1392'], ['1675289088', '1312'], ['1675290816', '1456'], ['1675292544', '1364'], ['1675294272', '1321'], ['1675296000', '1454'], ['1675297728', '1442'], ['1675299456', '1356'], ['1675301184', '1440'], ['1675302912', '1397'], ['1675304640', '1261'], ['1675306368', '1377'], ['1675308096', '1289'], ['1675309824', '1347'], ['1675311552', '1227'], ['1675313280', '1242'], ['1675315008', '1346'], ['1675316736', '1281'], ['1675318464', '1319'], ['1675320192', '1151'], ['1675321920', '1316'], ['1675323648', '1276'], ['1675325376', '1371'], ['1675327104', '1322'], ['1675328832', '1292'], ['1675330560', '1369'], ['1675332288', '1250'], ['1675334016', '1373'], ['1675335744', '1264'], ['1675337472', '1306'], ['1675339200', '1311'], ['1675340928', '1396'], ['1675342656', '1306'], ['1675344384', '1314'], ['1675346112', '1252'], ['1675347840', '1381'], ['1675349568', '1346'], ['1675351296', '1264'], ['1675353024', '1354']], analysis: { rate: 6.24, total: 134464.0 } }, wechat: { values: [['1675180224', '0'], ['1675181952', '2364'], ['1675183680', '2379'], ['1675185408', '2393'], ['1675187136', '2569'], ['1675188864', '2380'], ['1675190592', '2014'], ['1675192320', '2262'], ['1675194048', '2348'], ['1675195776', '2290'], ['1675197504', '2716'], ['1675199232', '2370'], ['1675200960', '2274'], ['1675202688', '2546'], ['1675204416', '2514'], ['1675206144', '2693'], ['1675207872', '2274'], ['1675209600', '2385'], ['1675211328', '2557'], ['1675213056', '2383'], ['1675214784', '2379'], ['1675216512', '2465'], ['1675218240', '2421'], ['1675219968', '2658'], ['1675221696', '2141'], ['1675223424', '2746'], ['1675225152', '2308'], ['1675226880', '2493'], ['1675228608', '2572'], ['1675230336', '2532'], ['1675232064', '2581'], ['1675233792', '2265'], ['1675235520', '2261'], ['1675237248', '2461'], ['1675238976', '2277'], ['1675240704', '2576'], ['1675242432', '2513'], ['1675244160', '2396'], ['1675245888', '2032'], ['1675247616', '2353'], ['1675249344', '2427'], ['1675251072', '2281'], ['1675252800', '2171'], ['1675254528', '2425'], ['1675256256', '2159'], ['1675257984', '2193'], ['1675259712', '2377'], ['1675261440', '2438'], ['1675263168', '2205'], ['1675264896', '2197'], ['1675266624', '2422'], ['1675268352', '2396'], ['1675270080', '2266'], ['1675271808', '2580'], ['1675273536', '2472'], ['1675275264', '2519'], ['1675276992', '2299'], ['1675278720', '2321'], ['1675280448', '2203'], ['1675282176', '2255'], ['1675283904', '2262'], ['1675285632', '1913'], ['1675287360', '2283'], ['1675289088', '2423'], ['1675290816', '2308'], ['1675292544', '2363'], ['1675294272', '2182'], ['1675296000', '2522'], ['1675297728', '2432'], ['1675299456', '2284'], ['1675301184', '2380'], ['1675302912', '2392'], ['1675304640', '2300'], ['1675306368', '2200'], ['1675308096', '2063'], ['1675309824', '2436'], ['1675311552', '1986'], ['1675313280', '2189'], ['1675315008', '2430'], ['1675316736', '2315'], ['1675318464', '2360'], ['1675320192', '2156'], ['1675321920', '2346'], ['1675323648', '2188'], ['1675325376', '2513'], ['1675327104', '2040'], ['1675328832', '2402'], ['1675330560', '2576'], ['1675332288', '2354'], ['1675334016', '2476'], ['1675335744', '2149'], ['1675337472', '2197'], ['1675339200', '2602'], ['1675340928', '2138'], ['1675342656', '2435'], ['1675344384', '2385'], ['1675346112', '2262'], ['1675347840', '2497'], ['1675349568', '2322'], ['1675351296', '2075'], ['1675353024', '2423']], analysis: { rate: 10.88, total: 235306.0 } } }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20TIME_FLOOR_WITH_FILL%28stat_time%2C%27PT1728S%27%2C%27zero%27%29%20AS%20stat_time%2C%20common_app_label%20AS%20app_label%2C%20SUM%28common_c2s_byte_num%20%2B%20common_s2c_byte_num%29%20AS%20bytes_total%2C%20SUM%28common_c2s_pkt_num%20%2B%20common_s2c_pkt_num%29%20AS%20packets_total%2C%20SUM%28common_sessions%29%20AS%20sessions_total%20FROM%20metric_application%20WHERE%20stat_time%20%3E%3D%20toDateTime%281675180800%29%20AND%20stat_time%20%3C%20toDateTime%281675353599%29%20AND%20common_app_label%20IN%20%28%20%27douyin%27%2C%27kuaishou%27%2C%27qq%27%2C%27wechat%27%20%29%20GROUP%20BY%20stat_time%2Capp_label%20ORDER%20BY%20stat_time%20ASC&format=json&option=real-time', msg: 'OK' } }, - { data: { status: 200, code: 200, queryKey: '11e7e2634661a4ac63f45a90a4fbc366', success: true, message: null, statistics: { elapsed: 10, rows_read: 151581, bytes_read: 9629321, result_size: 384, result_rows: 4 }, job: null, formatType: 'json', meta: [{ name: 'app_company', type: 'string', category: 'Dimension' }, { name: 'bytes_total', type: 'long', category: 'Metric' }, { name: 'packets_total', type: 'long', category: 'Metric' }, { name: 'sessions_total', type: 'long', category: 'Metric' }], data: { resultType: 'object', result: [{ type: 'bytes', Baidu: { rate: 1088125.12, total: 23503366121 }, Tencent: { rate: 13817425.76, total: 298454669638 }, Bytedance: { rate: 29791297.68, total: 643488305661 }, Alibaba: { rate: 3822845.52, total: 82572985509 } }, { type: 'packets', Baidu: { rate: 1132.24, total: 24456798 }, Tencent: { rate: 15815.6, total: 341615256 }, Bytedance: { rate: 27681.68, total: 597920164 }, Alibaba: { rate: 4051.04, total: 87502224 } }, { type: 'sessions', Baidu: { rate: 7.36, total: 158507 }, Tencent: { rate: 16.4, total: 355022 }, Bytedance: { rate: 38.56, total: 833195 }, Alibaba: { rate: 24, total: 519104 } }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20app_company%20AS%20app_company%2C%20SUM%28common_c2s_byte_num%20%2B%20common_s2c_byte_num%29%20AS%20bytes_total%2C%20SUM%28common_c2s_pkt_num%20%2B%20common_s2c_pkt_num%29%20AS%20packets_total%2C%20SUM%28common_sessions%29%20AS%20sessions_total%20FROM%20metric_application%20WHERE%20stat_time%20%3E%3D%20toDateTime%281675180800%29-172799%20AND%20stat_time%20%3C%20toDateTime%281675353599%29-172799%20AND%20app_company%20IN%20%28%20%27Bytedance%27%2C%27Tencent%27%2C%27Alibaba%27%2C%27Baidu%27%20%29%20GROUP%20BY%20app_company&format=json&option=real-time', msg: 'OK' } }, - { data: { status: 200, code: 200, queryKey: '54f7d44a87abfa2643033b45fb9ac1af', success: true, message: null, statistics: { elapsed: 14, rows_read: 633867, bytes_read: 22394902, result_size: 45357, result_rows: 404 }, job: null, formatType: 'json', meta: [{ name: 'stat_time', type: 'long', category: 'Dimension' }, { name: 'app_company', type: 'string', category: 'Dimension' }, { name: 'bytes_total', type: 'long', category: 'Metric' }, { name: 'packets_total', type: 'long', category: 'Metric' }, { name: 'sessions_total', type: 'long', category: 'Metric' }], data: { resultType: 'object', result: [{ type: 'bytes', Baidu: { values: [['1675180224', '0'], ['1675181952', '186922462'], ['1675183680', '246368399'], ['1675185408', '319109553'], ['1675187136', '304441401'], ['1675188864', '535693636'], ['1675190592', '306487561'], ['1675192320', '179845873'], ['1675194048', '240757575'], ['1675195776', '242490898'], ['1675197504', '266812080'], ['1675199232', '285633401'], ['1675200960', '250783731'], ['1675202688', '202741925'], ['1675204416', '288905564'], ['1675206144', '264733418'], ['1675207872', '170662251'], ['1675209600', '188119952'], ['1675211328', '258930258'], ['1675213056', '211813880'], ['1675214784', '311067410'], ['1675216512', '228958245'], ['1675218240', '203782626'], ['1675219968', '258819386'], ['1675221696', '922311133'], ['1675223424', '274140838'], ['1675225152', '214457186'], ['1675226880', '320938298'], ['1675228608', '223494342'], ['1675230336', '263221725'], ['1675232064', '392156448'], ['1675233792', '209510347'], ['1675235520', '233293822'], ['1675237248', '420123341'], ['1675238976', '500120418'], ['1675240704', '306320387'], ['1675242432', '276800750'], ['1675244160', '246412014'], ['1675245888', '213229410'], ['1675247616', '174621303'], ['1675249344', '167818258'], ['1675251072', '311630640'], ['1675252800', '204026984'], ['1675254528', '248019634'], ['1675256256', '225920989'], ['1675257984', '289571558'], ['1675259712', '260433584'], ['1675261440', '267076409'], ['1675263168', '172960469'], ['1675264896', '187771584'], ['1675266624', '241454724'], ['1675268352', '329752706'], ['1675270080', '288552844'], ['1675271808', '248913131'], ['1675273536', '343099199'], ['1675275264', '279732573'], ['1675276992', '199138635'], ['1675278720', '253584024'], ['1675280448', '186462990'], ['1675282176', '241297490'], ['1675283904', '676915126'], ['1675285632', '238702155'], ['1675287360', '349619952'], ['1675289088', '236809805'], ['1675290816', '236038733'], ['1675292544', '276030570'], ['1675294272', '277516641'], ['1675296000', '211822464'], ['1675297728', '272051733'], ['1675299456', '235388507'], ['1675301184', '319171935'], ['1675302912', '192217920'], ['1675304640', '345455785'], ['1675306368', '319848769'], ['1675308096', '303561695'], ['1675309824', '208942533'], ['1675311552', '272791726'], ['1675313280', '204352308'], ['1675315008', '388846886'], ['1675316736', '339402557'], ['1675318464', '260030322'], ['1675320192', '264913750'], ['1675321920', '268731960'], ['1675323648', '245927219'], ['1675325376', '279881933'], ['1675327104', '311843005'], ['1675328832', '282638902'], ['1675330560', '185391416'], ['1675332288', '251799584'], ['1675334016', '206192986'], ['1675335744', '254411430'], ['1675337472', '599077930'], ['1675339200', '257549224'], ['1675340928', '225861527'], ['1675342656', '198703921'], ['1675344384', '209918478'], ['1675346112', '190463924'], ['1675347840', '254093605'], ['1675349568', '229914017'], ['1675351296', '261381749'], ['1675353024', '174475031']], analysis: { rate: 1269032.4, total: 2.7410941385E10 } }, Tencent: { values: [['1675180224', '0'], ['1675181952', '3364312107'], ['1675183680', '4079983457'], ['1675185408', '3664816581'], ['1675187136', '3901897437'], ['1675188864', '3105742432'], ['1675190592', '3109079773'], ['1675192320', '3634085043'], ['1675194048', '3304598207'], ['1675195776', '3364370975'], ['1675197504', '3679341083'], ['1675199232', '4004654138'], ['1675200960', '5075731596'], ['1675202688', '3350826774'], ['1675204416', '3965120815'], ['1675206144', '3258127210'], ['1675207872', '3579118980'], ['1675209600', '3436901533'], ['1675211328', '3963971268'], ['1675213056', '3524855019'], ['1675214784', '4125745109'], ['1675216512', '4280315838'], ['1675218240', '3329633122'], ['1675219968', '4412688081'], ['1675221696', '3283482365'], ['1675223424', '4468620552'], ['1675225152', '3557179411'], ['1675226880', '3579870652'], ['1675228608', '3670862787'], ['1675230336', '4625969288'], ['1675232064', '3708010075'], ['1675233792', '3244513018'], ['1675235520', '3878415405'], ['1675237248', '4052973978'], ['1675238976', '3691082916'], ['1675240704', '5372688259'], ['1675242432', '3702382171'], ['1675244160', '4219862737'], ['1675245888', '2787825671'], ['1675247616', '4763031990'], ['1675249344', '3516330763'], ['1675251072', '3113829408'], ['1675252800', '3218983906'], ['1675254528', '4173806034'], ['1675256256', '3123724450'], ['1675257984', '3244222065'], ['1675259712', '3707679969'], ['1675261440', '4554164279'], ['1675263168', '3597868330'], ['1675264896', '3677154027'], ['1675266624', '3196518119'], ['1675268352', '4017034040'], ['1675270080', '2951739722'], ['1675271808', '4169564577'], ['1675273536', '3285519344'], ['1675275264', '4539611918'], ['1675276992', '3367141015'], ['1675278720', '4219586671'], ['1675280448', '3643011153'], ['1675282176', '3525034696'], ['1675283904', '3250835967'], ['1675285632', '3734756859'], ['1675287360', '3458799171'], ['1675289088', '3561847920'], ['1675290816', '3832087457'], ['1675292544', '3720294758'], ['1675294272', '3095277835'], ['1675296000', '4171337383'], ['1675297728', '4078122772'], ['1675299456', '3741403940'], ['1675301184', '3894701201'], ['1675302912', '3674186510'], ['1675304640', '3516696930'], ['1675306368', '3943407043'], ['1675308096', '3496006622'], ['1675309824', '4132870839'], ['1675311552', '2927013222'], ['1675313280', '3183796841'], ['1675315008', '3711742824'], ['1675316736', '3747908497'], ['1675318464', '3526464555'], ['1675320192', '3785846721'], ['1675321920', '3796697606'], ['1675323648', '3594162696'], ['1675325376', '4271082440'], ['1675327104', '3308973077'], ['1675328832', '3754503133'], ['1675330560', '4138496845'], ['1675332288', '3412677975'], ['1675334016', '3702495983'], ['1675335744', '3023519646'], ['1675337472', '3131554386'], ['1675339200', '4523013005'], ['1675340928', '3188123380'], ['1675342656', '3753413721'], ['1675344384', '3645320211'], ['1675346112', '3399819129'], ['1675347840', '4205903262'], ['1675349568', '3392709766'], ['1675351296', '3433064810'], ['1675353024', '3759978873']], analysis: { rate: 1.715686448E7, total: 3.7058612815E11 } }, Bytedance: { values: [['1675180224', '0'], ['1675181952', '7369561391'], ['1675183680', '7581865508'], ['1675185408', '7912824524'], ['1675187136', '9032300363'], ['1675188864', '7917531147'], ['1675190592', '7631183906'], ['1675192320', '8246679988'], ['1675194048', '8554299101'], ['1675195776', '7883903079'], ['1675197504', '9031857361'], ['1675199232', '7661890423'], ['1675200960', '8886566417'], ['1675202688', '9019250065'], ['1675204416', '8916375747'], ['1675206144', '8479488817'], ['1675207872', '8219763606'], ['1675209600', '8217171805'], ['1675211328', '8336759307'], ['1675213056', '9353465505'], ['1675214784', '7682132545'], ['1675216512', '8100245348'], ['1675218240', '8100168625'], ['1675219968', '8614738437'], ['1675221696', '8355313295'], ['1675223424', '8951119363'], ['1675225152', '8882541689'], ['1675226880', '8228284971'], ['1675228608', '8291470893'], ['1675230336', '8283731813'], ['1675232064', '8398043347'], ['1675233792', '7973853220'], ['1675235520', '13703005209'], ['1675237248', '8489774773'], ['1675238976', '8259222020'], ['1675240704', '8463042283'], ['1675242432', '8273284467'], ['1675244160', '7625472061'], ['1675245888', '6913302871'], ['1675247616', '7410940675'], ['1675249344', '7824045049'], ['1675251072', '7402226771'], ['1675252800', '8316031061'], ['1675254528', '7813282137'], ['1675256256', '8240617903'], ['1675257984', '7983563297'], ['1675259712', '8494801456'], ['1675261440', '8146768399'], ['1675263168', '8273092765'], ['1675264896', '8029603477'], ['1675266624', '7811366743'], ['1675268352', '7599047914'], ['1675270080', '7739846662'], ['1675271808', '8996551338'], ['1675273536', '8445844664'], ['1675275264', '7643411716'], ['1675276992', '7297063335'], ['1675278720', '7840484023'], ['1675280448', '7895092312'], ['1675282176', '7781709149'], ['1675283904', '8213174770'], ['1675285632', '6948686720'], ['1675287360', '8058979941'], ['1675289088', '7959295076'], ['1675290816', '8342931562'], ['1675292544', '7890729747'], ['1675294272', '8124775981'], ['1675296000', '9073797921'], ['1675297728', '8458548545'], ['1675299456', '8191538286'], ['1675301184', '9051440584'], ['1675302912', '8617530633'], ['1675304640', '7459882915'], ['1675306368', '7712272840'], ['1675308096', '7131792015'], ['1675309824', '8534686770'], ['1675311552', '7032452112'], ['1675313280', '8126943638'], ['1675315008', '7628525105'], ['1675316736', '8179538543'], ['1675318464', '8045196777'], ['1675320192', '6970699521'], ['1675321920', '7634588789'], ['1675323648', '7461903527'], ['1675325376', '8334614663'], ['1675327104', '7947481785'], ['1675328832', '7767817477'], ['1675330560', '7451706424'], ['1675332288', '7851774523'], ['1675334016', '7805064464'], ['1675335744', '8152740246'], ['1675337472', '7345349762'], ['1675339200', '7620051268'], ['1675340928', '7578625871'], ['1675342656', '7432575512'], ['1675344384', '8101138008'], ['1675346112', '6979913422'], ['1675347840', '8055117174'], ['1675349568', '8425690572'], ['1675351296', '7175858020'], ['1675353024', '8582510465']], analysis: { rate: 3.751340312E7, total: 8.1028481811E11 } }, Alibaba: { values: [['1675180224', '0'], ['1675181952', '1152063372'], ['1675183680', '816089654'], ['1675185408', '889381524'], ['1675187136', '1518914261'], ['1675188864', '936045239'], ['1675190592', '890527360'], ['1675192320', '1062813475'], ['1675194048', '893057420'], ['1675195776', '805316139'], ['1675197504', '865817855'], ['1675199232', '1337051022'], ['1675200960', '1323094820'], ['1675202688', '918093022'], ['1675204416', '974409292'], ['1675206144', '1221499013'], ['1675207872', '852239484'], ['1675209600', '1028295137'], ['1675211328', '905035471'], ['1675213056', '1160686881'], ['1675214784', '1066457258'], ['1675216512', '782964312'], ['1675218240', '882604945'], ['1675219968', '861896720'], ['1675221696', '1650609412'], ['1675223424', '1195310046'], ['1675225152', '870859428'], ['1675226880', '971786415'], ['1675228608', '864172496'], ['1675230336', '840337374'], ['1675232064', '1010973454'], ['1675233792', '928181215'], ['1675235520', '1001513720'], ['1675237248', '960498648'], ['1675238976', '1067893630'], ['1675240704', '1438810910'], ['1675242432', '1083718561'], ['1675244160', '920906302'], ['1675245888', '890363120'], ['1675247616', '1118329884'], ['1675249344', '653422905'], ['1675251072', '927813538'], ['1675252800', '937941271'], ['1675254528', '1255903102'], ['1675256256', '883473793'], ['1675257984', '1536384871'], ['1675259712', '869667589'], ['1675261440', '1020451266'], ['1675263168', '861917611'], ['1675264896', '930498335'], ['1675266624', '967959768'], ['1675268352', '823527431'], ['1675270080', '847364141'], ['1675271808', '972941204'], ['1675273536', '986524138'], ['1675275264', '758295795'], ['1675276992', '799931952'], ['1675278720', '928900364'], ['1675280448', '860706729'], ['1675282176', '1331438313'], ['1675283904', '1194277664'], ['1675285632', '971877294'], ['1675287360', '873458218'], ['1675289088', '772449542'], ['1675290816', '1137891669'], ['1675292544', '774151500'], ['1675294272', '1229495516'], ['1675296000', '973689434'], ['1675297728', '1074303268'], ['1675299456', '1107023021'], ['1675301184', '1101332250'], ['1675302912', '1135839078'], ['1675304640', '1399158961'], ['1675306368', '919405551'], ['1675308096', '991916341'], ['1675309824', '918910409'], ['1675311552', '835529341'], ['1675313280', '845288353'], ['1675315008', '889173989'], ['1675316736', '777774217'], ['1675318464', '1000168195'], ['1675320192', '1161465589'], ['1675321920', '1076421226'], ['1675323648', '981676104'], ['1675325376', '1325555966'], ['1675327104', '1696768745'], ['1675328832', '1115038006'], ['1675330560', '958436259'], ['1675332288', '923745960'], ['1675334016', '702238686'], ['1675335744', '923585295'], ['1675337472', '1180442037'], ['1675339200', '1372251737'], ['1675340928', '1230751841'], ['1675342656', '1351630983'], ['1675344384', '1222543360'], ['1675346112', '1049059896'], ['1675347840', '1011820794'], ['1675349568', '833134386'], ['1675351296', '1077473674'], ['1675353024', '1048911408']], analysis: { rate: 4735200.96, total: 1.0227974817E11 } } }, { type: 'packets', Baidu: { values: [['1675180224', '0'], ['1675181952', '223000'], ['1675183680', '265508'], ['1675185408', '350366'], ['1675187136', '310999'], ['1675188864', '510694'], ['1675190592', '308396'], ['1675192320', '203767'], ['1675194048', '255023'], ['1675195776', '255845'], ['1675197504', '287227'], ['1675199232', '292255'], ['1675200960', '270281'], ['1675202688', '241808'], ['1675204416', '294475'], ['1675206144', '279966'], ['1675207872', '200530'], ['1675209600', '231734'], ['1675211328', '287475'], ['1675213056', '235889'], ['1675214784', '333597'], ['1675216512', '239230'], ['1675218240', '226415'], ['1675219968', '275448'], ['1675221696', '831021'], ['1675223424', '286996'], ['1675225152', '236941'], ['1675226880', '345722'], ['1675228608', '251852'], ['1675230336', '281771'], ['1675232064', '406684'], ['1675233792', '226724'], ['1675235520', '247147'], ['1675237248', '407263'], ['1675238976', '475638'], ['1675240704', '314283'], ['1675242432', '283487'], ['1675244160', '272287'], ['1675245888', '227637'], ['1675247616', '209270'], ['1675249344', '194027'], ['1675251072', '309921'], ['1675252800', '227283'], ['1675254528', '269168'], ['1675256256', '257953'], ['1675257984', '289215'], ['1675259712', '276239'], ['1675261440', '269606'], ['1675263168', '194894'], ['1675264896', '212679'], ['1675266624', '251133'], ['1675268352', '327280'], ['1675270080', '304735'], ['1675271808', '249876'], ['1675273536', '338018'], ['1675275264', '293189'], ['1675276992', '216697'], ['1675278720', '255466'], ['1675280448', '214979'], ['1675282176', '246673'], ['1675283904', '576987'], ['1675285632', '247766'], ['1675287360', '395316'], ['1675289088', '256700'], ['1675290816', '261973'], ['1675292544', '285871'], ['1675294272', '295870'], ['1675296000', '244208'], ['1675297728', '292936'], ['1675299456', '268863'], ['1675301184', '324627'], ['1675302912', '215455'], ['1675304640', '346224'], ['1675306368', '336487'], ['1675308096', '307464'], ['1675309824', '233401'], ['1675311552', '272466'], ['1675313280', '222933'], ['1675315008', '403553'], ['1675316736', '328135'], ['1675318464', '277378'], ['1675320192', '275123'], ['1675321920', '294213'], ['1675323648', '282124'], ['1675325376', '316009'], ['1675327104', '319574'], ['1675328832', '284039'], ['1675330560', '215777'], ['1675332288', '260041'], ['1675334016', '232958'], ['1675335744', '270457'], ['1675337472', '589546'], ['1675339200', '293118'], ['1675340928', '252330'], ['1675342656', '226237'], ['1675344384', '232968'], ['1675346112', '205055'], ['1675347840', '267297'], ['1675349568', '243364'], ['1675351296', '298675'], ['1675353024', '196343']], analysis: { rate: 1334.88, total: 2.8833543E7 } }, Tencent: { values: [['1675180224', '0'], ['1675181952', '3818134'], ['1675183680', '4563920'], ['1675185408', '4132640'], ['1675187136', '4385814'], ['1675188864', '3586636'], ['1675190592', '3504492'], ['1675192320', '4134802'], ['1675194048', '3832888'], ['1675195776', '3864609'], ['1675197504', '4208527'], ['1675199232', '4652086'], ['1675200960', '5709498'], ['1675202688', '3839139'], ['1675204416', '4523660'], ['1675206144', '3659488'], ['1675207872', '4152250'], ['1675209600', '4102703'], ['1675211328', '4533740'], ['1675213056', '4012813'], ['1675214784', '4690927'], ['1675216512', '4919255'], ['1675218240', '3820763'], ['1675219968', '5040527'], ['1675221696', '3675884'], ['1675223424', '5402526'], ['1675225152', '4052783'], ['1675226880', '4058055'], ['1675228608', '4154259'], ['1675230336', '5551875'], ['1675232064', '4246082'], ['1675233792', '3691700'], ['1675235520', '4407249'], ['1675237248', '4579687'], ['1675238976', '4308236'], ['1675240704', '6146600'], ['1675242432', '4267726'], ['1675244160', '4895859'], ['1675245888', '3121889'], ['1675247616', '5703047'], ['1675249344', '4050565'], ['1675251072', '3601406'], ['1675252800', '3689234'], ['1675254528', '4842280'], ['1675256256', '3576063'], ['1675257984', '3717912'], ['1675259712', '4272289'], ['1675261440', '5157266'], ['1675263168', '4171065'], ['1675264896', '4436045'], ['1675266624', '3701600'], ['1675268352', '4597804'], ['1675270080', '3414228'], ['1675271808', '4755984'], ['1675273536', '3751048'], ['1675275264', '5055637'], ['1675276992', '3827549'], ['1675278720', '4837360'], ['1675280448', '4162862'], ['1675282176', '4010427'], ['1675283904', '3688127'], ['1675285632', '4134073'], ['1675287360', '3969197'], ['1675289088', '4069713'], ['1675290816', '4329068'], ['1675292544', '4312185'], ['1675294272', '3469766'], ['1675296000', '4865903'], ['1675297728', '4726677'], ['1675299456', '4227722'], ['1675301184', '4814378'], ['1675302912', '4146704'], ['1675304640', '4013049'], ['1675306368', '5079648'], ['1675308096', '4017690'], ['1675309824', '4692524'], ['1675311552', '3282170'], ['1675313280', '3615970'], ['1675315008', '4284415'], ['1675316736', '4251382'], ['1675318464', '4079501'], ['1675320192', '4306283'], ['1675321920', '4295930'], ['1675323648', '4135408'], ['1675325376', '4797047'], ['1675327104', '3959597'], ['1675328832', '4317743'], ['1675330560', '4789363'], ['1675332288', '3847900'], ['1675334016', '4184459'], ['1675335744', '3418078'], ['1675337472', '3588527'], ['1675339200', '5216648'], ['1675340928', '3616641'], ['1675342656', '4200530'], ['1675344384', '4299724'], ['1675346112', '3842595'], ['1675347840', '4933832'], ['1675349568', '3889067'], ['1675351296', '3877365'], ['1675353024', '4329364']], analysis: { rate: 19699.04, total: 4.25497355E8 } }, Bytedance: { values: [['1675180224', '0'], ['1675181952', '6799533'], ['1675183680', '7060925'], ['1675185408', '7379460'], ['1675187136', '8301829'], ['1675188864', '7273730'], ['1675190592', '7100779'], ['1675192320', '7752192'], ['1675194048', '7750030'], ['1675195776', '7319904'], ['1675197504', '8290190'], ['1675199232', '7095216'], ['1675200960', '8243937'], ['1675202688', '8306100'], ['1675204416', '8254111'], ['1675206144', '7985829'], ['1675207872', '7638631'], ['1675209600', '7572888'], ['1675211328', '7706519'], ['1675213056', '8679582'], ['1675214784', '7153544'], ['1675216512', '7412147'], ['1675218240', '7590032'], ['1675219968', '7938389'], ['1675221696', '7810497'], ['1675223424', '8432330'], ['1675225152', '8161332'], ['1675226880', '7694075'], ['1675228608', '7682116'], ['1675230336', '7748001'], ['1675232064', '7821867'], ['1675233792', '7729207'], ['1675235520', '11947627'], ['1675237248', '8074533'], ['1675238976', '7806795'], ['1675240704', '7879088'], ['1675242432', '7676938'], ['1675244160', '7130214'], ['1675245888', '6488665'], ['1675247616', '6914394'], ['1675249344', '7332892'], ['1675251072', '6905190'], ['1675252800', '7738099'], ['1675254528', '7244679'], ['1675256256', '7835482'], ['1675257984', '7368797'], ['1675259712', '7812392'], ['1675261440', '7547373'], ['1675263168', '7915780'], ['1675264896', '7490826'], ['1675266624', '7258320'], ['1675268352', '7071557'], ['1675270080', '7269268'], ['1675271808', '8294078'], ['1675273536', '7911350'], ['1675275264', '7071895'], ['1675276992', '6851499'], ['1675278720', '7463798'], ['1675280448', '7319364'], ['1675282176', '7200166'], ['1675283904', '7624110'], ['1675285632', '6484110'], ['1675287360', '7453461'], ['1675289088', '7316779'], ['1675290816', '7768863'], ['1675292544', '7200389'], ['1675294272', '7481637'], ['1675296000', '8573284'], ['1675297728', '7820538'], ['1675299456', '7584761'], ['1675301184', '8417599'], ['1675302912', '8099749'], ['1675304640', '6898692'], ['1675306368', '7197094'], ['1675308096', '6690452'], ['1675309824', '7875615'], ['1675311552', '6586706'], ['1675313280', '7562808'], ['1675315008', '7089669'], ['1675316736', '7616459'], ['1675318464', '7440240'], ['1675320192', '6393045'], ['1675321920', '7136052'], ['1675323648', '6910672'], ['1675325376', '7761117'], ['1675327104', '7337632'], ['1675328832', '7169969'], ['1675330560', '6931424'], ['1675332288', '7250827'], ['1675334016', '7287014'], ['1675335744', '7587844'], ['1675337472', '6816941'], ['1675339200', '7072447'], ['1675340928', '7084394'], ['1675342656', '6866922'], ['1675344384', '7453057'], ['1675346112', '6575739'], ['1675347840', '7473871'], ['1675349568', '7823227'], ['1675351296', '6794326'], ['1675353024', '8025933']], analysis: { rate: 34863.2, total: 7.53041449E8 } }, Alibaba: { values: [['1675180224', '0'], ['1675181952', '1194824'], ['1675183680', '874520'], ['1675185408', '978698'], ['1675187136', '1545349'], ['1675188864', '995660'], ['1675190592', '964558'], ['1675192320', '1132357'], ['1675194048', '933975'], ['1675195776', '872689'], ['1675197504', '954165'], ['1675199232', '1330184'], ['1675200960', '1383990'], ['1675202688', '979732'], ['1675204416', '1120652'], ['1675206144', '1293611'], ['1675207872', '895376'], ['1675209600', '1058540'], ['1675211328', '996617'], ['1675213056', '1285398'], ['1675214784', '1184048'], ['1675216512', '828141'], ['1675218240', '956425'], ['1675219968', '927401'], ['1675221696', '1732940'], ['1675223424', '1255392'], ['1675225152', '942600'], ['1675226880', '1047615'], ['1675228608', '934109'], ['1675230336', '882083'], ['1675232064', '1102657'], ['1675233792', '989123'], ['1675235520', '1078210'], ['1675237248', '1004089'], ['1675238976', '1112246'], ['1675240704', '1357828'], ['1675242432', '1139375'], ['1675244160', '1006102'], ['1675245888', '906401'], ['1675247616', '1160626'], ['1675249344', '717427'], ['1675251072', '979588'], ['1675252800', '984928'], ['1675254528', '1261482'], ['1675256256', '940721'], ['1675257984', '1687111'], ['1675259712', '914218'], ['1675261440', '1050511'], ['1675263168', '950266'], ['1675264896', '997716'], ['1675266624', '1003139'], ['1675268352', '881504'], ['1675270080', '884410'], ['1675271808', '1000046'], ['1675273536', '1058272'], ['1675275264', '830253'], ['1675276992', '869953'], ['1675278720', '1007729'], ['1675280448', '947868'], ['1675282176', '1228764'], ['1675283904', '1206030'], ['1675285632', '1050310'], ['1675287360', '922042'], ['1675289088', '827866'], ['1675290816', '1219546'], ['1675292544', '889108'], ['1675294272', '1221466'], ['1675296000', '1024271'], ['1675297728', '1158810'], ['1675299456', '1158765'], ['1675301184', '1152618'], ['1675302912', '1202723'], ['1675304640', '1451502'], ['1675306368', '957862'], ['1675308096', '1056933'], ['1675309824', '989023'], ['1675311552', '905790'], ['1675313280', '911109'], ['1675315008', '934888'], ['1675316736', '870895'], ['1675318464', '1054094'], ['1675320192', '1181781'], ['1675321920', '1145989'], ['1675323648', '1045330'], ['1675325376', '1403359'], ['1675327104', '1835335'], ['1675328832', '1178441'], ['1675330560', '1039693'], ['1675332288', '981454'], ['1675334016', '769723'], ['1675335744', '987426'], ['1675337472', '1217419'], ['1675339200', '1416718'], ['1675340928', '1317407'], ['1675342656', '1367354'], ['1675344384', '1294205'], ['1675346112', '1051390'], ['1675347840', '1116220'], ['1675349568', '879904'], ['1675351296', '1102655'], ['1675353024', '1129891']], analysis: { rate: 5007.52, total: 1.08161557E8 } } }, { type: 'sessions', Baidu: { values: [['1675180224', '0'], ['1675181952', '2045'], ['1675183680', '1954'], ['1675185408', '2133'], ['1675187136', '2110'], ['1675188864', '2060'], ['1675190592', '1923'], ['1675192320', '2101'], ['1675194048', '2039'], ['1675195776', '2082'], ['1675197504', '2080'], ['1675199232', '2059'], ['1675200960', '2054'], ['1675202688', '2197'], ['1675204416', '2154'], ['1675206144', '2252'], ['1675207872', '2155'], ['1675209600', '2116'], ['1675211328', '2145'], ['1675213056', '2212'], ['1675214784', '2121'], ['1675216512', '1874'], ['1675218240', '1899'], ['1675219968', '1910'], ['1675221696', '2065'], ['1675223424', '2075'], ['1675225152', '1924'], ['1675226880', '2037'], ['1675228608', '2128'], ['1675230336', '1964'], ['1675232064', '1982'], ['1675233792', '1964'], ['1675235520', '1963'], ['1675237248', '2045'], ['1675238976', '2166'], ['1675240704', '2040'], ['1675242432', '2082'], ['1675244160', '1898'], ['1675245888', '1845'], ['1675247616', '2016'], ['1675249344', '1940'], ['1675251072', '1850'], ['1675252800', '1974'], ['1675254528', '2060'], ['1675256256', '2070'], ['1675257984', '2018'], ['1675259712', '1920'], ['1675261440', '1844'], ['1675263168', '1872'], ['1675264896', '1738'], ['1675266624', '1920'], ['1675268352', '1810'], ['1675270080', '1923'], ['1675271808', '1890'], ['1675273536', '1862'], ['1675275264', '2070'], ['1675276992', '1897'], ['1675278720', '1917'], ['1675280448', '1943'], ['1675282176', '1883'], ['1675283904', '2095'], ['1675285632', '1850'], ['1675287360', '2139'], ['1675289088', '1987'], ['1675290816', '2228'], ['1675292544', '2032'], ['1675294272', '2219'], ['1675296000', '2241'], ['1675297728', '2188'], ['1675299456', '2230'], ['1675301184', '2031'], ['1675302912', '2058'], ['1675304640', '1921'], ['1675306368', '1832'], ['1675308096', '1668'], ['1675309824', '1833'], ['1675311552', '1792'], ['1675313280', '1793'], ['1675315008', '1901'], ['1675316736', '1752'], ['1675318464', '1858'], ['1675320192', '1740'], ['1675321920', '1826'], ['1675323648', '1966'], ['1675325376', '1927'], ['1675327104', '1981'], ['1675328832', '1954'], ['1675330560', '1733'], ['1675332288', '1758'], ['1675334016', '1900'], ['1675335744', '1898'], ['1675337472', '1890'], ['1675339200', '1986'], ['1675340928', '2070'], ['1675342656', '1963'], ['1675344384', '1944'], ['1675346112', '1858'], ['1675347840', '1990'], ['1675349568', '1978'], ['1675351296', '2108'], ['1675353024', '1876']], analysis: { rate: 9.2, total: 198264.0 } }, Tencent: { values: [['1675180224', '0'], ['1675181952', '4160'], ['1675183680', '4083'], ['1675185408', '4093'], ['1675187136', '4451'], ['1675188864', '4512'], ['1675190592', '3742'], ['1675192320', '4244'], ['1675194048', '4253'], ['1675195776', '4279'], ['1675197504', '4939'], ['1675199232', '4171'], ['1675200960', '4387'], ['1675202688', '4622'], ['1675204416', '4475'], ['1675206144', '4626'], ['1675207872', '4229'], ['1675209600', '4338'], ['1675211328', '4460'], ['1675213056', '4329'], ['1675214784', '4605'], ['1675216512', '4549'], ['1675218240', '4514'], ['1675219968', '4797'], ['1675221696', '4822'], ['1675223424', '5130'], ['1675225152', '4586'], ['1675226880', '4598'], ['1675228608', '4867'], ['1675230336', '4666'], ['1675232064', '4783'], ['1675233792', '4255'], ['1675235520', '4168'], ['1675237248', '4250'], ['1675238976', '4008'], ['1675240704', '4517'], ['1675242432', '4226'], ['1675244160', '4085'], ['1675245888', '3583'], ['1675247616', '4062'], ['1675249344', '4120'], ['1675251072', '3765'], ['1675252800', '3811'], ['1675254528', '4096'], ['1675256256', '3880'], ['1675257984', '4416'], ['1675259712', '4364'], ['1675261440', '4347'], ['1675263168', '4279'], ['1675264896', '3914'], ['1675266624', '4422'], ['1675268352', '4189'], ['1675270080', '4180'], ['1675271808', '4505'], ['1675273536', '4504'], ['1675275264', '4560'], ['1675276992', '4234'], ['1675278720', '4241'], ['1675280448', '3834'], ['1675282176', '4208'], ['1675283904', '3993'], ['1675285632', '3594'], ['1675287360', '4235'], ['1675289088', '4100'], ['1675290816', '4481'], ['1675292544', '4852'], ['1675294272', '4473'], ['1675296000', '4467'], ['1675297728', '4529'], ['1675299456', '4335'], ['1675301184', '4385'], ['1675302912', '4452'], ['1675304640', '4570'], ['1675306368', '4463'], ['1675308096', '3981'], ['1675309824', '4338'], ['1675311552', '4032'], ['1675313280', '4292'], ['1675315008', '4494'], ['1675316736', '4300'], ['1675318464', '4781'], ['1675320192', '4240'], ['1675321920', '4651'], ['1675323648', '4682'], ['1675325376', '4630'], ['1675327104', '3965'], ['1675328832', '4295'], ['1675330560', '4559'], ['1675332288', '4316'], ['1675334016', '4281'], ['1675335744', '4326'], ['1675337472', '4476'], ['1675339200', '4688'], ['1675340928', '4199'], ['1675342656', '4440'], ['1675344384', '4481'], ['1675346112', '4403'], ['1675347840', '4563'], ['1675349568', '4580'], ['1675351296', '4591'], ['1675353024', '4252']], analysis: { rate: 20.16, total: 435098.0 } }, Bytedance: { values: [['1675180224', '0'], ['1675181952', '9660'], ['1675183680', '10163'], ['1675185408', '10437'], ['1675187136', '10493'], ['1675188864', '10058'], ['1675190592', '9670'], ['1675192320', '10173'], ['1675194048', '10109'], ['1675195776', '10301'], ['1675197504', '10879'], ['1675199232', '10491'], ['1675200960', '10796'], ['1675202688', '10615'], ['1675204416', '11054'], ['1675206144', '11036'], ['1675207872', '10498'], ['1675209600', '10504'], ['1675211328', '10911'], ['1675213056', '11053'], ['1675214784', '10541'], ['1675216512', '10122'], ['1675218240', '10506'], ['1675219968', '10752'], ['1675221696', '11017'], ['1675223424', '11052'], ['1675225152', '10610'], ['1675226880', '10862'], ['1675228608', '10897'], ['1675230336', '10748'], ['1675232064', '10806'], ['1675233792', '10589'], ['1675235520', '10160'], ['1675237248', '10590'], ['1675238976', '10022'], ['1675240704', '10218'], ['1675242432', '10319'], ['1675244160', '10392'], ['1675245888', '9096'], ['1675247616', '9688'], ['1675249344', '9996'], ['1675251072', '9730'], ['1675252800', '9606'], ['1675254528', '9726'], ['1675256256', '9635'], ['1675257984', '10247'], ['1675259712', '10242'], ['1675261440', '10328'], ['1675263168', '9738'], ['1675264896', '9720'], ['1675266624', '10521'], ['1675268352', '9414'], ['1675270080', '9936'], ['1675271808', '10447'], ['1675273536', '10840'], ['1675275264', '10020'], ['1675276992', '9910'], ['1675278720', '10333'], ['1675280448', '10341'], ['1675282176', '9771'], ['1675283904', '9946'], ['1675285632', '8611'], ['1675287360', '10287'], ['1675289088', '10168'], ['1675290816', '10858'], ['1675292544', '10252'], ['1675294272', '9988'], ['1675296000', '10610'], ['1675297728', '10408'], ['1675299456', '10594'], ['1675301184', '10363'], ['1675302912', '10647'], ['1675304640', '10022'], ['1675306368', '10571'], ['1675308096', '9479'], ['1675309824', '10015'], ['1675311552', '9625'], ['1675313280', '9858'], ['1675315008', '10435'], ['1675316736', '10623'], ['1675318464', '10332'], ['1675320192', '9246'], ['1675321920', '10265'], ['1675323648', '10308'], ['1675325376', '10266'], ['1675327104', '10017'], ['1675328832', '9931'], ['1675330560', '10591'], ['1675332288', '9971'], ['1675334016', '10590'], ['1675335744', '10745'], ['1675337472', '9874'], ['1675339200', '10143'], ['1675340928', '10501'], ['1675342656', '10829'], ['1675344384', '10524'], ['1675346112', '9595'], ['1675347840', '10187'], ['1675349568', '10652'], ['1675351296', '10072'], ['1675353024', '10234']], analysis: { rate: 47.52, total: 1026622.0 } }, Alibaba: { values: [['1675180224', '0'], ['1675181952', '6259'], ['1675183680', '5994'], ['1675185408', '6400'], ['1675187136', '6495'], ['1675188864', '6432'], ['1675190592', '6382'], ['1675192320', '7069'], ['1675194048', '6016'], ['1675195776', '6542'], ['1675197504', '6274'], ['1675199232', '6580'], ['1675200960', '6660'], ['1675202688', '6121'], ['1675204416', '6612'], ['1675206144', '6465'], ['1675207872', '7281'], ['1675209600', '7306'], ['1675211328', '6455'], ['1675213056', '6976'], ['1675214784', '8342'], ['1675216512', '5635'], ['1675218240', '6527'], ['1675219968', '6182'], ['1675221696', '7297'], ['1675223424', '6458'], ['1675225152', '6446'], ['1675226880', '6260'], ['1675228608', '6424'], ['1675230336', '6584'], ['1675232064', '6260'], ['1675233792', '7646'], ['1675235520', '6740'], ['1675237248', '6407'], ['1675238976', '6809'], ['1675240704', '5862'], ['1675242432', '6052'], ['1675244160', '6395'], ['1675245888', '5817'], ['1675247616', '5452'], ['1675249344', '5573'], ['1675251072', '5614'], ['1675252800', '6100'], ['1675254528', '6085'], ['1675256256', '6413'], ['1675257984', '8435'], ['1675259712', '5928'], ['1675261440', '6034'], ['1675263168', '6818'], ['1675264896', '5718'], ['1675266624', '5842'], ['1675268352', '5789'], ['1675270080', '6738'], ['1675271808', '6023'], ['1675273536', '6160'], ['1675275264', '6088'], ['1675276992', '6252'], ['1675278720', '6782'], ['1675280448', '6569'], ['1675282176', '6028'], ['1675283904', '6243'], ['1675285632', '5515'], ['1675287360', '6350'], ['1675289088', '5872'], ['1675290816', '6445'], ['1675292544', '6173'], ['1675294272', '6579'], ['1675296000', '6547'], ['1675297728', '6635'], ['1675299456', '7510'], ['1675301184', '7063'], ['1675302912', '6524'], ['1675304640', '7073'], ['1675306368', '7444'], ['1675308096', '6280'], ['1675309824', '5793'], ['1675311552', '6172'], ['1675313280', '6252'], ['1675315008', '5648'], ['1675316736', '6324'], ['1675318464', '6242'], ['1675320192', '5861'], ['1675321920', '6722'], ['1675323648', '6581'], ['1675325376', '6184'], ['1675327104', '7407'], ['1675328832', '7587'], ['1675330560', '5659'], ['1675332288', '6138'], ['1675334016', '5978'], ['1675335744', '6513'], ['1675337472', '6154'], ['1675339200', '5983'], ['1675340928', '6780'], ['1675342656', '6356'], ['1675344384', '6301'], ['1675346112', '5765'], ['1675347840', '6199'], ['1675349568', '6272'], ['1675351296', '7894'], ['1675353024', '6256']], analysis: { rate: '', total: '' } } }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20TIME_FLOOR_WITH_FILL%28stat_time%2C%27PT1728S%27%2C%27zero%27%29%20AS%20stat_time%2C%20app_company%20AS%20app_company%2C%20SUM%28common_c2s_byte_num%20%2B%20common_s2c_byte_num%29%20AS%20bytes_total%2C%20SUM%28common_c2s_pkt_num%20%2B%20common_s2c_pkt_num%29%20AS%20packets_total%2C%20SUM%28common_sessions%29%20AS%20sessions_total%20FROM%20metric_application%20WHERE%20stat_time%20%3E%3D%20toDateTime%281675180800%29%20AND%20stat_time%20%3C%20toDateTime%281675353599%29%20AND%20app_company%20IN%20%28%20%27Bytedance%27%2C%27Tencent%27%2C%27Alibaba%27%2C%27Baidu%27%20%29%20GROUP%20BY%20stat_time%2Capp_company%20ORDER%20BY%20stat_time%20ASC&format=json&option=real-time', msg: 'OK' } }, - { data: { code: 200, data: { total: 31, pageSize: 24, pages: 2, pageNo: 1, list: [{ id: 5568, name: '供应商', type: 'overviewProvide', code: '1', value: 'Alibaba', sort: 0, remark: 'Alibaba Group Holding Limited, also known as Alibaba, is a Chinese multinational technology company specializing in e-commerce, retail, Internet, and technology.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5569, name: '供应商', type: 'overviewProvide', code: '1', value: 'Tencent', sort: 0, remark: 'Tencent Holdings Ltd. is a Chinese multinational technology and entertainment conglomerate and holding company headquartered in Shenzhen. It is one of the highest grossing multimedia companies in the world based on revenue.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5570, name: '供应商', type: 'overviewProvide', code: '1', value: 'Baidu', sort: 0, remark: "Baidu, Inc. is a Chinese multinational technology company specializing in Internet-related services and products and artificial intelligence, headquartered in Beijing's Haidian District. It is one of the largest AI and Internet companies in the world.", uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5571, name: '供应商', type: 'overviewProvide', code: '1', value: 'Jingdong', sort: 0, remark: 'JD.com, Inc., also known as Jingdong and formerly called 360buy, is a Chinese e-commerce company headquartered in Beijing. It is one of the two massive B2C online retailers in China by transaction volume and revenue, a member of the Fortune Global 500 and a major competitor to Alibaba-run Tmall.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5572, name: '供应商', type: 'overviewProvide', code: '1', value: 'Meituan', sort: 0, remark: 'Meituan operates as a web based shopping platform for locally found consumer products and retail services. The Company offers deals of the day by selling vouchers on local services and entertainment, dining, delivery, and other services. Meituan provides its services throughout China.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5573, name: '供应商', type: 'overviewProvide', code: '1', value: 'Bytedance', sort: 0, remark: 'ByteDance Ltd. is a Chinese multinational internet technology company headquartered in Beijing and incorporated in the Cayman Islands.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5574, name: '供应商', type: 'overviewProvide', code: '1', value: 'Pinduoduo', sort: 0, remark: 'Pinduoduo Inc. is the largest Chinese agricultural-focused technology platform. It has created a platform that connects farmers and distributors with consumers directly through its interactive shopping experience.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5575, name: '供应商', type: 'overviewProvide', code: '1', value: 'Netease', sort: 0, remark: 'NetEase, Inc. is a Chinese Internet technology company providing online services centered on content, community, communications, and commerce.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5576, name: '供应商', type: 'overviewProvide', code: '1', value: 'Kuaishou', sort: 0, remark: "Kuaishou is a video-sharing mobile app that is developed by Beijing Kuaishou Technology Co., Ltd. It is popular with users outside China's Tier 1 cities.", uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5577, name: '供应商', type: 'overviewProvide', code: '1', value: '360cn', sort: 0, remark: 'Qihoo 360, full name Qihoo 360 Technology Co. Ltd., is a Chinese internet security company that has developed the antivirus software programs 360 Safeguard and 360 Mobile Safe, the Web browser 360 Secure Browser, and the mobile application store 360 Mobile Assistant.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5578, name: '供应商', type: 'overviewProvide', code: '1', value: 'Xiaomi', sort: 0, remark: 'Xiaomi Corporation, commonly known as Xiaomi and registered in Asia as Xiaomi Inc., is a Chinese designer and manufacturer of consumer electronics and related software, home appliances, and household items.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5579, name: '供应商', type: 'overviewProvide', code: '1', value: 'Sina', sort: 0, remark: 'Sina Corporation is a Chinese technology company. Sina operates four major business lines: Sina Weibo, Sina Mobile, Sina Online, and Sinanet. Sina has over 100 million registered users worldwide. ', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5580, name: '供应商', type: 'overviewProvide', code: '1', value: 'Huawei', sort: 0, remark: 'Huawei Technologies Co., Ltd. is a Chinese multinational technology corporation headquartered in Shenzhen, Guangdong, China. It designs, develops, produces and sells telecommunications equipment, consumer electronics and various smart devices.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5581, name: '供应商', type: 'overviewProvide', code: '1', value: 'Beike', sort: 0, remark: 'KE Holdings Inc is a China-based holding company engaged in housing transactions and related services.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5582, name: '供应商', type: 'overviewProvide', code: '1', value: 'Aiqiyi', sort: 0, remark: 'iQIYI, Inc. is an innovative market-leading online entertainment service in China.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5583, name: '供应商', type: 'overviewProvide', code: '1', value: 'Ctrip', sort: 0, remark: 'Trip.com Group Limited is a Chinese multinational online travel company that provides services including accommodation reservation, transportation ticketing, packaged tours and corporate travel management.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5584, name: '供应商', type: 'overviewProvide', code: '1', value: 'Sohu', sort: 0, remark: 'Sohu, Inc. is a Chinese Internet company headquartered in the Sohu Internet Plaza in Haidian District, Beijing.[4][5] Sohu and its subsidiaries offer advertising, a search engine (Sogou.com), on-line multiplayer gaming (ChangYou.com) and other services.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5585, name: '供应商', type: 'overviewProvide', code: '1', value: 'YY', sort: 0, remark: 'YY is a major Chinese video-based social network, a subsidiary of JOYY.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5586, name: '供应商', type: 'overviewProvide', code: '1', value: 'Xiaohongshu', sort: 0, remark: 'Xiaohongshu, also known as Little Red Book is a social media and e-commerce platform. ', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5587, name: '供应商', type: 'overviewProvide', code: '1', value: 'Apple', sort: 0, remark: 'Apple Inc. is an American multinational technology company that specializes in consumer electronics, software and online services headquartered in Cupertino, California, United States.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5588, name: '供应商', type: 'overviewProvide', code: '1', value: 'Microsoft', sort: 0, remark: 'Microsoft Corporation is an American multinational technology corporation which produces computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washington, United States.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5589, name: '供应商', type: 'overviewProvide', code: '1', value: 'Steam', sort: 0, remark: 'Steam parent company Valve has enjoyed enormous success as a game developer, thanks to titles like Half-Life, Counter-Strike: Global Offensive, and Dota 2.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5590, name: '供应商', type: 'overviewProvide', code: '1', value: 'Cibn', sort: 0, remark: 'China International Radio and Television Network (CIBN for short) is a new media international communication platform established by China Radio International.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5591, name: '供应商', type: 'overviewProvide', code: '1', value: 'Amazon', sort: 0, remark: 'Amazon.com, Inc. is an American multinational technology company which focuses on e-commerce, cloud computing, digital streaming, and artificial intelligence.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }] }, time: '2023-02-06 01:39:14', message: 'success' } }, - { data: { code: 200, data: { total: 3493, pageSize: 24, pages: 146, pageNo: 1, list: [{ id: 2304, name: '应用名', type: 'overviewApp', code: '1', value: 'avoidr', sort: 0, remark: 'Avoidr is a free web proxy', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 2560, name: '应用名', type: 'overviewApp', code: '1', value: 'google_translate', sort: 0, remark: 'Google Translate is the Google translation tool', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 2816, name: '应用名', type: 'overviewApp', code: '1', value: 'taobao', sort: 0, remark: 'Taobao is a chinese shopping website', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3072, name: '应用名', type: 'overviewApp', code: '1', value: 'iapp', sort: 0, remark: 'News site about mobile applications', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3328, name: '应用名', type: 'overviewApp', code: '1', value: 'searchnu', sort: 0, remark: 'Browser toolbar search engine', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3584, name: '应用名', type: 'overviewApp', code: '1', value: 'standardmedia', sort: 0, remark: 'Kenyan news portal', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3840, name: '应用名', type: 'overviewApp', code: '1', value: 'mocean', sort: 0, remark: 'MOcean is a advertising agency', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4096, name: '应用名', type: 'overviewApp', code: '1', value: 'elnuevoherald', sort: 0, remark: 'Cuban news portal', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4352, name: '应用名', type: 'overviewApp', code: '1', value: 'millardayo', sort: 0, remark: 'Global news portal in Tanzania', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4608, name: '应用名', type: 'overviewApp', code: '1', value: 'thadinatin', sort: 0, remark: 'Popular infotainment portal in Myanmar', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4864, name: '应用名', type: 'overviewApp', code: '1', value: 'iec104', sort: 0, remark: 'IEC 60870-5-104 protocol (aka IEC 104) is a part of IEC Telecontrol Equipment and Systems Standard IEC 60870-5 that provides a communication profile for sending basic telecontrol messages between two systems in electrical engineering and power system automation', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5120, name: '应用名', type: 'overviewApp', code: '1', value: 'agora_io', sort: 0, remark: 'Agora SDK is a WebRTC framework', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5376, name: '应用名', type: 'overviewApp', code: '1', value: 'LaowangVPN', sort: 0, uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 2305, name: '应用名', type: 'overviewApp', code: '1', value: 'surrogafier', sort: 0, remark: 'Surrogafier is an online proxy provider This protocol plug-in classifies the http traffic to the hosts surrogafierinfo and govfservercom', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 2561, name: '应用名', type: 'overviewApp', code: '1', value: 'gyao', sort: 0, remark: 'GyaO is a video website operated by Yahoo Japan', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 2817, name: '应用名', type: 'overviewApp', code: '1', value: 'cvs', sort: 0, remark: 'The Concurrent Versions System keeps track of all work and all changes in a set of files typically the implementation of a software project and allows several developers to collaborate', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3073, name: '应用名', type: 'overviewApp', code: '1', value: 'ifeng_finance', sort: 0, remark: 'Ifeng finance news portal', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3329, name: '应用名', type: 'overviewApp', code: '1', value: 'panet', sort: 0, remark: 'News and entertainment web portal', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3585, name: '应用名', type: 'overviewApp', code: '1', value: 'tasweernews', sort: 0, remark: 'Jordanian news portal', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3841, name: '应用名', type: 'overviewApp', code: '1', value: 'turner', sort: 0, remark: 'Turner is a video streaming solution provider for audio/video content web services', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4097, name: '应用名', type: 'overviewApp', code: '1', value: 'listindiario', sort: 0, remark: 'Dominican republic news portal', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4353, name: '应用名', type: 'overviewApp', code: '1', value: 'teletica', sort: 0, remark: 'TV calendar service and news web portal in Costa Rica', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4609, name: '应用名', type: 'overviewApp', code: '1', value: 'torrent9', sort: 0, remark: 'Popular torrent file (P2P) search engine and download web site', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4865, name: '应用名', type: 'overviewApp', code: '1', value: 'vonage_mobile', sort: 0, remark: 'Vonage Mobile is an instant messaging application that provides feature to make landline or international calls', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }] }, time: '2023-02-07 02:12:00', message: 'success' } }, - { data: { code: 200, data: { total: 1, pageSize: 24, pages: 1, pageNo: 1, list: [{ id: 5579, name: '供应商', type: 'overviewProvide', code: '1', value: 'Sina', sort: 0, remark: 'Sina Corporation is a Chinese technology company. Sina operates four major business lines: Sina Weibo, Sina Mobile, Sina Online, and Sinanet. Sina has over 100 million registered users worldwide. ', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }] }, time: '2023-02-07 07:46:05', message: 'success' } }, - { data: { code: 200, data: { total: 1, pageSize: 24, pages: 1, pageNo: 1, list: [{ id: 3072, name: '应用名', type: 'overviewApp', code: '1', value: 'iapp', sort: 0, remark: 'News site about mobile applications', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }] }, time: '2023-02-07 09:37:55', message: 'success' } } + { status: 200, data: { status: 200, code: 200, queryKey: 'd9f5b7769b8c9025354794d6eb053f5c', success: true, message: null, statistics: { elapsed: 8, rows_read: 151581, bytes_read: 9780720, result_size: 364, result_rows: 4 }, job: null, formatType: 'json', meta: [{ name: 'app_label', type: 'string', category: 'Dimension' }, { name: 'bytes_total', type: 'long', category: 'Metric' }, { name: 'packets_total', type: 'long', category: 'Metric' }, { name: 'sessions_total', type: 'long', category: 'Metric' }], data: { resultType: 'object', result: [{ type: 'bytes', qq: { rate: 1010.16, total: 21819167 }, douyin: { rate: '0', total: 589724424997 }, kuaishou: { rate: 7390882.56, total: 159642139901 } }, { type: 'packets', qq: { rate: 2.64, total: 57117 }, douyin: { rate: 25025.84, total: 540554929 }, kuaishou: { rate: 6813.36, total: 147167390 } }, { type: 'sessions', qq: { rate: 0.08, total: 2042 }, douyin: { rate: 25.04, total: 541472 }, kuaishou: { rate: 5.04, total: 108589 } }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20common_app_label%20AS%20app_label%2C%20SUM%28common_c2s_byte_num%20%2B%20common_s2c_byte_num%29%20AS%20bytes_total%2C%20SUM%28common_c2s_pkt_num%20%2B%20common_s2c_pkt_num%29%20AS%20packets_total%2C%20SUM%28common_sessions%29%20AS%20sessions_total%20FROM%20metric_application%20WHERE%20stat_time%20%3E%3D%201675180800-172799%20AND%20stat_time%20%3C%201675353599-172799%20AND%20common_app_label%20IN%20%28%20%27douyin%27%2C%27kuaishou%27%2C%27qq%27%2C%27wechat%27%20%29%20GROUP%20BY%20app_label&format=json&option=real-time', msg: 'OK' } }, + { status: 200, data: { status: 200, code: 200, queryKey: '0d6d3c03e630309af3ff000a353145bc', success: true, message: null, statistics: { elapsed: 40, rows_read: 633867, bytes_read: 23030397, result_size: 43140, result_rows: 404 }, job: null, formatType: 'json', meta: [{ name: 'stat_time', type: 'long', category: 'Dimension' }, { name: 'app_label', type: 'string', category: 'Dimension' }, { name: 'bytes_total', type: 'long', category: 'Metric' }, { name: 'packets_total', type: 'long', category: 'Metric' }, { name: 'sessions_total', type: 'long', category: 'Metric' }], data: { resultType: 'object', result: [{ type: 'bytes', qq: { values: [['1675180224', '0'], ['1675181952', '227614'], ['1675183680', '38412'], ['1675185408', '116041'], ['1675187136', '128653'], ['1675188864', '135713'], ['1675190592', '122184'], ['1675192320', '129864'], ['1675194048', '1964603'], ['1675195776', '125529'], ['1675197504', '40230'], ['1675199232', '77972'], ['1675200960', '78289'], ['1675202688', '67906'], ['1675204416', '57945'], ['1675206144', '109257'], ['1675207872', '143575'], ['1675209600', '118119'], ['1675211328', '175533'], ['1675213056', '69095'], ['1675214784', '108809'], ['1675216512', '130300'], ['1675218240', '68447'], ['1675219968', '630788'], ['1675221696', '155681'], ['1675223424', '176030'], ['1675225152', '128553'], ['1675226880', '113247'], ['1675228608', '50118'], ['1675230336', '84248'], ['1675232064', '142975'], ['1675233792', '93655'], ['1675235520', '33835'], ['1675237248', '139744'], ['1675238976', '77275'], ['1675240704', '121832'], ['1675242432', '96674'], ['1675244160', '117739'], ['1675245888', '167341'], ['1675247616', '111160'], ['1675249344', '121214'], ['1675251072', '52357'], ['1675252800', '64871'], ['1675254528', '175765'], ['1675256256', '198280'], ['1675257984', '313557'], ['1675259712', '130227'], ['1675261440', '104428'], ['1675263168', '274705'], ['1675264896', '70431'], ['1675266624', '140682'], ['1675268352', '83156'], ['1675270080', '1294611'], ['1675271808', '62669'], ['1675273536', '95395'], ['1675275264', '65723'], ['1675276992', '100901'], ['1675278720', '79062'], ['1675280448', '169488'], ['1675282176', '129568'], ['1675283904', '53631'], ['1675285632', '97518'], ['1675287360', '119426'], ['1675289088', '52308'], ['1675290816', '1361035'], ['1675292544', '156913'], ['1675294272', '215434'], ['1675296000', '54255'], ['1675297728', '288032'], ['1675299456', '772642'], ['1675301184', '107272'], ['1675302912', '92936'], ['1675304640', '498593'], ['1675306368', '102826'], ['1675308096', '76248'], ['1675309824', '145622'], ['1675311552', '55976'], ['1675313280', '75229'], ['1675315008', '162535'], ['1675316736', '180897'], ['1675318464', '60033'], ['1675320192', '64638'], ['1675321920', '129043'], ['1675323648', '579694'], ['1675325376', '51898'], ['1675327104', '75191'], ['1675328832', '333430'], ['1675330560', '39211'], ['1675332288', '1735358'], ['1675334016', '58490'], ['1675335744', '104864'], ['1675337472', '264375'], ['1675339200', '269080'], ['1675340928', '70592'], ['1675342656', '93411'], ['1675344384', '112441'], ['1675346112', '90449'], ['1675347840', '70863'], ['1675349568', '96436'], ['1675351296', '185547'], ['1675353024', '119575']], analysis: { rate: 910.96, total: 1.9676022E7 } }, douyin: { values: [['1675180224', '0'], ['1675181952', '6840349207'], ['1675183680', '6938901016'], ['1675185408', '7305187539'], ['1675187136', '8188141571'], ['1675188864', '7247690661'], ['1675190592', '6926759120'], ['1675192320', '7380048772'], ['1675194048', '7993802965'], ['1675195776', '6965741583'], ['1675197504', '8346510734'], ['1675199232', '6825635569'], ['1675200960', '8038915184'], ['1675202688', '8477225356'], ['1675204416', '8038673785'], ['1675206144', '7753302399'], ['1675207872', '7465742788'], ['1675209600', '7584210058'], ['1675211328', '7588104529'], ['1675213056', '8582557129'], ['1675214784', '6841255319'], ['1675216512', '7587872713'], ['1675218240', '7466607445'], ['1675219968', '7870624721'], ['1675221696', '7412764966'], ['1675223424', '8223871918'], ['1675225152', '8243945377'], ['1675226880', '7638363700'], ['1675228608', '7540615267'], ['1675230336', '7650851184'], ['1675232064', '7617949860'], ['1675233792', '7329955659'], ['1675235520', '8245178822'], ['1675237248', '7792148620'], ['1675238976', '7534743840'], ['1675240704', '7851088104'], ['1675242432', '7635228927'], ['1675244160', '6951204213'], ['1675245888', '6381170963'], ['1675247616', '6813650211'], ['1675249344', '7076447245'], ['1675251072', '6632590990'], ['1675252800', '7598778382'], ['1675254528', '7116694268'], ['1675256256', '7626461803'], ['1675257984', '7264879741'], ['1675259712', '7752671679'], ['1675261440', '7515853750'], ['1675263168', '7579932467'], ['1675264896', '7486997643'], ['1675266624', '7051686793'], ['1675268352', '6873607777'], ['1675270080', '7164166983'], ['1675271808', '8195989021'], ['1675273536', '7704140177'], ['1675275264', '6922140060'], ['1675276992', '6681666225'], ['1675278720', '7215000735'], ['1675280448', '7308499670'], ['1675282176', '7296427060'], ['1675283904', '7580297764'], ['1675285632', '6448511494'], ['1675287360', '7480200181'], ['1675289088', '7233539573'], ['1675290816', '7604079203'], ['1675292544', '7347409713'], ['1675294272', '7539122424'], ['1675296000', '8268929988'], ['1675297728', '7904603396'], ['1675299456', '7481158268'], ['1675301184', '7979103862'], ['1675302912', '8030132482'], ['1675304640', '6815551453'], ['1675306368', '6998980883'], ['1675308096', '6637269462'], ['1675309824', '7831818720'], ['1675311552', '6318916982'], ['1675313280', '7442258523'], ['1675315008', '7118095146'], ['1675316736', '7402017517'], ['1675318464', '7493982868'], ['1675320192', '6520083159'], ['1675321920', '7032318182'], ['1675323648', '6905781093'], ['1675325376', '7802918848'], ['1675327104', '7176212380'], ['1675328832', '7211668065'], ['1675330560', '6843290032'], ['1675332288', '7283947628'], ['1675334016', '7177682226'], ['1675335744', '7391199988'], ['1675337472', '6754687853'], ['1675339200', '6993139381'], ['1675340928', '6874136769'], ['1675342656', '6783677168'], ['1675344384', '7349291166'], ['1675346112', '6556961502'], ['1675347840', '7491223967'], ['1675349568', '7842238132'], ['1675351296', '6221073616'], ['1675353024', '7242494202']], analysis: { rate: 3.414793976E7, total: 7.37591229522E11 } }, kuaishou: { values: [['1675180224', '0'], ['1675181952', '1868006861'], ['1675183680', '1732168677'], ['1675185408', '2131898696'], ['1675187136', '2063010277'], ['1675188864', '1937537679'], ['1675190592', '1936788154'], ['1675192320', '2112580028'], ['1675194048', '1507654055'], ['1675195776', '2391037476'], ['1675197504', '2299446264'], ['1675199232', '1735303680'], ['1675200960', '1914095622'], ['1675202688', '1631022968'], ['1675204416', '2460019472'], ['1675206144', '1862981044'], ['1675207872', '1928704280'], ['1675209600', '1908009754'], ['1675211328', '1654220896'], ['1675213056', '2077381841'], ['1675214784', '2446500655'], ['1675216512', '2521067191'], ['1675218240', '1898347189'], ['1675219968', '1773018533'], ['1675221696', '1763549248'], ['1675223424', '1987857147'], ['1675225152', '1923607018'], ['1675226880', '2088989063'], ['1675228608', '2282878819'], ['1675230336', '1984472550'], ['1675232064', '1973641852'], ['1675233792', '2171240776'], ['1675235520', '2398440034'], ['1675237248', '1653378142'], ['1675238976', '1706909466'], ['1675240704', '2129291289'], ['1675242432', '1855368544'], ['1675244160', '1749240925'], ['1675245888', '1989494774'], ['1675247616', '1845322089'], ['1675249344', '2654426983'], ['1675251072', '1727183617'], ['1675252800', '1788630455'], ['1675254528', '1752731900'], ['1675256256', '1792192548'], ['1675257984', '2093031894'], ['1675259712', '1647678097'], ['1675261440', '2330265624'], ['1675263168', '1944482494'], ['1675264896', '1803569696'], ['1675266624', '2439742888'], ['1675268352', '3347846376'], ['1675270080', '1505440347'], ['1675271808', '2190442219'], ['1675273536', '1993445094'], ['1675275264', '1902837201'], ['1675276992', '2996332903'], ['1675278720', '1961133544'], ['1675280448', '1928639573'], ['1675282176', '2156986535'], ['1675283904', '1865411850'], ['1675285632', '1817765812'], ['1675287360', '1864996543'], ['1675289088', '1675537740'], ['1675290816', '1961491179'], ['1675292544', '1872641081'], ['1675294272', '1982193032'], ['1675296000', '2438454944'], ['1675297728', '2174619701'], ['1675299456', '1786626737'], ['1675301184', '1834178614'], ['1675302912', '1910990943'], ['1675304640', '2182469866'], ['1675306368', '1865110834'], ['1675308096', '2078719494'], ['1675309824', '2032641504'], ['1675311552', '1972714687'], ['1675313280', '1768457473'], ['1675315008', '1742922515'], ['1675316736', '2271077831'], ['1675318464', '1859973394'], ['1675320192', '1732928389'], ['1675321920', '1719608554'], ['1675323648', '1822114739'], ['1675325376', '1932173415'], ['1675327104', '2063384929'], ['1675328832', '2090741727'], ['1675330560', '1579268455'], ['1675332288', '2046765417'], ['1675334016', '2331961077'], ['1675335744', '2016304838'], ['1675337472', '1492052833'], ['1675339200', '1897359803'], ['1675340928', '1819642960'], ['1675342656', '1533538421'], ['1675344384', '2190655674'], ['1675346112', '1588408379'], ['1675347840', '1979353840'], ['1675349568', '2107484915'], ['1675351296', '2249064595'], ['1675353024', '1920902044']], analysis: { rate: 9181730.64, total: 1.98324233794E11 } } }, { type: 'packets', qq: { values: [['1675180224', '0'], ['1675181952', '606'], ['1675183680', '214'], ['1675185408', '526'], ['1675187136', '658'], ['1675188864', '962'], ['1675190592', '699'], ['1675192320', '497'], ['1675194048', '4134'], ['1675195776', '430'], ['1675197504', '242'], ['1675199232', '429'], ['1675200960', '346'], ['1675202688', '340'], ['1675204416', '337'], ['1675206144', '546'], ['1675207872', '614'], ['1675209600', '540'], ['1675211328', '463'], ['1675213056', '376'], ['1675214784', '451'], ['1675216512', '682'], ['1675218240', '396'], ['1675219968', '1123'], ['1675221696', '736'], ['1675223424', '771'], ['1675225152', '850'], ['1675226880', '569'], ['1675228608', '280'], ['1675230336', '389'], ['1675232064', '695'], ['1675233792', '457'], ['1675235520', '180'], ['1675237248', '487'], ['1675238976', '388'], ['1675240704', '553'], ['1675242432', '454'], ['1675244160', '514'], ['1675245888', '551'], ['1675247616', '446'], ['1675249344', '523'], ['1675251072', '324'], ['1675252800', '338'], ['1675254528', '473'], ['1675256256', '732'], ['1675257984', '649'], ['1675259712', '689'], ['1675261440', '490'], ['1675263168', '735'], ['1675264896', '339'], ['1675266624', '657'], ['1675268352', '383'], ['1675270080', '1747'], ['1675271808', '263'], ['1675273536', '349'], ['1675275264', '316'], ['1675276992', '520'], ['1675278720', '380'], ['1675280448', '486'], ['1675282176', '550'], ['1675283904', '319'], ['1675285632', '478'], ['1675287360', '604'], ['1675289088', '266'], ['1675290816', '1751'], ['1675292544', '416'], ['1675294272', '1045'], ['1675296000', '273'], ['1675297728', '644'], ['1675299456', '1215'], ['1675301184', '507'], ['1675302912', '436'], ['1675304640', '1353'], ['1675306368', '431'], ['1675308096', '409'], ['1675309824', '384'], ['1675311552', '209'], ['1675313280', '399'], ['1675315008', '435'], ['1675316736', '443'], ['1675318464', '241'], ['1675320192', '368'], ['1675321920', '399'], ['1675323648', '1294'], ['1675325376', '300'], ['1675327104', '384'], ['1675328832', '962'], ['1675330560', '234'], ['1675332288', '6718'], ['1675334016', '254'], ['1675335744', '446'], ['1675337472', '615'], ['1675339200', '877'], ['1675340928', '404'], ['1675342656', '548'], ['1675344384', '458'], ['1675346112', '347'], ['1675347840', '354'], ['1675349568', '417'], ['1675351296', '387'], ['1675353024', '441']], analysis: { rate: 2.96, total: 63339.0 } }, douyin: { values: [['1675180224', '0'], ['1675181952', '6197371'], ['1675183680', '6358852'], ['1675185408', '6715754'], ['1675187136', '7436866'], ['1675188864', '6557821'], ['1675190592', '6355871'], ['1675192320', '6859765'], ['1675194048', '7127026'], ['1675195776', '6381159'], ['1675197504', '7567599'], ['1675199232', '6226694'], ['1675200960', '7369356'], ['1675202688', '7712436'], ['1675204416', '7345952'], ['1675206144', '7218586'], ['1675207872', '6839080'], ['1675209600', '6887533'], ['1675211328', '6935752'], ['1675213056', '7890836'], ['1675214784', '6251184'], ['1675216512', '6845634'], ['1675218240', '6892309'], ['1675219968', '7150591'], ['1675221696', '6823704'], ['1675223424', '7646335'], ['1675225152', '7486344'], ['1675226880', '7040943'], ['1675228608', '6899602'], ['1675230336', '7066419'], ['1675232064', '7012961'], ['1675233792', '6734310'], ['1675235520', '7507330'], ['1675237248', '7328470'], ['1675238976', '7038404'], ['1675240704', '7173446'], ['1675242432', '6993118'], ['1675244160', '6410795'], ['1675245888', '5911194'], ['1675247616', '6277144'], ['1675249344', '6534898'], ['1675251072', '6118595'], ['1675252800', '6991938'], ['1675254528', '6519410'], ['1675256256', '7181072'], ['1675257984', '6615763'], ['1675259712', '7021918'], ['1675261440', '6878676'], ['1675263168', '7164503'], ['1675264896', '6874729'], ['1675266624', '6432753'], ['1675268352', '6307274'], ['1675270080', '6647741'], ['1675271808', '7462350'], ['1675273536', '7142099'], ['1675275264', '6328964'], ['1675276992', '6183940'], ['1675278720', '6791555'], ['1675280448', '6685349'], ['1675282176', '6661602'], ['1675283904', '6946903'], ['1675285632', '5897413'], ['1675287360', '6805796'], ['1675289088', '6568242'], ['1675290816', '7007823'], ['1675292544', '6610019'], ['1675294272', '6858170'], ['1675296000', '7744211'], ['1675297728', '7208221'], ['1675299456', '6815118'], ['1675301184', '7357640'], ['1675302912', '7459213'], ['1675304640', '6214814'], ['1675306368', '6458755'], ['1675308096', '6134159'], ['1675309824', '7139250'], ['1675311552', '5874017'], ['1675313280', '6848695'], ['1675315008', '6519852'], ['1675316736', '6777270'], ['1675318464', '6846661'], ['1675320192', '5884151'], ['1675321920', '6489480'], ['1675323648', '6293153'], ['1675325376', '7195451'], ['1675327104', '6517878'], ['1675328832', '6551928'], ['1675330560', '6274616'], ['1675332288', '6631027'], ['1675334016', '6614058'], ['1675335744', '6771588'], ['1675337472', '6188863'], ['1675339200', '6427004'], ['1675340928', '6343710'], ['1675342656', '6178169'], ['1675344384', '6657322'], ['1675346112', '6091040'], ['1675347840', '6871382'], ['1675349568', '7173669'], ['1675351296', '5823930'], ['1675353024', '6710423']], analysis: { rate: 31333.52, total: 6.76800759E8 } }, kuaishou: { values: [['1675180224', '0'], ['1675181952', '1705580'], ['1675183680', '1593727'], ['1675185408', '1946915'], ['1675187136', '1917429'], ['1675188864', '1795867'], ['1675190592', '1767678'], ['1675192320', '1863517'], ['1675194048', '1378238'], ['1675195776', '2133321'], ['1675197504', '2221475'], ['1675199232', '1603668'], ['1675200960', '1738494'], ['1675202688', '1513171'], ['1675204416', '2255791'], ['1675206144', '1716124'], ['1675207872', '1782197'], ['1675209600', '1744454'], ['1675211328', '1554832'], ['1675213056', '1984725'], ['1675214784', '2233360'], ['1675216512', '2297592'], ['1675218240', '1741490'], ['1675219968', '1624499'], ['1675221696', '1630196'], ['1675223424', '1815006'], ['1675225152', '1756123'], ['1675226880', '1899440'], ['1675228608', '2100577'], ['1675230336', '1831805'], ['1675232064', '1819676'], ['1675233792', '1978645'], ['1675235520', '2167573'], ['1675237248', '1557262'], ['1675238976', '1559497'], ['1675240704', '1944289'], ['1675242432', '1674776'], ['1675244160', '1614920'], ['1675245888', '1791181'], ['1675247616', '1675268'], ['1675249344', '2693715'], ['1675251072', '1642608'], ['1675252800', '1644117'], ['1675254528', '1562746'], ['1675256256', '1641479'], ['1675257984', '1935089'], ['1675259712', '1524063'], ['1675261440', '2144236'], ['1675263168', '1744826'], ['1675264896', '1644469'], ['1675266624', '2158417'], ['1675268352', '3294854'], ['1675270080', '1368127'], ['1675271808', '2014564'], ['1675273536', '1810232'], ['1675275264', '1759498'], ['1675276992', '2605599'], ['1675278720', '1780170'], ['1675280448', '1760412'], ['1675282176', '1996901'], ['1675283904', '1750576'], ['1675285632', '1661220'], ['1675287360', '1712123'], ['1675289088', '1536965'], ['1675290816', '1817954'], ['1675292544', '1733340'], ['1675294272', '1790373'], ['1675296000', '2469841'], ['1675297728', '2010199'], ['1675299456', '1642746'], ['1675301184', '1702235'], ['1675302912', '1732882'], ['1675304640', '2004182'], ['1675306368', '1718766'], ['1675308096', '1878088'], ['1675309824', '1969171'], ['1675311552', '1767540'], ['1675313280', '1637693'], ['1675315008', '1596693'], ['1675316736', '2018056'], ['1675318464', '1771415'], ['1675320192', '1595262'], ['1675321920', '1592882'], ['1675323648', '1902703'], ['1675325376', '1749528'], ['1675327104', '1848181'], ['1675328832', '1939436'], ['1675330560', '1443588'], ['1675332288', '1861515'], ['1675334016', '2110223'], ['1675335744', '1842995'], ['1675337472', '1374125'], ['1675339200', '1718740'], ['1675340928', '1665297'], ['1675342656', '1425021'], ['1675344384', '1991077'], ['1675346112', '1444718'], ['1675347840', '1873466'], ['1675349568', '1936970'], ['1675351296', '2080810'], ['1675353024', '1736479']], analysis: { rate: 8458.88, total: 1.82711574E8 } } }, { type: 'sessions', qq: { values: [['1675180224', '0'], ['1675181952', '31'], ['1675183680', '20'], ['1675185408', '34'], ['1675187136', '74'], ['1675188864', '279'], ['1675190592', '109'], ['1675192320', '29'], ['1675194048', '24'], ['1675195776', '27'], ['1675197504', '17'], ['1675199232', '29'], ['1675200960', '19'], ['1675202688', '22'], ['1675204416', '22'], ['1675206144', '38'], ['1675207872', '36'], ['1675209600', '31'], ['1675211328', '30'], ['1675213056', '24'], ['1675214784', '23'], ['1675216512', '41'], ['1675218240', '24'], ['1675219968', '32'], ['1675221696', '41'], ['1675223424', '51'], ['1675225152', '29'], ['1675226880', '35'], ['1675228608', '24'], ['1675230336', '22'], ['1675232064', '33'], ['1675233792', '31'], ['1675235520', '15'], ['1675237248', '18'], ['1675238976', '24'], ['1675240704', '34'], ['1675242432', '34'], ['1675244160', '30'], ['1675245888', '23'], ['1675247616', '29'], ['1675249344', '27'], ['1675251072', '26'], ['1675252800', '22'], ['1675254528', '27'], ['1675256256', '29'], ['1675257984', '24'], ['1675259712', '34'], ['1675261440', '22'], ['1675263168', '22'], ['1675264896', '22'], ['1675266624', '27'], ['1675268352', '21'], ['1675270080', '30'], ['1675271808', '19'], ['1675273536', '20'], ['1675275264', '20'], ['1675276992', '24'], ['1675278720', '28'], ['1675280448', '31'], ['1675282176', '25'], ['1675283904', '19'], ['1675285632', '31'], ['1675287360', '30'], ['1675289088', '19'], ['1675290816', '32'], ['1675292544', '23'], ['1675294272', '28'], ['1675296000', '29'], ['1675297728', '25'], ['1675299456', '33'], ['1675301184', '26'], ['1675302912', '23'], ['1675304640', '37'], ['1675306368', '24'], ['1675308096', '28'], ['1675309824', '17'], ['1675311552', '15'], ['1675313280', '28'], ['1675315008', '27'], ['1675316736', '29'], ['1675318464', '22'], ['1675320192', '22'], ['1675321920', '25'], ['1675323648', '30'], ['1675325376', '20'], ['1675327104', '28'], ['1675328832', '25'], ['1675330560', '12'], ['1675332288', '34'], ['1675334016', '19'], ['1675335744', '22'], ['1675337472', '31'], ['1675339200', '29'], ['1675340928', '31'], ['1675342656', '23'], ['1675344384', '36'], ['1675346112', '22'], ['1675347840', '25'], ['1675349568', '24'], ['1675351296', '26'], ['1675353024', '16']], analysis: { rate: 0.16, total: 3033.0 } }, douyin: { values: [['1675180224', '0'], ['1675181952', '6307'], ['1675183680', '6702'], ['1675185408', '6756'], ['1675187136', '6828'], ['1675188864', '6497'], ['1675190592', '6185'], ['1675192320', '6583'], ['1675194048', '6532'], ['1675195776', '6740'], ['1675197504', '7292'], ['1675199232', '6741'], ['1675200960', '7047'], ['1675202688', '7131'], ['1675204416', '7279'], ['1675206144', '7196'], ['1675207872', '6783'], ['1675209600', '6854'], ['1675211328', '7270'], ['1675213056', '7356'], ['1675214784', '6577'], ['1675216512', '6797'], ['1675218240', '6803'], ['1675219968', '7000'], ['1675221696', '7003'], ['1675223424', '7239'], ['1675225152', '7020'], ['1675226880', '6913'], ['1675228608', '7101'], ['1675230336', '6999'], ['1675232064', '6962'], ['1675233792', '6751'], ['1675235520', '6536'], ['1675237248', '6941'], ['1675238976', '6415'], ['1675240704', '6791'], ['1675242432', '6908'], ['1675244160', '6860'], ['1675245888', '5950'], ['1675247616', '6232'], ['1675249344', '6511'], ['1675251072', '6425'], ['1675252800', '6286'], ['1675254528', '6372'], ['1675256256', '6196'], ['1675257984', '6540'], ['1675259712', '6727'], ['1675261440', '6848'], ['1675263168', '6384'], ['1675264896', '6558'], ['1675266624', '6920'], ['1675268352', '6138'], ['1675270080', '6483'], ['1675271808', '6787'], ['1675273536', '7100'], ['1675275264', '6471'], ['1675276992', '6572'], ['1675278720', '6853'], ['1675280448', '6651'], ['1675282176', '6495'], ['1675283904', '6561'], ['1675285632', '5679'], ['1675287360', '6804'], ['1675289088', '6701'], ['1675290816', '7207'], ['1675292544', '6823'], ['1675294272', '6503'], ['1675296000', '6936'], ['1675297728', '6897'], ['1675299456', '6850'], ['1675301184', '6706'], ['1675302912', '7029'], ['1675304640', '6323'], ['1675306368', '6737'], ['1675308096', '6051'], ['1675309824', '6497'], ['1675311552', '6195'], ['1675313280', '6366'], ['1675315008', '6814'], ['1675316736', '6815'], ['1675318464', '6703'], ['1675320192', '5984'], ['1675321920', '6553'], ['1675323648', '6695'], ['1675325376', '6797'], ['1675327104', '6273'], ['1675328832', '6351'], ['1675330560', '6805'], ['1675332288', '6460'], ['1675334016', '6957'], ['1675335744', '6849'], ['1675337472', '6486'], ['1675339200', '6635'], ['1675340928', '6558'], ['1675342656', '6865'], ['1675344384', '6716'], ['1675346112', '6258'], ['1675347840', '6677'], ['1675349568', '6991'], ['1675351296', '6307'], ['1675353024', '6618']], analysis: { rate: 30.96, total: 668226.0 } }, kuaishou: { values: [['1675180224', '0'], ['1675181952', '1250'], ['1675183680', '1337'], ['1675185408', '1466'], ['1675187136', '1327'], ['1675188864', '1350'], ['1675190592', '1221'], ['1675192320', '1433'], ['1675194048', '1462'], ['1675195776', '1386'], ['1675197504', '1476'], ['1675199232', '1403'], ['1675200960', '1413'], ['1675202688', '1518'], ['1675204416', '1436'], ['1675206144', '1578'], ['1675207872', '1496'], ['1675209600', '1490'], ['1675211328', '1479'], ['1675213056', '1541'], ['1675214784', '1394'], ['1675216512', '1371'], ['1675218240', '1345'], ['1675219968', '1397'], ['1675221696', '1368'], ['1675223424', '1425'], ['1675225152', '1284'], ['1675226880', '1380'], ['1675228608', '1426'], ['1675230336', '1419'], ['1675232064', '1382'], ['1675233792', '1303'], ['1675235520', '1312'], ['1675237248', '1364'], ['1675238976', '1253'], ['1675240704', '1373'], ['1675242432', '1353'], ['1675244160', '1371'], ['1675245888', '1189'], ['1675247616', '1287'], ['1675249344', '1319'], ['1675251072', '1232'], ['1675252800', '1223'], ['1675254528', '1254'], ['1675256256', '1250'], ['1675257984', '1289'], ['1675259712', '1271'], ['1675261440', '1315'], ['1675263168', '1216'], ['1675264896', '1283'], ['1675266624', '1368'], ['1675268352', '1204'], ['1675270080', '1269'], ['1675271808', '1338'], ['1675273536', '1431'], ['1675275264', '1407'], ['1675276992', '1283'], ['1675278720', '1285'], ['1675280448', '1306'], ['1675282176', '1387'], ['1675283904', '1393'], ['1675285632', '1246'], ['1675287360', '1392'], ['1675289088', '1312'], ['1675290816', '1456'], ['1675292544', '1364'], ['1675294272', '1321'], ['1675296000', '1454'], ['1675297728', '1442'], ['1675299456', '1356'], ['1675301184', '1440'], ['1675302912', '1397'], ['1675304640', '1261'], ['1675306368', '1377'], ['1675308096', '1289'], ['1675309824', '1347'], ['1675311552', '1227'], ['1675313280', '1242'], ['1675315008', '1346'], ['1675316736', '1281'], ['1675318464', '1319'], ['1675320192', '1151'], ['1675321920', '1316'], ['1675323648', '1276'], ['1675325376', '1371'], ['1675327104', '1322'], ['1675328832', '1292'], ['1675330560', '1369'], ['1675332288', '1250'], ['1675334016', '1373'], ['1675335744', '1264'], ['1675337472', '1306'], ['1675339200', '1311'], ['1675340928', '1396'], ['1675342656', '1306'], ['1675344384', '1314'], ['1675346112', '1252'], ['1675347840', '1381'], ['1675349568', '1346'], ['1675351296', '1264'], ['1675353024', '1354']], analysis: { rate: 6.24, total: 134464.0 } }, wechat: { values: [['1675180224', '0'], ['1675181952', '2364'], ['1675183680', '2379'], ['1675185408', '2393'], ['1675187136', '2569'], ['1675188864', '2380'], ['1675190592', '2014'], ['1675192320', '2262'], ['1675194048', '2348'], ['1675195776', '2290'], ['1675197504', '2716'], ['1675199232', '2370'], ['1675200960', '2274'], ['1675202688', '2546'], ['1675204416', '2514'], ['1675206144', '2693'], ['1675207872', '2274'], ['1675209600', '2385'], ['1675211328', '2557'], ['1675213056', '2383'], ['1675214784', '2379'], ['1675216512', '2465'], ['1675218240', '2421'], ['1675219968', '2658'], ['1675221696', '2141'], ['1675223424', '2746'], ['1675225152', '2308'], ['1675226880', '2493'], ['1675228608', '2572'], ['1675230336', '2532'], ['1675232064', '2581'], ['1675233792', '2265'], ['1675235520', '2261'], ['1675237248', '2461'], ['1675238976', '2277'], ['1675240704', '2576'], ['1675242432', '2513'], ['1675244160', '2396'], ['1675245888', '2032'], ['1675247616', '2353'], ['1675249344', '2427'], ['1675251072', '2281'], ['1675252800', '2171'], ['1675254528', '2425'], ['1675256256', '2159'], ['1675257984', '2193'], ['1675259712', '2377'], ['1675261440', '2438'], ['1675263168', '2205'], ['1675264896', '2197'], ['1675266624', '2422'], ['1675268352', '2396'], ['1675270080', '2266'], ['1675271808', '2580'], ['1675273536', '2472'], ['1675275264', '2519'], ['1675276992', '2299'], ['1675278720', '2321'], ['1675280448', '2203'], ['1675282176', '2255'], ['1675283904', '2262'], ['1675285632', '1913'], ['1675287360', '2283'], ['1675289088', '2423'], ['1675290816', '2308'], ['1675292544', '2363'], ['1675294272', '2182'], ['1675296000', '2522'], ['1675297728', '2432'], ['1675299456', '2284'], ['1675301184', '2380'], ['1675302912', '2392'], ['1675304640', '2300'], ['1675306368', '2200'], ['1675308096', '2063'], ['1675309824', '2436'], ['1675311552', '1986'], ['1675313280', '2189'], ['1675315008', '2430'], ['1675316736', '2315'], ['1675318464', '2360'], ['1675320192', '2156'], ['1675321920', '2346'], ['1675323648', '2188'], ['1675325376', '2513'], ['1675327104', '2040'], ['1675328832', '2402'], ['1675330560', '2576'], ['1675332288', '2354'], ['1675334016', '2476'], ['1675335744', '2149'], ['1675337472', '2197'], ['1675339200', '2602'], ['1675340928', '2138'], ['1675342656', '2435'], ['1675344384', '2385'], ['1675346112', '2262'], ['1675347840', '2497'], ['1675349568', '2322'], ['1675351296', '2075'], ['1675353024', '2423']], analysis: { rate: 10.88, total: 235306.0 } } }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20TIME_FLOOR_WITH_FILL%28stat_time%2C%27PT1728S%27%2C%27zero%27%29%20AS%20stat_time%2C%20common_app_label%20AS%20app_label%2C%20SUM%28common_c2s_byte_num%20%2B%20common_s2c_byte_num%29%20AS%20bytes_total%2C%20SUM%28common_c2s_pkt_num%20%2B%20common_s2c_pkt_num%29%20AS%20packets_total%2C%20SUM%28common_sessions%29%20AS%20sessions_total%20FROM%20metric_application%20WHERE%20stat_time%20%3E%3D%20toDateTime%281675180800%29%20AND%20stat_time%20%3C%20toDateTime%281675353599%29%20AND%20common_app_label%20IN%20%28%20%27douyin%27%2C%27kuaishou%27%2C%27qq%27%2C%27wechat%27%20%29%20GROUP%20BY%20stat_time%2Capp_label%20ORDER%20BY%20stat_time%20ASC&format=json&option=real-time', msg: 'OK' } }, + { status: 200, data: { status: 200, code: 200, queryKey: '11e7e2634661a4ac63f45a90a4fbc366', success: true, message: null, statistics: { elapsed: 10, rows_read: 151581, bytes_read: 9629321, result_size: 384, result_rows: 4 }, job: null, formatType: 'json', meta: [{ name: 'app_company', type: 'string', category: 'Dimension' }, { name: 'bytes_total', type: 'long', category: 'Metric' }, { name: 'packets_total', type: 'long', category: 'Metric' }, { name: 'sessions_total', type: 'long', category: 'Metric' }], data: { resultType: 'object', result: [{ type: 'bytes', Baidu: { rate: 1088125.12, total: 23503366121 }, Tencent: { rate: 13817425.76, total: 298454669638 }, Bytedance: { rate: 29791297.68, total: 643488305661 }, Alibaba: { rate: 3822845.52, total: 82572985509 } }, { type: 'packets', Baidu: { rate: 1132.24, total: 24456798 }, Tencent: { rate: 15815.6, total: 341615256 }, Bytedance: { rate: 27681.68, total: 597920164 }, Alibaba: { rate: 4051.04, total: 87502224 } }, { type: 'sessions', Baidu: { rate: 7.36, total: 158507 }, Tencent: { rate: 16.4, total: 355022 }, Bytedance: { rate: 38.56, total: 833195 }, Alibaba: { rate: 24, total: 519104 } }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20app_company%20AS%20app_company%2C%20SUM%28common_c2s_byte_num%20%2B%20common_s2c_byte_num%29%20AS%20bytes_total%2C%20SUM%28common_c2s_pkt_num%20%2B%20common_s2c_pkt_num%29%20AS%20packets_total%2C%20SUM%28common_sessions%29%20AS%20sessions_total%20FROM%20metric_application%20WHERE%20stat_time%20%3E%3D%20toDateTime%281675180800%29-172799%20AND%20stat_time%20%3C%20toDateTime%281675353599%29-172799%20AND%20app_company%20IN%20%28%20%27Bytedance%27%2C%27Tencent%27%2C%27Alibaba%27%2C%27Baidu%27%20%29%20GROUP%20BY%20app_company&format=json&option=real-time', msg: 'OK' } }, + { status: 200, data: { status: 200, code: 200, queryKey: '54f7d44a87abfa2643033b45fb9ac1af', success: true, message: null, statistics: { elapsed: 14, rows_read: 633867, bytes_read: 22394902, result_size: 45357, result_rows: 404 }, job: null, formatType: 'json', meta: [{ name: 'stat_time', type: 'long', category: 'Dimension' }, { name: 'app_company', type: 'string', category: 'Dimension' }, { name: 'bytes_total', type: 'long', category: 'Metric' }, { name: 'packets_total', type: 'long', category: 'Metric' }, { name: 'sessions_total', type: 'long', category: 'Metric' }], data: { resultType: 'object', result: [{ type: 'bytes', Baidu: { values: [['1675180224', '0'], ['1675181952', '186922462'], ['1675183680', '246368399'], ['1675185408', '319109553'], ['1675187136', '304441401'], ['1675188864', '535693636'], ['1675190592', '306487561'], ['1675192320', '179845873'], ['1675194048', '240757575'], ['1675195776', '242490898'], ['1675197504', '266812080'], ['1675199232', '285633401'], ['1675200960', '250783731'], ['1675202688', '202741925'], ['1675204416', '288905564'], ['1675206144', '264733418'], ['1675207872', '170662251'], ['1675209600', '188119952'], ['1675211328', '258930258'], ['1675213056', '211813880'], ['1675214784', '311067410'], ['1675216512', '228958245'], ['1675218240', '203782626'], ['1675219968', '258819386'], ['1675221696', '922311133'], ['1675223424', '274140838'], ['1675225152', '214457186'], ['1675226880', '320938298'], ['1675228608', '223494342'], ['1675230336', '263221725'], ['1675232064', '392156448'], ['1675233792', '209510347'], ['1675235520', '233293822'], ['1675237248', '420123341'], ['1675238976', '500120418'], ['1675240704', '306320387'], ['1675242432', '276800750'], ['1675244160', '246412014'], ['1675245888', '213229410'], ['1675247616', '174621303'], ['1675249344', '167818258'], ['1675251072', '311630640'], ['1675252800', '204026984'], ['1675254528', '248019634'], ['1675256256', '225920989'], ['1675257984', '289571558'], ['1675259712', '260433584'], ['1675261440', '267076409'], ['1675263168', '172960469'], ['1675264896', '187771584'], ['1675266624', '241454724'], ['1675268352', '329752706'], ['1675270080', '288552844'], ['1675271808', '248913131'], ['1675273536', '343099199'], ['1675275264', '279732573'], ['1675276992', '199138635'], ['1675278720', '253584024'], ['1675280448', '186462990'], ['1675282176', '241297490'], ['1675283904', '676915126'], ['1675285632', '238702155'], ['1675287360', '349619952'], ['1675289088', '236809805'], ['1675290816', '236038733'], ['1675292544', '276030570'], ['1675294272', '277516641'], ['1675296000', '211822464'], ['1675297728', '272051733'], ['1675299456', '235388507'], ['1675301184', '319171935'], ['1675302912', '192217920'], ['1675304640', '345455785'], ['1675306368', '319848769'], ['1675308096', '303561695'], ['1675309824', '208942533'], ['1675311552', '272791726'], ['1675313280', '204352308'], ['1675315008', '388846886'], ['1675316736', '339402557'], ['1675318464', '260030322'], ['1675320192', '264913750'], ['1675321920', '268731960'], ['1675323648', '245927219'], ['1675325376', '279881933'], ['1675327104', '311843005'], ['1675328832', '282638902'], ['1675330560', '185391416'], ['1675332288', '251799584'], ['1675334016', '206192986'], ['1675335744', '254411430'], ['1675337472', '599077930'], ['1675339200', '257549224'], ['1675340928', '225861527'], ['1675342656', '198703921'], ['1675344384', '209918478'], ['1675346112', '190463924'], ['1675347840', '254093605'], ['1675349568', '229914017'], ['1675351296', '261381749'], ['1675353024', '174475031']], analysis: { rate: 1269032.4, total: 2.7410941385E10 } }, Tencent: { values: [['1675180224', '0'], ['1675181952', '3364312107'], ['1675183680', '4079983457'], ['1675185408', '3664816581'], ['1675187136', '3901897437'], ['1675188864', '3105742432'], ['1675190592', '3109079773'], ['1675192320', '3634085043'], ['1675194048', '3304598207'], ['1675195776', '3364370975'], ['1675197504', '3679341083'], ['1675199232', '4004654138'], ['1675200960', '5075731596'], ['1675202688', '3350826774'], ['1675204416', '3965120815'], ['1675206144', '3258127210'], ['1675207872', '3579118980'], ['1675209600', '3436901533'], ['1675211328', '3963971268'], ['1675213056', '3524855019'], ['1675214784', '4125745109'], ['1675216512', '4280315838'], ['1675218240', '3329633122'], ['1675219968', '4412688081'], ['1675221696', '3283482365'], ['1675223424', '4468620552'], ['1675225152', '3557179411'], ['1675226880', '3579870652'], ['1675228608', '3670862787'], ['1675230336', '4625969288'], ['1675232064', '3708010075'], ['1675233792', '3244513018'], ['1675235520', '3878415405'], ['1675237248', '4052973978'], ['1675238976', '3691082916'], ['1675240704', '5372688259'], ['1675242432', '3702382171'], ['1675244160', '4219862737'], ['1675245888', '2787825671'], ['1675247616', '4763031990'], ['1675249344', '3516330763'], ['1675251072', '3113829408'], ['1675252800', '3218983906'], ['1675254528', '4173806034'], ['1675256256', '3123724450'], ['1675257984', '3244222065'], ['1675259712', '3707679969'], ['1675261440', '4554164279'], ['1675263168', '3597868330'], ['1675264896', '3677154027'], ['1675266624', '3196518119'], ['1675268352', '4017034040'], ['1675270080', '2951739722'], ['1675271808', '4169564577'], ['1675273536', '3285519344'], ['1675275264', '4539611918'], ['1675276992', '3367141015'], ['1675278720', '4219586671'], ['1675280448', '3643011153'], ['1675282176', '3525034696'], ['1675283904', '3250835967'], ['1675285632', '3734756859'], ['1675287360', '3458799171'], ['1675289088', '3561847920'], ['1675290816', '3832087457'], ['1675292544', '3720294758'], ['1675294272', '3095277835'], ['1675296000', '4171337383'], ['1675297728', '4078122772'], ['1675299456', '3741403940'], ['1675301184', '3894701201'], ['1675302912', '3674186510'], ['1675304640', '3516696930'], ['1675306368', '3943407043'], ['1675308096', '3496006622'], ['1675309824', '4132870839'], ['1675311552', '2927013222'], ['1675313280', '3183796841'], ['1675315008', '3711742824'], ['1675316736', '3747908497'], ['1675318464', '3526464555'], ['1675320192', '3785846721'], ['1675321920', '3796697606'], ['1675323648', '3594162696'], ['1675325376', '4271082440'], ['1675327104', '3308973077'], ['1675328832', '3754503133'], ['1675330560', '4138496845'], ['1675332288', '3412677975'], ['1675334016', '3702495983'], ['1675335744', '3023519646'], ['1675337472', '3131554386'], ['1675339200', '4523013005'], ['1675340928', '3188123380'], ['1675342656', '3753413721'], ['1675344384', '3645320211'], ['1675346112', '3399819129'], ['1675347840', '4205903262'], ['1675349568', '3392709766'], ['1675351296', '3433064810'], ['1675353024', '3759978873']], analysis: { rate: 1.715686448E7, total: 3.7058612815E11 } }, Bytedance: { values: [['1675180224', '0'], ['1675181952', '7369561391'], ['1675183680', '7581865508'], ['1675185408', '7912824524'], ['1675187136', '9032300363'], ['1675188864', '7917531147'], ['1675190592', '7631183906'], ['1675192320', '8246679988'], ['1675194048', '8554299101'], ['1675195776', '7883903079'], ['1675197504', '9031857361'], ['1675199232', '7661890423'], ['1675200960', '8886566417'], ['1675202688', '9019250065'], ['1675204416', '8916375747'], ['1675206144', '8479488817'], ['1675207872', '8219763606'], ['1675209600', '8217171805'], ['1675211328', '8336759307'], ['1675213056', '9353465505'], ['1675214784', '7682132545'], ['1675216512', '8100245348'], ['1675218240', '8100168625'], ['1675219968', '8614738437'], ['1675221696', '8355313295'], ['1675223424', '8951119363'], ['1675225152', '8882541689'], ['1675226880', '8228284971'], ['1675228608', '8291470893'], ['1675230336', '8283731813'], ['1675232064', '8398043347'], ['1675233792', '7973853220'], ['1675235520', '13703005209'], ['1675237248', '8489774773'], ['1675238976', '8259222020'], ['1675240704', '8463042283'], ['1675242432', '8273284467'], ['1675244160', '7625472061'], ['1675245888', '6913302871'], ['1675247616', '7410940675'], ['1675249344', '7824045049'], ['1675251072', '7402226771'], ['1675252800', '8316031061'], ['1675254528', '7813282137'], ['1675256256', '8240617903'], ['1675257984', '7983563297'], ['1675259712', '8494801456'], ['1675261440', '8146768399'], ['1675263168', '8273092765'], ['1675264896', '8029603477'], ['1675266624', '7811366743'], ['1675268352', '7599047914'], ['1675270080', '7739846662'], ['1675271808', '8996551338'], ['1675273536', '8445844664'], ['1675275264', '7643411716'], ['1675276992', '7297063335'], ['1675278720', '7840484023'], ['1675280448', '7895092312'], ['1675282176', '7781709149'], ['1675283904', '8213174770'], ['1675285632', '6948686720'], ['1675287360', '8058979941'], ['1675289088', '7959295076'], ['1675290816', '8342931562'], ['1675292544', '7890729747'], ['1675294272', '8124775981'], ['1675296000', '9073797921'], ['1675297728', '8458548545'], ['1675299456', '8191538286'], ['1675301184', '9051440584'], ['1675302912', '8617530633'], ['1675304640', '7459882915'], ['1675306368', '7712272840'], ['1675308096', '7131792015'], ['1675309824', '8534686770'], ['1675311552', '7032452112'], ['1675313280', '8126943638'], ['1675315008', '7628525105'], ['1675316736', '8179538543'], ['1675318464', '8045196777'], ['1675320192', '6970699521'], ['1675321920', '7634588789'], ['1675323648', '7461903527'], ['1675325376', '8334614663'], ['1675327104', '7947481785'], ['1675328832', '7767817477'], ['1675330560', '7451706424'], ['1675332288', '7851774523'], ['1675334016', '7805064464'], ['1675335744', '8152740246'], ['1675337472', '7345349762'], ['1675339200', '7620051268'], ['1675340928', '7578625871'], ['1675342656', '7432575512'], ['1675344384', '8101138008'], ['1675346112', '6979913422'], ['1675347840', '8055117174'], ['1675349568', '8425690572'], ['1675351296', '7175858020'], ['1675353024', '8582510465']], analysis: { rate: 3.751340312E7, total: 8.1028481811E11 } }, Alibaba: { values: [['1675180224', '0'], ['1675181952', '1152063372'], ['1675183680', '816089654'], ['1675185408', '889381524'], ['1675187136', '1518914261'], ['1675188864', '936045239'], ['1675190592', '890527360'], ['1675192320', '1062813475'], ['1675194048', '893057420'], ['1675195776', '805316139'], ['1675197504', '865817855'], ['1675199232', '1337051022'], ['1675200960', '1323094820'], ['1675202688', '918093022'], ['1675204416', '974409292'], ['1675206144', '1221499013'], ['1675207872', '852239484'], ['1675209600', '1028295137'], ['1675211328', '905035471'], ['1675213056', '1160686881'], ['1675214784', '1066457258'], ['1675216512', '782964312'], ['1675218240', '882604945'], ['1675219968', '861896720'], ['1675221696', '1650609412'], ['1675223424', '1195310046'], ['1675225152', '870859428'], ['1675226880', '971786415'], ['1675228608', '864172496'], ['1675230336', '840337374'], ['1675232064', '1010973454'], ['1675233792', '928181215'], ['1675235520', '1001513720'], ['1675237248', '960498648'], ['1675238976', '1067893630'], ['1675240704', '1438810910'], ['1675242432', '1083718561'], ['1675244160', '920906302'], ['1675245888', '890363120'], ['1675247616', '1118329884'], ['1675249344', '653422905'], ['1675251072', '927813538'], ['1675252800', '937941271'], ['1675254528', '1255903102'], ['1675256256', '883473793'], ['1675257984', '1536384871'], ['1675259712', '869667589'], ['1675261440', '1020451266'], ['1675263168', '861917611'], ['1675264896', '930498335'], ['1675266624', '967959768'], ['1675268352', '823527431'], ['1675270080', '847364141'], ['1675271808', '972941204'], ['1675273536', '986524138'], ['1675275264', '758295795'], ['1675276992', '799931952'], ['1675278720', '928900364'], ['1675280448', '860706729'], ['1675282176', '1331438313'], ['1675283904', '1194277664'], ['1675285632', '971877294'], ['1675287360', '873458218'], ['1675289088', '772449542'], ['1675290816', '1137891669'], ['1675292544', '774151500'], ['1675294272', '1229495516'], ['1675296000', '973689434'], ['1675297728', '1074303268'], ['1675299456', '1107023021'], ['1675301184', '1101332250'], ['1675302912', '1135839078'], ['1675304640', '1399158961'], ['1675306368', '919405551'], ['1675308096', '991916341'], ['1675309824', '918910409'], ['1675311552', '835529341'], ['1675313280', '845288353'], ['1675315008', '889173989'], ['1675316736', '777774217'], ['1675318464', '1000168195'], ['1675320192', '1161465589'], ['1675321920', '1076421226'], ['1675323648', '981676104'], ['1675325376', '1325555966'], ['1675327104', '1696768745'], ['1675328832', '1115038006'], ['1675330560', '958436259'], ['1675332288', '923745960'], ['1675334016', '702238686'], ['1675335744', '923585295'], ['1675337472', '1180442037'], ['1675339200', '1372251737'], ['1675340928', '1230751841'], ['1675342656', '1351630983'], ['1675344384', '1222543360'], ['1675346112', '1049059896'], ['1675347840', '1011820794'], ['1675349568', '833134386'], ['1675351296', '1077473674'], ['1675353024', '1048911408']], analysis: { rate: 4735200.96, total: 1.0227974817E11 } } }, { type: 'packets', Baidu: { values: [['1675180224', '0'], ['1675181952', '223000'], ['1675183680', '265508'], ['1675185408', '350366'], ['1675187136', '310999'], ['1675188864', '510694'], ['1675190592', '308396'], ['1675192320', '203767'], ['1675194048', '255023'], ['1675195776', '255845'], ['1675197504', '287227'], ['1675199232', '292255'], ['1675200960', '270281'], ['1675202688', '241808'], ['1675204416', '294475'], ['1675206144', '279966'], ['1675207872', '200530'], ['1675209600', '231734'], ['1675211328', '287475'], ['1675213056', '235889'], ['1675214784', '333597'], ['1675216512', '239230'], ['1675218240', '226415'], ['1675219968', '275448'], ['1675221696', '831021'], ['1675223424', '286996'], ['1675225152', '236941'], ['1675226880', '345722'], ['1675228608', '251852'], ['1675230336', '281771'], ['1675232064', '406684'], ['1675233792', '226724'], ['1675235520', '247147'], ['1675237248', '407263'], ['1675238976', '475638'], ['1675240704', '314283'], ['1675242432', '283487'], ['1675244160', '272287'], ['1675245888', '227637'], ['1675247616', '209270'], ['1675249344', '194027'], ['1675251072', '309921'], ['1675252800', '227283'], ['1675254528', '269168'], ['1675256256', '257953'], ['1675257984', '289215'], ['1675259712', '276239'], ['1675261440', '269606'], ['1675263168', '194894'], ['1675264896', '212679'], ['1675266624', '251133'], ['1675268352', '327280'], ['1675270080', '304735'], ['1675271808', '249876'], ['1675273536', '338018'], ['1675275264', '293189'], ['1675276992', '216697'], ['1675278720', '255466'], ['1675280448', '214979'], ['1675282176', '246673'], ['1675283904', '576987'], ['1675285632', '247766'], ['1675287360', '395316'], ['1675289088', '256700'], ['1675290816', '261973'], ['1675292544', '285871'], ['1675294272', '295870'], ['1675296000', '244208'], ['1675297728', '292936'], ['1675299456', '268863'], ['1675301184', '324627'], ['1675302912', '215455'], ['1675304640', '346224'], ['1675306368', '336487'], ['1675308096', '307464'], ['1675309824', '233401'], ['1675311552', '272466'], ['1675313280', '222933'], ['1675315008', '403553'], ['1675316736', '328135'], ['1675318464', '277378'], ['1675320192', '275123'], ['1675321920', '294213'], ['1675323648', '282124'], ['1675325376', '316009'], ['1675327104', '319574'], ['1675328832', '284039'], ['1675330560', '215777'], ['1675332288', '260041'], ['1675334016', '232958'], ['1675335744', '270457'], ['1675337472', '589546'], ['1675339200', '293118'], ['1675340928', '252330'], ['1675342656', '226237'], ['1675344384', '232968'], ['1675346112', '205055'], ['1675347840', '267297'], ['1675349568', '243364'], ['1675351296', '298675'], ['1675353024', '196343']], analysis: { rate: 1334.88, total: 2.8833543E7 } }, Tencent: { values: [['1675180224', '0'], ['1675181952', '3818134'], ['1675183680', '4563920'], ['1675185408', '4132640'], ['1675187136', '4385814'], ['1675188864', '3586636'], ['1675190592', '3504492'], ['1675192320', '4134802'], ['1675194048', '3832888'], ['1675195776', '3864609'], ['1675197504', '4208527'], ['1675199232', '4652086'], ['1675200960', '5709498'], ['1675202688', '3839139'], ['1675204416', '4523660'], ['1675206144', '3659488'], ['1675207872', '4152250'], ['1675209600', '4102703'], ['1675211328', '4533740'], ['1675213056', '4012813'], ['1675214784', '4690927'], ['1675216512', '4919255'], ['1675218240', '3820763'], ['1675219968', '5040527'], ['1675221696', '3675884'], ['1675223424', '5402526'], ['1675225152', '4052783'], ['1675226880', '4058055'], ['1675228608', '4154259'], ['1675230336', '5551875'], ['1675232064', '4246082'], ['1675233792', '3691700'], ['1675235520', '4407249'], ['1675237248', '4579687'], ['1675238976', '4308236'], ['1675240704', '6146600'], ['1675242432', '4267726'], ['1675244160', '4895859'], ['1675245888', '3121889'], ['1675247616', '5703047'], ['1675249344', '4050565'], ['1675251072', '3601406'], ['1675252800', '3689234'], ['1675254528', '4842280'], ['1675256256', '3576063'], ['1675257984', '3717912'], ['1675259712', '4272289'], ['1675261440', '5157266'], ['1675263168', '4171065'], ['1675264896', '4436045'], ['1675266624', '3701600'], ['1675268352', '4597804'], ['1675270080', '3414228'], ['1675271808', '4755984'], ['1675273536', '3751048'], ['1675275264', '5055637'], ['1675276992', '3827549'], ['1675278720', '4837360'], ['1675280448', '4162862'], ['1675282176', '4010427'], ['1675283904', '3688127'], ['1675285632', '4134073'], ['1675287360', '3969197'], ['1675289088', '4069713'], ['1675290816', '4329068'], ['1675292544', '4312185'], ['1675294272', '3469766'], ['1675296000', '4865903'], ['1675297728', '4726677'], ['1675299456', '4227722'], ['1675301184', '4814378'], ['1675302912', '4146704'], ['1675304640', '4013049'], ['1675306368', '5079648'], ['1675308096', '4017690'], ['1675309824', '4692524'], ['1675311552', '3282170'], ['1675313280', '3615970'], ['1675315008', '4284415'], ['1675316736', '4251382'], ['1675318464', '4079501'], ['1675320192', '4306283'], ['1675321920', '4295930'], ['1675323648', '4135408'], ['1675325376', '4797047'], ['1675327104', '3959597'], ['1675328832', '4317743'], ['1675330560', '4789363'], ['1675332288', '3847900'], ['1675334016', '4184459'], ['1675335744', '3418078'], ['1675337472', '3588527'], ['1675339200', '5216648'], ['1675340928', '3616641'], ['1675342656', '4200530'], ['1675344384', '4299724'], ['1675346112', '3842595'], ['1675347840', '4933832'], ['1675349568', '3889067'], ['1675351296', '3877365'], ['1675353024', '4329364']], analysis: { rate: 19699.04, total: 4.25497355E8 } }, Bytedance: { values: [['1675180224', '0'], ['1675181952', '6799533'], ['1675183680', '7060925'], ['1675185408', '7379460'], ['1675187136', '8301829'], ['1675188864', '7273730'], ['1675190592', '7100779'], ['1675192320', '7752192'], ['1675194048', '7750030'], ['1675195776', '7319904'], ['1675197504', '8290190'], ['1675199232', '7095216'], ['1675200960', '8243937'], ['1675202688', '8306100'], ['1675204416', '8254111'], ['1675206144', '7985829'], ['1675207872', '7638631'], ['1675209600', '7572888'], ['1675211328', '7706519'], ['1675213056', '8679582'], ['1675214784', '7153544'], ['1675216512', '7412147'], ['1675218240', '7590032'], ['1675219968', '7938389'], ['1675221696', '7810497'], ['1675223424', '8432330'], ['1675225152', '8161332'], ['1675226880', '7694075'], ['1675228608', '7682116'], ['1675230336', '7748001'], ['1675232064', '7821867'], ['1675233792', '7729207'], ['1675235520', '11947627'], ['1675237248', '8074533'], ['1675238976', '7806795'], ['1675240704', '7879088'], ['1675242432', '7676938'], ['1675244160', '7130214'], ['1675245888', '6488665'], ['1675247616', '6914394'], ['1675249344', '7332892'], ['1675251072', '6905190'], ['1675252800', '7738099'], ['1675254528', '7244679'], ['1675256256', '7835482'], ['1675257984', '7368797'], ['1675259712', '7812392'], ['1675261440', '7547373'], ['1675263168', '7915780'], ['1675264896', '7490826'], ['1675266624', '7258320'], ['1675268352', '7071557'], ['1675270080', '7269268'], ['1675271808', '8294078'], ['1675273536', '7911350'], ['1675275264', '7071895'], ['1675276992', '6851499'], ['1675278720', '7463798'], ['1675280448', '7319364'], ['1675282176', '7200166'], ['1675283904', '7624110'], ['1675285632', '6484110'], ['1675287360', '7453461'], ['1675289088', '7316779'], ['1675290816', '7768863'], ['1675292544', '7200389'], ['1675294272', '7481637'], ['1675296000', '8573284'], ['1675297728', '7820538'], ['1675299456', '7584761'], ['1675301184', '8417599'], ['1675302912', '8099749'], ['1675304640', '6898692'], ['1675306368', '7197094'], ['1675308096', '6690452'], ['1675309824', '7875615'], ['1675311552', '6586706'], ['1675313280', '7562808'], ['1675315008', '7089669'], ['1675316736', '7616459'], ['1675318464', '7440240'], ['1675320192', '6393045'], ['1675321920', '7136052'], ['1675323648', '6910672'], ['1675325376', '7761117'], ['1675327104', '7337632'], ['1675328832', '7169969'], ['1675330560', '6931424'], ['1675332288', '7250827'], ['1675334016', '7287014'], ['1675335744', '7587844'], ['1675337472', '6816941'], ['1675339200', '7072447'], ['1675340928', '7084394'], ['1675342656', '6866922'], ['1675344384', '7453057'], ['1675346112', '6575739'], ['1675347840', '7473871'], ['1675349568', '7823227'], ['1675351296', '6794326'], ['1675353024', '8025933']], analysis: { rate: 34863.2, total: 7.53041449E8 } }, Alibaba: { values: [['1675180224', '0'], ['1675181952', '1194824'], ['1675183680', '874520'], ['1675185408', '978698'], ['1675187136', '1545349'], ['1675188864', '995660'], ['1675190592', '964558'], ['1675192320', '1132357'], ['1675194048', '933975'], ['1675195776', '872689'], ['1675197504', '954165'], ['1675199232', '1330184'], ['1675200960', '1383990'], ['1675202688', '979732'], ['1675204416', '1120652'], ['1675206144', '1293611'], ['1675207872', '895376'], ['1675209600', '1058540'], ['1675211328', '996617'], ['1675213056', '1285398'], ['1675214784', '1184048'], ['1675216512', '828141'], ['1675218240', '956425'], ['1675219968', '927401'], ['1675221696', '1732940'], ['1675223424', '1255392'], ['1675225152', '942600'], ['1675226880', '1047615'], ['1675228608', '934109'], ['1675230336', '882083'], ['1675232064', '1102657'], ['1675233792', '989123'], ['1675235520', '1078210'], ['1675237248', '1004089'], ['1675238976', '1112246'], ['1675240704', '1357828'], ['1675242432', '1139375'], ['1675244160', '1006102'], ['1675245888', '906401'], ['1675247616', '1160626'], ['1675249344', '717427'], ['1675251072', '979588'], ['1675252800', '984928'], ['1675254528', '1261482'], ['1675256256', '940721'], ['1675257984', '1687111'], ['1675259712', '914218'], ['1675261440', '1050511'], ['1675263168', '950266'], ['1675264896', '997716'], ['1675266624', '1003139'], ['1675268352', '881504'], ['1675270080', '884410'], ['1675271808', '1000046'], ['1675273536', '1058272'], ['1675275264', '830253'], ['1675276992', '869953'], ['1675278720', '1007729'], ['1675280448', '947868'], ['1675282176', '1228764'], ['1675283904', '1206030'], ['1675285632', '1050310'], ['1675287360', '922042'], ['1675289088', '827866'], ['1675290816', '1219546'], ['1675292544', '889108'], ['1675294272', '1221466'], ['1675296000', '1024271'], ['1675297728', '1158810'], ['1675299456', '1158765'], ['1675301184', '1152618'], ['1675302912', '1202723'], ['1675304640', '1451502'], ['1675306368', '957862'], ['1675308096', '1056933'], ['1675309824', '989023'], ['1675311552', '905790'], ['1675313280', '911109'], ['1675315008', '934888'], ['1675316736', '870895'], ['1675318464', '1054094'], ['1675320192', '1181781'], ['1675321920', '1145989'], ['1675323648', '1045330'], ['1675325376', '1403359'], ['1675327104', '1835335'], ['1675328832', '1178441'], ['1675330560', '1039693'], ['1675332288', '981454'], ['1675334016', '769723'], ['1675335744', '987426'], ['1675337472', '1217419'], ['1675339200', '1416718'], ['1675340928', '1317407'], ['1675342656', '1367354'], ['1675344384', '1294205'], ['1675346112', '1051390'], ['1675347840', '1116220'], ['1675349568', '879904'], ['1675351296', '1102655'], ['1675353024', '1129891']], analysis: { rate: 5007.52, total: 1.08161557E8 } } }, { type: 'sessions', Baidu: { values: [['1675180224', '0'], ['1675181952', '2045'], ['1675183680', '1954'], ['1675185408', '2133'], ['1675187136', '2110'], ['1675188864', '2060'], ['1675190592', '1923'], ['1675192320', '2101'], ['1675194048', '2039'], ['1675195776', '2082'], ['1675197504', '2080'], ['1675199232', '2059'], ['1675200960', '2054'], ['1675202688', '2197'], ['1675204416', '2154'], ['1675206144', '2252'], ['1675207872', '2155'], ['1675209600', '2116'], ['1675211328', '2145'], ['1675213056', '2212'], ['1675214784', '2121'], ['1675216512', '1874'], ['1675218240', '1899'], ['1675219968', '1910'], ['1675221696', '2065'], ['1675223424', '2075'], ['1675225152', '1924'], ['1675226880', '2037'], ['1675228608', '2128'], ['1675230336', '1964'], ['1675232064', '1982'], ['1675233792', '1964'], ['1675235520', '1963'], ['1675237248', '2045'], ['1675238976', '2166'], ['1675240704', '2040'], ['1675242432', '2082'], ['1675244160', '1898'], ['1675245888', '1845'], ['1675247616', '2016'], ['1675249344', '1940'], ['1675251072', '1850'], ['1675252800', '1974'], ['1675254528', '2060'], ['1675256256', '2070'], ['1675257984', '2018'], ['1675259712', '1920'], ['1675261440', '1844'], ['1675263168', '1872'], ['1675264896', '1738'], ['1675266624', '1920'], ['1675268352', '1810'], ['1675270080', '1923'], ['1675271808', '1890'], ['1675273536', '1862'], ['1675275264', '2070'], ['1675276992', '1897'], ['1675278720', '1917'], ['1675280448', '1943'], ['1675282176', '1883'], ['1675283904', '2095'], ['1675285632', '1850'], ['1675287360', '2139'], ['1675289088', '1987'], ['1675290816', '2228'], ['1675292544', '2032'], ['1675294272', '2219'], ['1675296000', '2241'], ['1675297728', '2188'], ['1675299456', '2230'], ['1675301184', '2031'], ['1675302912', '2058'], ['1675304640', '1921'], ['1675306368', '1832'], ['1675308096', '1668'], ['1675309824', '1833'], ['1675311552', '1792'], ['1675313280', '1793'], ['1675315008', '1901'], ['1675316736', '1752'], ['1675318464', '1858'], ['1675320192', '1740'], ['1675321920', '1826'], ['1675323648', '1966'], ['1675325376', '1927'], ['1675327104', '1981'], ['1675328832', '1954'], ['1675330560', '1733'], ['1675332288', '1758'], ['1675334016', '1900'], ['1675335744', '1898'], ['1675337472', '1890'], ['1675339200', '1986'], ['1675340928', '2070'], ['1675342656', '1963'], ['1675344384', '1944'], ['1675346112', '1858'], ['1675347840', '1990'], ['1675349568', '1978'], ['1675351296', '2108'], ['1675353024', '1876']], analysis: { rate: 9.2, total: 198264.0 } }, Tencent: { values: [['1675180224', '0'], ['1675181952', '4160'], ['1675183680', '4083'], ['1675185408', '4093'], ['1675187136', '4451'], ['1675188864', '4512'], ['1675190592', '3742'], ['1675192320', '4244'], ['1675194048', '4253'], ['1675195776', '4279'], ['1675197504', '4939'], ['1675199232', '4171'], ['1675200960', '4387'], ['1675202688', '4622'], ['1675204416', '4475'], ['1675206144', '4626'], ['1675207872', '4229'], ['1675209600', '4338'], ['1675211328', '4460'], ['1675213056', '4329'], ['1675214784', '4605'], ['1675216512', '4549'], ['1675218240', '4514'], ['1675219968', '4797'], ['1675221696', '4822'], ['1675223424', '5130'], ['1675225152', '4586'], ['1675226880', '4598'], ['1675228608', '4867'], ['1675230336', '4666'], ['1675232064', '4783'], ['1675233792', '4255'], ['1675235520', '4168'], ['1675237248', '4250'], ['1675238976', '4008'], ['1675240704', '4517'], ['1675242432', '4226'], ['1675244160', '4085'], ['1675245888', '3583'], ['1675247616', '4062'], ['1675249344', '4120'], ['1675251072', '3765'], ['1675252800', '3811'], ['1675254528', '4096'], ['1675256256', '3880'], ['1675257984', '4416'], ['1675259712', '4364'], ['1675261440', '4347'], ['1675263168', '4279'], ['1675264896', '3914'], ['1675266624', '4422'], ['1675268352', '4189'], ['1675270080', '4180'], ['1675271808', '4505'], ['1675273536', '4504'], ['1675275264', '4560'], ['1675276992', '4234'], ['1675278720', '4241'], ['1675280448', '3834'], ['1675282176', '4208'], ['1675283904', '3993'], ['1675285632', '3594'], ['1675287360', '4235'], ['1675289088', '4100'], ['1675290816', '4481'], ['1675292544', '4852'], ['1675294272', '4473'], ['1675296000', '4467'], ['1675297728', '4529'], ['1675299456', '4335'], ['1675301184', '4385'], ['1675302912', '4452'], ['1675304640', '4570'], ['1675306368', '4463'], ['1675308096', '3981'], ['1675309824', '4338'], ['1675311552', '4032'], ['1675313280', '4292'], ['1675315008', '4494'], ['1675316736', '4300'], ['1675318464', '4781'], ['1675320192', '4240'], ['1675321920', '4651'], ['1675323648', '4682'], ['1675325376', '4630'], ['1675327104', '3965'], ['1675328832', '4295'], ['1675330560', '4559'], ['1675332288', '4316'], ['1675334016', '4281'], ['1675335744', '4326'], ['1675337472', '4476'], ['1675339200', '4688'], ['1675340928', '4199'], ['1675342656', '4440'], ['1675344384', '4481'], ['1675346112', '4403'], ['1675347840', '4563'], ['1675349568', '4580'], ['1675351296', '4591'], ['1675353024', '4252']], analysis: { rate: 20.16, total: 435098.0 } }, Bytedance: { values: [['1675180224', '0'], ['1675181952', '9660'], ['1675183680', '10163'], ['1675185408', '10437'], ['1675187136', '10493'], ['1675188864', '10058'], ['1675190592', '9670'], ['1675192320', '10173'], ['1675194048', '10109'], ['1675195776', '10301'], ['1675197504', '10879'], ['1675199232', '10491'], ['1675200960', '10796'], ['1675202688', '10615'], ['1675204416', '11054'], ['1675206144', '11036'], ['1675207872', '10498'], ['1675209600', '10504'], ['1675211328', '10911'], ['1675213056', '11053'], ['1675214784', '10541'], ['1675216512', '10122'], ['1675218240', '10506'], ['1675219968', '10752'], ['1675221696', '11017'], ['1675223424', '11052'], ['1675225152', '10610'], ['1675226880', '10862'], ['1675228608', '10897'], ['1675230336', '10748'], ['1675232064', '10806'], ['1675233792', '10589'], ['1675235520', '10160'], ['1675237248', '10590'], ['1675238976', '10022'], ['1675240704', '10218'], ['1675242432', '10319'], ['1675244160', '10392'], ['1675245888', '9096'], ['1675247616', '9688'], ['1675249344', '9996'], ['1675251072', '9730'], ['1675252800', '9606'], ['1675254528', '9726'], ['1675256256', '9635'], ['1675257984', '10247'], ['1675259712', '10242'], ['1675261440', '10328'], ['1675263168', '9738'], ['1675264896', '9720'], ['1675266624', '10521'], ['1675268352', '9414'], ['1675270080', '9936'], ['1675271808', '10447'], ['1675273536', '10840'], ['1675275264', '10020'], ['1675276992', '9910'], ['1675278720', '10333'], ['1675280448', '10341'], ['1675282176', '9771'], ['1675283904', '9946'], ['1675285632', '8611'], ['1675287360', '10287'], ['1675289088', '10168'], ['1675290816', '10858'], ['1675292544', '10252'], ['1675294272', '9988'], ['1675296000', '10610'], ['1675297728', '10408'], ['1675299456', '10594'], ['1675301184', '10363'], ['1675302912', '10647'], ['1675304640', '10022'], ['1675306368', '10571'], ['1675308096', '9479'], ['1675309824', '10015'], ['1675311552', '9625'], ['1675313280', '9858'], ['1675315008', '10435'], ['1675316736', '10623'], ['1675318464', '10332'], ['1675320192', '9246'], ['1675321920', '10265'], ['1675323648', '10308'], ['1675325376', '10266'], ['1675327104', '10017'], ['1675328832', '9931'], ['1675330560', '10591'], ['1675332288', '9971'], ['1675334016', '10590'], ['1675335744', '10745'], ['1675337472', '9874'], ['1675339200', '10143'], ['1675340928', '10501'], ['1675342656', '10829'], ['1675344384', '10524'], ['1675346112', '9595'], ['1675347840', '10187'], ['1675349568', '10652'], ['1675351296', '10072'], ['1675353024', '10234']], analysis: { rate: 47.52, total: 1026622.0 } }, Alibaba: { values: [['1675180224', '0'], ['1675181952', '6259'], ['1675183680', '5994'], ['1675185408', '6400'], ['1675187136', '6495'], ['1675188864', '6432'], ['1675190592', '6382'], ['1675192320', '7069'], ['1675194048', '6016'], ['1675195776', '6542'], ['1675197504', '6274'], ['1675199232', '6580'], ['1675200960', '6660'], ['1675202688', '6121'], ['1675204416', '6612'], ['1675206144', '6465'], ['1675207872', '7281'], ['1675209600', '7306'], ['1675211328', '6455'], ['1675213056', '6976'], ['1675214784', '8342'], ['1675216512', '5635'], ['1675218240', '6527'], ['1675219968', '6182'], ['1675221696', '7297'], ['1675223424', '6458'], ['1675225152', '6446'], ['1675226880', '6260'], ['1675228608', '6424'], ['1675230336', '6584'], ['1675232064', '6260'], ['1675233792', '7646'], ['1675235520', '6740'], ['1675237248', '6407'], ['1675238976', '6809'], ['1675240704', '5862'], ['1675242432', '6052'], ['1675244160', '6395'], ['1675245888', '5817'], ['1675247616', '5452'], ['1675249344', '5573'], ['1675251072', '5614'], ['1675252800', '6100'], ['1675254528', '6085'], ['1675256256', '6413'], ['1675257984', '8435'], ['1675259712', '5928'], ['1675261440', '6034'], ['1675263168', '6818'], ['1675264896', '5718'], ['1675266624', '5842'], ['1675268352', '5789'], ['1675270080', '6738'], ['1675271808', '6023'], ['1675273536', '6160'], ['1675275264', '6088'], ['1675276992', '6252'], ['1675278720', '6782'], ['1675280448', '6569'], ['1675282176', '6028'], ['1675283904', '6243'], ['1675285632', '5515'], ['1675287360', '6350'], ['1675289088', '5872'], ['1675290816', '6445'], ['1675292544', '6173'], ['1675294272', '6579'], ['1675296000', '6547'], ['1675297728', '6635'], ['1675299456', '7510'], ['1675301184', '7063'], ['1675302912', '6524'], ['1675304640', '7073'], ['1675306368', '7444'], ['1675308096', '6280'], ['1675309824', '5793'], ['1675311552', '6172'], ['1675313280', '6252'], ['1675315008', '5648'], ['1675316736', '6324'], ['1675318464', '6242'], ['1675320192', '5861'], ['1675321920', '6722'], ['1675323648', '6581'], ['1675325376', '6184'], ['1675327104', '7407'], ['1675328832', '7587'], ['1675330560', '5659'], ['1675332288', '6138'], ['1675334016', '5978'], ['1675335744', '6513'], ['1675337472', '6154'], ['1675339200', '5983'], ['1675340928', '6780'], ['1675342656', '6356'], ['1675344384', '6301'], ['1675346112', '5765'], ['1675347840', '6199'], ['1675349568', '6272'], ['1675351296', '7894'], ['1675353024', '6256']], analysis: { rate: '', total: '' } } }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20TIME_FLOOR_WITH_FILL%28stat_time%2C%27PT1728S%27%2C%27zero%27%29%20AS%20stat_time%2C%20app_company%20AS%20app_company%2C%20SUM%28common_c2s_byte_num%20%2B%20common_s2c_byte_num%29%20AS%20bytes_total%2C%20SUM%28common_c2s_pkt_num%20%2B%20common_s2c_pkt_num%29%20AS%20packets_total%2C%20SUM%28common_sessions%29%20AS%20sessions_total%20FROM%20metric_application%20WHERE%20stat_time%20%3E%3D%20toDateTime%281675180800%29%20AND%20stat_time%20%3C%20toDateTime%281675353599%29%20AND%20app_company%20IN%20%28%20%27Bytedance%27%2C%27Tencent%27%2C%27Alibaba%27%2C%27Baidu%27%20%29%20GROUP%20BY%20stat_time%2Capp_company%20ORDER%20BY%20stat_time%20ASC&format=json&option=real-time', msg: 'OK' } }, + { status: 200, data: { status: 200, code: 200, data: { total: 31, pageSize: 24, pages: 2, pageNo: 1, list: [{ id: 5568, name: '供应商', type: 'overviewProvide', code: '1', value: 'Alibaba', sort: 0, remark: 'Alibaba Group Holding Limited, also known as Alibaba, is a Chinese multinational technology company specializing in e-commerce, retail, Internet, and technology.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5569, name: '供应商', type: 'overviewProvide', code: '1', value: 'Tencent', sort: 0, remark: 'Tencent Holdings Ltd. is a Chinese multinational technology and entertainment conglomerate and holding company headquartered in Shenzhen. It is one of the highest grossing multimedia companies in the world based on revenue.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5570, name: '供应商', type: 'overviewProvide', code: '1', value: 'Baidu', sort: 0, remark: "Baidu, Inc. is a Chinese multinational technology company specializing in Internet-related services and products and artificial intelligence, headquartered in Beijing's Haidian District. It is one of the largest AI and Internet companies in the world.", uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5571, name: '供应商', type: 'overviewProvide', code: '1', value: 'Jingdong', sort: 0, remark: 'JD.com, Inc., also known as Jingdong and formerly called 360buy, is a Chinese e-commerce company headquartered in Beijing. It is one of the two massive B2C online retailers in China by transaction volume and revenue, a member of the Fortune Global 500 and a major competitor to Alibaba-run Tmall.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5572, name: '供应商', type: 'overviewProvide', code: '1', value: 'Meituan', sort: 0, remark: 'Meituan operates as a web based shopping platform for locally found consumer products and retail services. The Company offers deals of the day by selling vouchers on local services and entertainment, dining, delivery, and other services. Meituan provides its services throughout China.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5573, name: '供应商', type: 'overviewProvide', code: '1', value: 'Bytedance', sort: 0, remark: 'ByteDance Ltd. is a Chinese multinational internet technology company headquartered in Beijing and incorporated in the Cayman Islands.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5574, name: '供应商', type: 'overviewProvide', code: '1', value: 'Pinduoduo', sort: 0, remark: 'Pinduoduo Inc. is the largest Chinese agricultural-focused technology platform. It has created a platform that connects farmers and distributors with consumers directly through its interactive shopping experience.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5575, name: '供应商', type: 'overviewProvide', code: '1', value: 'Netease', sort: 0, remark: 'NetEase, Inc. is a Chinese Internet technology company providing online services centered on content, community, communications, and commerce.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5576, name: '供应商', type: 'overviewProvide', code: '1', value: 'Kuaishou', sort: 0, remark: "Kuaishou is a video-sharing mobile app that is developed by Beijing Kuaishou Technology Co., Ltd. It is popular with users outside China's Tier 1 cities.", uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5577, name: '供应商', type: 'overviewProvide', code: '1', value: '360cn', sort: 0, remark: 'Qihoo 360, full name Qihoo 360 Technology Co. Ltd., is a Chinese internet security company that has developed the antivirus software programs 360 Safeguard and 360 Mobile Safe, the Web browser 360 Secure Browser, and the mobile application store 360 Mobile Assistant.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5578, name: '供应商', type: 'overviewProvide', code: '1', value: 'Xiaomi', sort: 0, remark: 'Xiaomi Corporation, commonly known as Xiaomi and registered in Asia as Xiaomi Inc., is a Chinese designer and manufacturer of consumer electronics and related software, home appliances, and household items.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5579, name: '供应商', type: 'overviewProvide', code: '1', value: 'Sina', sort: 0, remark: 'Sina Corporation is a Chinese technology company. Sina operates four major business lines: Sina Weibo, Sina Mobile, Sina Online, and Sinanet. Sina has over 100 million registered users worldwide. ', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5580, name: '供应商', type: 'overviewProvide', code: '1', value: 'Huawei', sort: 0, remark: 'Huawei Technologies Co., Ltd. is a Chinese multinational technology corporation headquartered in Shenzhen, Guangdong, China. It designs, develops, produces and sells telecommunications equipment, consumer electronics and various smart devices.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5581, name: '供应商', type: 'overviewProvide', code: '1', value: 'Beike', sort: 0, remark: 'KE Holdings Inc is a China-based holding company engaged in housing transactions and related services.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5582, name: '供应商', type: 'overviewProvide', code: '1', value: 'Aiqiyi', sort: 0, remark: 'iQIYI, Inc. is an innovative market-leading online entertainment service in China.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5583, name: '供应商', type: 'overviewProvide', code: '1', value: 'Ctrip', sort: 0, remark: 'Trip.com Group Limited is a Chinese multinational online travel company that provides services including accommodation reservation, transportation ticketing, packaged tours and corporate travel management.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5584, name: '供应商', type: 'overviewProvide', code: '1', value: 'Sohu', sort: 0, remark: 'Sohu, Inc. is a Chinese Internet company headquartered in the Sohu Internet Plaza in Haidian District, Beijing.[4][5] Sohu and its subsidiaries offer advertising, a search engine (Sogou.com), on-line multiplayer gaming (ChangYou.com) and other services.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5585, name: '供应商', type: 'overviewProvide', code: '1', value: 'YY', sort: 0, remark: 'YY is a major Chinese video-based social network, a subsidiary of JOYY.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5586, name: '供应商', type: 'overviewProvide', code: '1', value: 'Xiaohongshu', sort: 0, remark: 'Xiaohongshu, also known as Little Red Book is a social media and e-commerce platform. ', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5587, name: '供应商', type: 'overviewProvide', code: '1', value: 'Apple', sort: 0, remark: 'Apple Inc. is an American multinational technology company that specializes in consumer electronics, software and online services headquartered in Cupertino, California, United States.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5588, name: '供应商', type: 'overviewProvide', code: '1', value: 'Microsoft', sort: 0, remark: 'Microsoft Corporation is an American multinational technology corporation which produces computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washington, United States.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5589, name: '供应商', type: 'overviewProvide', code: '1', value: 'Steam', sort: 0, remark: 'Steam parent company Valve has enjoyed enormous success as a game developer, thanks to titles like Half-Life, Counter-Strike: Global Offensive, and Dota 2.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5590, name: '供应商', type: 'overviewProvide', code: '1', value: 'Cibn', sort: 0, remark: 'China International Radio and Television Network (CIBN for short) is a new media international communication platform established by China Radio International.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5591, name: '供应商', type: 'overviewProvide', code: '1', value: 'Amazon', sort: 0, remark: 'Amazon.com, Inc. is an American multinational technology company which focuses on e-commerce, cloud computing, digital streaming, and artificial intelligence.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }] }, time: '2023-02-06 01:39:14', message: 'success' } }, + { status: 200, data: { status: 200, code: 200, data: { total: 3493, pageSize: 24, pages: 146, pageNo: 1, list: [{ id: 2304, name: '应用名', type: 'overviewApp', code: '1', value: 'avoidr', sort: 0, remark: 'Avoidr is a free web proxy', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 2560, name: '应用名', type: 'overviewApp', code: '1', value: 'google_translate', sort: 0, remark: 'Google Translate is the Google translation tool', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 2816, name: '应用名', type: 'overviewApp', code: '1', value: 'taobao', sort: 0, remark: 'Taobao is a chinese shopping website', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3072, name: '应用名', type: 'overviewApp', code: '1', value: 'iapp', sort: 0, remark: 'News site about mobile applications', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3328, name: '应用名', type: 'overviewApp', code: '1', value: 'searchnu', sort: 0, remark: 'Browser toolbar search engine', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3584, name: '应用名', type: 'overviewApp', code: '1', value: 'standardmedia', sort: 0, remark: 'Kenyan news portal', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3840, name: '应用名', type: 'overviewApp', code: '1', value: 'mocean', sort: 0, remark: 'MOcean is a advertising agency', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4096, name: '应用名', type: 'overviewApp', code: '1', value: 'elnuevoherald', sort: 0, remark: 'Cuban news portal', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4352, name: '应用名', type: 'overviewApp', code: '1', value: 'millardayo', sort: 0, remark: 'Global news portal in Tanzania', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4608, name: '应用名', type: 'overviewApp', code: '1', value: 'thadinatin', sort: 0, remark: 'Popular infotainment portal in Myanmar', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4864, name: '应用名', type: 'overviewApp', code: '1', value: 'iec104', sort: 0, remark: 'IEC 60870-5-104 protocol (aka IEC 104) is a part of IEC Telecontrol Equipment and Systems Standard IEC 60870-5 that provides a communication profile for sending basic telecontrol messages between two systems in electrical engineering and power system automation', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5120, name: '应用名', type: 'overviewApp', code: '1', value: 'agora_io', sort: 0, remark: 'Agora SDK is a WebRTC framework', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5376, name: '应用名', type: 'overviewApp', code: '1', value: 'LaowangVPN', sort: 0, uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 2305, name: '应用名', type: 'overviewApp', code: '1', value: 'surrogafier', sort: 0, remark: 'Surrogafier is an online proxy provider This protocol plug-in classifies the http traffic to the hosts surrogafierinfo and govfservercom', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 2561, name: '应用名', type: 'overviewApp', code: '1', value: 'gyao', sort: 0, remark: 'GyaO is a video website operated by Yahoo Japan', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 2817, name: '应用名', type: 'overviewApp', code: '1', value: 'cvs', sort: 0, remark: 'The Concurrent Versions System keeps track of all work and all changes in a set of files typically the implementation of a software project and allows several developers to collaborate', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3073, name: '应用名', type: 'overviewApp', code: '1', value: 'ifeng_finance', sort: 0, remark: 'Ifeng finance news portal', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3329, name: '应用名', type: 'overviewApp', code: '1', value: 'panet', sort: 0, remark: 'News and entertainment web portal', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3585, name: '应用名', type: 'overviewApp', code: '1', value: 'tasweernews', sort: 0, remark: 'Jordanian news portal', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3841, name: '应用名', type: 'overviewApp', code: '1', value: 'turner', sort: 0, remark: 'Turner is a video streaming solution provider for audio/video content web services', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4097, name: '应用名', type: 'overviewApp', code: '1', value: 'listindiario', sort: 0, remark: 'Dominican republic news portal', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4353, name: '应用名', type: 'overviewApp', code: '1', value: 'teletica', sort: 0, remark: 'TV calendar service and news web portal in Costa Rica', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4609, name: '应用名', type: 'overviewApp', code: '1', value: 'torrent9', sort: 0, remark: 'Popular torrent file (P2P) search engine and download web site', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4865, name: '应用名', type: 'overviewApp', code: '1', value: 'vonage_mobile', sort: 0, remark: 'Vonage Mobile is an instant messaging application that provides feature to make landline or international calls', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }] }, time: '2023-02-07 02:12:00', message: 'success' } }, + { status: 200, data: { status: 200, code: 200, data: { total: 1, pageSize: 24, pages: 1, pageNo: 1, list: [{ id: 5579, name: '供应商', type: 'overviewProvide', code: '1', value: 'Sina', sort: 0, remark: 'Sina Corporation is a Chinese technology company. Sina operates four major business lines: Sina Weibo, Sina Mobile, Sina Online, and Sinanet. Sina has over 100 million registered users worldwide. ', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }] }, time: '2023-02-07 07:46:05', message: 'success' } }, + { status: 200, data: { status: 200, code: 200, data: { total: 1, pageSize: 24, pages: 1, pageNo: 1, list: [{ id: 3072, name: '应用名', type: 'overviewApp', code: '1', value: 'iapp', sort: 0, remark: 'News site about mobile applications', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }] }, time: '2023-02-07 09:37:55', message: 'success' } } ], chart: { id: 5, name: 'network overview apps', i18n: '', panelId: 1, pid: 0, type: 103, x: 0, y: 6, w: 19, h: 8, params: { app: [{ user: 'default', list: [{ type: 'app', name: 'douyin' }, { type: 'app', name: 'kuaishou' }, { type: 'app', name: 'wechat' }, { type: 'app', name: 'qq' }, { type: 'provider', name: 'Bytedance' }, { type: 'provider', name: 'Tencent' }] }, { user: 5, list: [{ type: 'app', name: 'douyin' }, { type: 'app', name: 'kuaishou' }, { type: 'app', name: 'wechat' }, { type: 'app', name: 'qq' }, { type: 'provider', name: 'Bytedance' }, { type: 'provider', name: 'Tencent' }, { type: 'provider', name: 'Alibaba' }, { type: 'provider', name: 'Baidu' }] }, { user: 1, list: [{ type: 'app', name: 'douyin' }, { type: 'app', name: 'kuaishou' }, { type: 'app', name: 'wechat' }, { type: 'app', name: 'qq' }, { type: 'provider', name: 'Tencent' }, { type: 'provider', name: 'Jingdong' }, { type: 'provider', name: 'Akamai' }, { type: 'provider', name: 'Bytedance' }, { type: 'provider', name: 'Baidu' }, { type: 'provider', name: 'Huawei' }, { type: 'app', name: 'taobao', appShow: true }] }] }, cby: 1, ctime: '2022-07-06 17:22:22', uby: 1, utime: '2022-11-08 08:19:52', remark: '', state: 1, system: 0, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null }, cuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null }, children: [], parent: null, panel: { id: 1, name: 'Network Overview', i18n: null, type: null, params: null, cby: null, ctime: null, uby: null, utime: null, remark: null, state: null, buildIn: null, uuser: null, cuser: null }, i: 5, category: 'echarts', firstShow: false, moved: false } }, empty: { + status: 200, data: { status: 200, code: 200, @@ -25,14 +26,14 @@ export const mockData = { }, boundary: { data: [ - { data: { status: 200, code: 200, queryKey: 'd9f5b7769b8c9025354794d6eb053f5c', success: true, message: null, statistics: { elapsed: 8, rows_read: 151581, bytes_read: 9780720, result_size: 364, result_rows: 4 }, job: null, formatType: 'json', meta: [{ name: 'app_label', type: 'string', category: 'Dimension' }, { name: 'bytes_total', type: 'long', category: 'Metric' }, { name: 'packets_total', type: 'long', category: 'Metric' }, { name: 'sessions_total', type: 'long', category: 'Metric' }], data: { resultType: 'object', result: [{ type: 'bytes', qq: { rate: 1010.16, total: 21819167 }, douyin: { rate: '0', total: 589724424997 }, kuaishou: { rate: 7390882.56, total: 159642139901 } }, { type: 'packets', qq: { rate: 2.64, total: 57117 }, douyin: { rate: 250258400000, total: 540554929 }, kuaishou: { rate: 6813.36, total: 147167390 } }, { type: 'sessions', qq: { rate: 0.08, total: 2042 }, douyin: { rate: 2504000000000, total: 541472 }, kuaishou: { rate: 5.04, total: 108589 } }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20common_app_label%20AS%20app_label%2C%20SUM%28common_c2s_byte_num%20%2B%20common_s2c_byte_num%29%20AS%20bytes_total%2C%20SUM%28common_c2s_pkt_num%20%2B%20common_s2c_pkt_num%29%20AS%20packets_total%2C%20SUM%28common_sessions%29%20AS%20sessions_total%20FROM%20metric_application%20WHERE%20stat_time%20%3E%3D%201675180800-172799%20AND%20stat_time%20%3C%201675353599-172799%20AND%20common_app_label%20IN%20%28%20%27douyin%27%2C%27kuaishou%27%2C%27qq%27%2C%27wechat%27%20%29%20GROUP%20BY%20app_label&format=json&option=real-time', msg: 'OK' } }, - { data: { status: 200, code: 200, queryKey: '0d6d3c03e630309af3ff000a353145bc', success: true, message: null, statistics: { elapsed: 40, rows_read: 633867, bytes_read: 23030397, result_size: 43140, result_rows: 404 }, job: null, formatType: 'json', meta: [{ name: 'stat_time', type: 'long', category: 'Dimension' }, { name: 'app_label', type: 'string', category: 'Dimension' }, { name: 'bytes_total', type: 'long', category: 'Metric' }, { name: 'packets_total', type: 'long', category: 'Metric' }, { name: 'sessions_total', type: 'long', category: 'Metric' }], data: { resultType: 'object', result: [{ type: 'bytes', qq: { values: [['1675180224', '0'], ['1675181952', '227614'], ['1675183680', '38412'], ['1675185408', '116041'], ['1675187136', '128653'], ['1675188864', '135713'], ['1675190592', '122184'], ['1675192320', '129864'], ['1675194048', '1964603'], ['1675195776', '125529'], ['1675197504', '40230'], ['1675199232', '77972'], ['1675200960', '78289'], ['1675202688', '67906'], ['1675204416', '57945'], ['1675206144', '109257'], ['1675207872', '143575'], ['1675209600', '118119'], ['1675211328', '175533'], ['1675213056', '69095'], ['1675214784', '108809'], ['1675216512', '130300'], ['1675218240', '68447'], ['1675219968', '630788'], ['1675221696', '155681'], ['1675223424', '176030'], ['1675225152', '128553'], ['1675226880', '113247'], ['1675228608', '50118'], ['1675230336', '84248'], ['1675232064', '142975'], ['1675233792', '93655'], ['1675235520', '33835'], ['1675237248', '139744'], ['1675238976', '77275'], ['1675240704', '121832'], ['1675242432', '96674'], ['1675244160', '117739'], ['1675245888', '167341'], ['1675247616', '111160'], ['1675249344', '121214'], ['1675251072', '52357'], ['1675252800', '64871'], ['1675254528', '175765'], ['1675256256', '198280'], ['1675257984', '313557'], ['1675259712', '130227'], ['1675261440', '104428'], ['1675263168', '274705'], ['1675264896', '70431'], ['1675266624', '140682'], ['1675268352', '83156'], ['1675270080', '1294611'], ['1675271808', '62669'], ['1675273536', '95395'], ['1675275264', '65723'], ['1675276992', '100901'], ['1675278720', '79062'], ['1675280448', '169488'], ['1675282176', '129568'], ['1675283904', '53631'], ['1675285632', '97518'], ['1675287360', '119426'], ['1675289088', '52308'], ['1675290816', '1361035'], ['1675292544', '156913'], ['1675294272', '215434'], ['1675296000', '54255'], ['1675297728', '288032'], ['1675299456', '772642'], ['1675301184', '107272'], ['1675302912', '92936'], ['1675304640', '498593'], ['1675306368', '102826'], ['1675308096', '76248'], ['1675309824', '145622'], ['1675311552', '55976'], ['1675313280', '75229'], ['1675315008', '162535'], ['1675316736', '180897'], ['1675318464', '60033'], ['1675320192', '64638'], ['1675321920', '129043'], ['1675323648', '579694'], ['1675325376', '51898'], ['1675327104', '75191'], ['1675328832', '333430'], ['1675330560', '39211'], ['1675332288', '1735358'], ['1675334016', '58490'], ['1675335744', '104864'], ['1675337472', '264375'], ['1675339200', '269080'], ['1675340928', '70592'], ['1675342656', '93411'], ['1675344384', '112441'], ['1675346112', '90449'], ['1675347840', '70863'], ['1675349568', '96436'], ['1675351296', '185547'], ['1675353024', '119575']], analysis: { rate: 910.96, total: 1.9676022E7 } }, douyin: { values: [['1675180224', '0'], ['1675181952', '6840349207'], ['1675183680', '6938901016'], ['1675185408', '7305187539'], ['1675187136', '8188141571'], ['1675188864', '7247690661'], ['1675190592', '6926759120'], ['1675192320', '7380048772'], ['1675194048', '7993802965'], ['1675195776', '6965741583'], ['1675197504', '8346510734'], ['1675199232', '6825635569'], ['1675200960', '8038915184'], ['1675202688', '8477225356'], ['1675204416', '8038673785'], ['1675206144', '7753302399'], ['1675207872', '7465742788'], ['1675209600', '7584210058'], ['1675211328', '7588104529'], ['1675213056', '8582557129'], ['1675214784', '6841255319'], ['1675216512', '7587872713'], ['1675218240', '7466607445'], ['1675219968', '7870624721'], ['1675221696', '7412764966'], ['1675223424', '8223871918'], ['1675225152', '8243945377'], ['1675226880', '7638363700'], ['1675228608', '7540615267'], ['1675230336', '7650851184'], ['1675232064', '7617949860'], ['1675233792', '7329955659'], ['1675235520', '8245178822'], ['1675237248', '7792148620'], ['1675238976', '7534743840'], ['1675240704', '7851088104'], ['1675242432', '7635228927'], ['1675244160', '6951204213'], ['1675245888', '6381170963'], ['1675247616', '6813650211'], ['1675249344', '7076447245'], ['1675251072', '6632590990'], ['1675252800', '7598778382'], ['1675254528', '7116694268'], ['1675256256', '7626461803'], ['1675257984', '7264879741'], ['1675259712', '7752671679'], ['1675261440', '7515853750'], ['1675263168', '7579932467'], ['1675264896', '7486997643'], ['1675266624', '7051686793'], ['1675268352', '6873607777'], ['1675270080', '7164166983'], ['1675271808', '8195989021'], ['1675273536', '7704140177'], ['1675275264', '6922140060'], ['1675276992', '6681666225'], ['1675278720', '7215000735'], ['1675280448', '7308499670'], ['1675282176', '7296427060'], ['1675283904', '7580297764'], ['1675285632', '6448511494'], ['1675287360', '7480200181'], ['1675289088', '7233539573'], ['1675290816', '7604079203'], ['1675292544', '7347409713'], ['1675294272', '7539122424'], ['1675296000', '8268929988'], ['1675297728', '7904603396'], ['1675299456', '7481158268'], ['1675301184', '7979103862'], ['1675302912', '8030132482'], ['1675304640', '6815551453'], ['1675306368', '6998980883'], ['1675308096', '6637269462'], ['1675309824', '7831818720'], ['1675311552', '6318916982'], ['1675313280', '7442258523'], ['1675315008', '7118095146'], ['1675316736', '7402017517'], ['1675318464', '7493982868'], ['1675320192', '6520083159'], ['1675321920', '7032318182'], ['1675323648', '6905781093'], ['1675325376', '7802918848'], ['1675327104', '7176212380'], ['1675328832', '7211668065'], ['1675330560', '6843290032'], ['1675332288', '7283947628'], ['1675334016', '7177682226'], ['1675335744', '7391199988'], ['1675337472', '6754687853'], ['1675339200', '6993139381'], ['1675340928', '6874136769'], ['1675342656', '6783677168'], ['1675344384', '7349291166'], ['1675346112', '6556961502'], ['1675347840', '7491223967'], ['1675349568', '7842238132'], ['1675351296', '6221073616'], ['1675353024', '7242494202']], analysis: { rate: 3.414793976E7, total: 7.37591229522E11 } }, kuaishou: { values: [['1675180224', '0'], ['1675181952', '1868006861'], ['1675183680', '1732168677'], ['1675185408', '2131898696'], ['1675187136', '2063010277'], ['1675188864', '1937537679'], ['1675190592', '1936788154'], ['1675192320', '2112580028'], ['1675194048', '1507654055'], ['1675195776', '2391037476'], ['1675197504', '2299446264'], ['1675199232', '1735303680'], ['1675200960', '1914095622'], ['1675202688', '1631022968'], ['1675204416', '2460019472'], ['1675206144', '1862981044'], ['1675207872', '1928704280'], ['1675209600', '1908009754'], ['1675211328', '1654220896'], ['1675213056', '2077381841'], ['1675214784', '2446500655'], ['1675216512', '2521067191'], ['1675218240', '1898347189'], ['1675219968', '1773018533'], ['1675221696', '1763549248'], ['1675223424', '1987857147'], ['1675225152', '1923607018'], ['1675226880', '2088989063'], ['1675228608', '2282878819'], ['1675230336', '1984472550'], ['1675232064', '1973641852'], ['1675233792', '2171240776'], ['1675235520', '2398440034'], ['1675237248', '1653378142'], ['1675238976', '1706909466'], ['1675240704', '2129291289'], ['1675242432', '1855368544'], ['1675244160', '1749240925'], ['1675245888', '1989494774'], ['1675247616', '1845322089'], ['1675249344', '2654426983'], ['1675251072', '1727183617'], ['1675252800', '1788630455'], ['1675254528', '1752731900'], ['1675256256', '1792192548'], ['1675257984', '2093031894'], ['1675259712', '1647678097'], ['1675261440', '2330265624'], ['1675263168', '1944482494'], ['1675264896', '1803569696'], ['1675266624', '2439742888'], ['1675268352', '3347846376'], ['1675270080', '1505440347'], ['1675271808', '2190442219'], ['1675273536', '1993445094'], ['1675275264', '1902837201'], ['1675276992', '2996332903'], ['1675278720', '1961133544'], ['1675280448', '1928639573'], ['1675282176', '2156986535'], ['1675283904', '1865411850'], ['1675285632', '1817765812'], ['1675287360', '1864996543'], ['1675289088', '1675537740'], ['1675290816', '1961491179'], ['1675292544', '1872641081'], ['1675294272', '1982193032'], ['1675296000', '2438454944'], ['1675297728', '2174619701'], ['1675299456', '1786626737'], ['1675301184', '1834178614'], ['1675302912', '1910990943'], ['1675304640', '2182469866'], ['1675306368', '1865110834'], ['1675308096', '2078719494'], ['1675309824', '2032641504'], ['1675311552', '1972714687'], ['1675313280', '1768457473'], ['1675315008', '1742922515'], ['1675316736', '2271077831'], ['1675318464', '1859973394'], ['1675320192', '1732928389'], ['1675321920', '1719608554'], ['1675323648', '1822114739'], ['1675325376', '1932173415'], ['1675327104', '2063384929'], ['1675328832', '2090741727'], ['1675330560', '1579268455'], ['1675332288', '2046765417'], ['1675334016', '2331961077'], ['1675335744', '2016304838'], ['1675337472', '1492052833'], ['1675339200', '1897359803'], ['1675340928', '1819642960'], ['1675342656', '1533538421'], ['1675344384', '2190655674'], ['1675346112', '1588408379'], ['1675347840', '1979353840'], ['1675349568', '2107484915'], ['1675351296', '2249064595'], ['1675353024', '1920902044']], analysis: { rate: 9181730.64, total: 1.98324233794E11 } } }, { type: 'packets', qq: { values: [['1675180224', '0'], ['1675181952', '606'], ['1675183680', '214'], ['1675185408', '526'], ['1675187136', '658'], ['1675188864', '962'], ['1675190592', '699'], ['1675192320', '497'], ['1675194048', '4134'], ['1675195776', '430'], ['1675197504', '242'], ['1675199232', '429'], ['1675200960', '346'], ['1675202688', '340'], ['1675204416', '337'], ['1675206144', '546'], ['1675207872', '614'], ['1675209600', '540'], ['1675211328', '463'], ['1675213056', '376'], ['1675214784', '451'], ['1675216512', '682'], ['1675218240', '396'], ['1675219968', '1123'], ['1675221696', '736'], ['1675223424', '771'], ['1675225152', '850'], ['1675226880', '569'], ['1675228608', '280'], ['1675230336', '389'], ['1675232064', '695'], ['1675233792', '457'], ['1675235520', '180'], ['1675237248', '487'], ['1675238976', '388'], ['1675240704', '553'], ['1675242432', '454'], ['1675244160', '514'], ['1675245888', '551'], ['1675247616', '446'], ['1675249344', '523'], ['1675251072', '324'], ['1675252800', '338'], ['1675254528', '473'], ['1675256256', '732'], ['1675257984', '649'], ['1675259712', '689'], ['1675261440', '490'], ['1675263168', '735'], ['1675264896', '339'], ['1675266624', '657'], ['1675268352', '383'], ['1675270080', '1747'], ['1675271808', '263'], ['1675273536', '349'], ['1675275264', '316'], ['1675276992', '520'], ['1675278720', '380'], ['1675280448', '486'], ['1675282176', '550'], ['1675283904', '319'], ['1675285632', '478'], ['1675287360', '604'], ['1675289088', '266'], ['1675290816', '1751'], ['1675292544', '416'], ['1675294272', '1045'], ['1675296000', '273'], ['1675297728', '644'], ['1675299456', '1215'], ['1675301184', '507'], ['1675302912', '436'], ['1675304640', '1353'], ['1675306368', '431'], ['1675308096', '409'], ['1675309824', '384'], ['1675311552', '209'], ['1675313280', '399'], ['1675315008', '435'], ['1675316736', '443'], ['1675318464', '241'], ['1675320192', '368'], ['1675321920', '399'], ['1675323648', '1294'], ['1675325376', '300'], ['1675327104', '384'], ['1675328832', '962'], ['1675330560', '234'], ['1675332288', '6718'], ['1675334016', '254'], ['1675335744', '446'], ['1675337472', '615'], ['1675339200', '877'], ['1675340928', '404'], ['1675342656', '548'], ['1675344384', '458'], ['1675346112', '347'], ['1675347840', '354'], ['1675349568', '417'], ['1675351296', '387'], ['1675353024', '441']], analysis: { rate: 2.96, total: 63339.0 } }, douyin: { values: [['1675180224', '0'], ['1675181952', '6197371'], ['1675183680', '6358852'], ['1675185408', '6715754'], ['1675187136', '7436866'], ['1675188864', '6557821'], ['1675190592', '6355871'], ['1675192320', '6859765'], ['1675194048', '7127026'], ['1675195776', '6381159'], ['1675197504', '7567599'], ['1675199232', '6226694'], ['1675200960', '7369356'], ['1675202688', '7712436'], ['1675204416', '7345952'], ['1675206144', '7218586'], ['1675207872', '6839080'], ['1675209600', '6887533'], ['1675211328', '6935752'], ['1675213056', '7890836'], ['1675214784', '6251184'], ['1675216512', '6845634'], ['1675218240', '6892309'], ['1675219968', '7150591'], ['1675221696', '6823704'], ['1675223424', '7646335'], ['1675225152', '7486344'], ['1675226880', '7040943'], ['1675228608', '6899602'], ['1675230336', '7066419'], ['1675232064', '7012961'], ['1675233792', '6734310'], ['1675235520', '7507330'], ['1675237248', '7328470'], ['1675238976', '7038404'], ['1675240704', '7173446'], ['1675242432', '6993118'], ['1675244160', '6410795'], ['1675245888', '5911194'], ['1675247616', '6277144'], ['1675249344', '6534898'], ['1675251072', '6118595'], ['1675252800', '6991938'], ['1675254528', '6519410'], ['1675256256', '7181072'], ['1675257984', '6615763'], ['1675259712', '7021918'], ['1675261440', '6878676'], ['1675263168', '7164503'], ['1675264896', '6874729'], ['1675266624', '6432753'], ['1675268352', '6307274'], ['1675270080', '6647741'], ['1675271808', '7462350'], ['1675273536', '7142099'], ['1675275264', '6328964'], ['1675276992', '6183940'], ['1675278720', '6791555'], ['1675280448', '6685349'], ['1675282176', '6661602'], ['1675283904', '6946903'], ['1675285632', '5897413'], ['1675287360', '6805796'], ['1675289088', '6568242'], ['1675290816', '7007823'], ['1675292544', '6610019'], ['1675294272', '6858170'], ['1675296000', '7744211'], ['1675297728', '7208221'], ['1675299456', '6815118'], ['1675301184', '7357640'], ['1675302912', '7459213'], ['1675304640', '6214814'], ['1675306368', '6458755'], ['1675308096', '6134159'], ['1675309824', '7139250'], ['1675311552', '5874017'], ['1675313280', '6848695'], ['1675315008', '6519852'], ['1675316736', '6777270'], ['1675318464', '6846661'], ['1675320192', '5884151'], ['1675321920', '6489480'], ['1675323648', '6293153'], ['1675325376', '7195451'], ['1675327104', '6517878'], ['1675328832', '6551928'], ['1675330560', '6274616'], ['1675332288', '6631027'], ['1675334016', '6614058'], ['1675335744', '6771588'], ['1675337472', '6188863'], ['1675339200', '6427004'], ['1675340928', '6343710'], ['1675342656', '6178169'], ['1675344384', '6657322'], ['1675346112', '6091040'], ['1675347840', '6871382'], ['1675349568', '7173669'], ['1675351296', '5823930'], ['1675353024', '6710423']], analysis: { rate: 31333520000, total: 676800759E8 } }, kuaishou: { values: [['1675180224', '0'], ['1675181952', '1705580'], ['1675183680', '1593727'], ['1675185408', '1946915'], ['1675187136', '1917429'], ['1675188864', '1795867'], ['1675190592', '1767678'], ['1675192320', '1863517'], ['1675194048', '1378238'], ['1675195776', '2133321'], ['1675197504', '2221475'], ['1675199232', '1603668'], ['1675200960', '1738494'], ['1675202688', '1513171'], ['1675204416', '2255791'], ['1675206144', '1716124'], ['1675207872', '1782197'], ['1675209600', '1744454'], ['1675211328', '1554832'], ['1675213056', '1984725'], ['1675214784', '2233360'], ['1675216512', '2297592'], ['1675218240', '1741490'], ['1675219968', '1624499'], ['1675221696', '1630196'], ['1675223424', '1815006'], ['1675225152', '1756123'], ['1675226880', '1899440'], ['1675228608', '2100577'], ['1675230336', '1831805'], ['1675232064', '1819676'], ['1675233792', '1978645'], ['1675235520', '2167573'], ['1675237248', '1557262'], ['1675238976', '1559497'], ['1675240704', '1944289'], ['1675242432', '1674776'], ['1675244160', '1614920'], ['1675245888', '1791181'], ['1675247616', '1675268'], ['1675249344', '2693715'], ['1675251072', '1642608'], ['1675252800', '1644117'], ['1675254528', '1562746'], ['1675256256', '1641479'], ['1675257984', '1935089'], ['1675259712', '1524063'], ['1675261440', '2144236'], ['1675263168', '1744826'], ['1675264896', '1644469'], ['1675266624', '2158417'], ['1675268352', '3294854'], ['1675270080', '1368127'], ['1675271808', '2014564'], ['1675273536', '1810232'], ['1675275264', '1759498'], ['1675276992', '2605599'], ['1675278720', '1780170'], ['1675280448', '1760412'], ['1675282176', '1996901'], ['1675283904', '1750576'], ['1675285632', '1661220'], ['1675287360', '1712123'], ['1675289088', '1536965'], ['1675290816', '1817954'], ['1675292544', '1733340'], ['1675294272', '1790373'], ['1675296000', '2469841'], ['1675297728', '2010199'], ['1675299456', '1642746'], ['1675301184', '1702235'], ['1675302912', '1732882'], ['1675304640', '2004182'], ['1675306368', '1718766'], ['1675308096', '1878088'], ['1675309824', '1969171'], ['1675311552', '1767540'], ['1675313280', '1637693'], ['1675315008', '1596693'], ['1675316736', '2018056'], ['1675318464', '1771415'], ['1675320192', '1595262'], ['1675321920', '1592882'], ['1675323648', '1902703'], ['1675325376', '1749528'], ['1675327104', '1848181'], ['1675328832', '1939436'], ['1675330560', '1443588'], ['1675332288', '1861515'], ['1675334016', '2110223'], ['1675335744', '1842995'], ['1675337472', '1374125'], ['1675339200', '1718740'], ['1675340928', '1665297'], ['1675342656', '1425021'], ['1675344384', '1991077'], ['1675346112', '1444718'], ['1675347840', '1873466'], ['1675349568', '1936970'], ['1675351296', '2080810'], ['1675353024', '1736479']], analysis: { rate: 84588800000000, total: 182711574E8 } } }, { type: 'sessions', qq: { values: [['1675180224', '0'], ['1675181952', '31'], ['1675183680', '20'], ['1675185408', '34'], ['1675187136', '74'], ['1675188864', '279'], ['1675190592', '109'], ['1675192320', '29'], ['1675194048', '24'], ['1675195776', '27'], ['1675197504', '17'], ['1675199232', '29'], ['1675200960', '19'], ['1675202688', '22'], ['1675204416', '22'], ['1675206144', '38'], ['1675207872', '36'], ['1675209600', '31'], ['1675211328', '30'], ['1675213056', '24'], ['1675214784', '23'], ['1675216512', '41'], ['1675218240', '24'], ['1675219968', '32'], ['1675221696', '41'], ['1675223424', '51'], ['1675225152', '29'], ['1675226880', '35'], ['1675228608', '24'], ['1675230336', '22'], ['1675232064', '33'], ['1675233792', '31'], ['1675235520', '15'], ['1675237248', '18'], ['1675238976', '24'], ['1675240704', '34'], ['1675242432', '34'], ['1675244160', '30'], ['1675245888', '23'], ['1675247616', '29'], ['1675249344', '27'], ['1675251072', '26'], ['1675252800', '22'], ['1675254528', '27'], ['1675256256', '29'], ['1675257984', '24'], ['1675259712', '34'], ['1675261440', '22'], ['1675263168', '22'], ['1675264896', '22'], ['1675266624', '27'], ['1675268352', '21'], ['1675270080', '30'], ['1675271808', '19'], ['1675273536', '20'], ['1675275264', '20'], ['1675276992', '24'], ['1675278720', '28'], ['1675280448', '31'], ['1675282176', '25'], ['1675283904', '19'], ['1675285632', '31'], ['1675287360', '30'], ['1675289088', '19'], ['1675290816', '32'], ['1675292544', '23'], ['1675294272', '28'], ['1675296000', '29'], ['1675297728', '25'], ['1675299456', '33'], ['1675301184', '26'], ['1675302912', '23'], ['1675304640', '37'], ['1675306368', '24'], ['1675308096', '28'], ['1675309824', '17'], ['1675311552', '15'], ['1675313280', '28'], ['1675315008', '27'], ['1675316736', '29'], ['1675318464', '22'], ['1675320192', '22'], ['1675321920', '25'], ['1675323648', '30'], ['1675325376', '20'], ['1675327104', '28'], ['1675328832', '25'], ['1675330560', '12'], ['1675332288', '34'], ['1675334016', '19'], ['1675335744', '22'], ['1675337472', '31'], ['1675339200', '29'], ['1675340928', '31'], ['1675342656', '23'], ['1675344384', '36'], ['1675346112', '22'], ['1675347840', '25'], ['1675349568', '24'], ['1675351296', '26'], ['1675353024', '16']], analysis: { rate: 0.16, total: 3033.0 } }, douyin: { values: [['1675180224', '0'], ['1675181952', '6307'], ['1675183680', '6702'], ['1675185408', '6756'], ['1675187136', '6828'], ['1675188864', '6497'], ['1675190592', '6185'], ['1675192320', '6583'], ['1675194048', '6532'], ['1675195776', '6740'], ['1675197504', '7292'], ['1675199232', '6741'], ['1675200960', '7047'], ['1675202688', '7131'], ['1675204416', '7279'], ['1675206144', '7196'], ['1675207872', '6783'], ['1675209600', '6854'], ['1675211328', '7270'], ['1675213056', '7356'], ['1675214784', '6577'], ['1675216512', '6797'], ['1675218240', '6803'], ['1675219968', '7000'], ['1675221696', '7003'], ['1675223424', '7239'], ['1675225152', '7020'], ['1675226880', '6913'], ['1675228608', '7101'], ['1675230336', '6999'], ['1675232064', '6962'], ['1675233792', '6751'], ['1675235520', '6536'], ['1675237248', '6941'], ['1675238976', '6415'], ['1675240704', '6791'], ['1675242432', '6908'], ['1675244160', '6860'], ['1675245888', '5950'], ['1675247616', '6232'], ['1675249344', '6511'], ['1675251072', '6425'], ['1675252800', '6286'], ['1675254528', '6372'], ['1675256256', '6196'], ['1675257984', '6540'], ['1675259712', '6727'], ['1675261440', '6848'], ['1675263168', '6384'], ['1675264896', '6558'], ['1675266624', '6920'], ['1675268352', '6138'], ['1675270080', '6483'], ['1675271808', '6787'], ['1675273536', '7100'], ['1675275264', '6471'], ['1675276992', '6572'], ['1675278720', '6853'], ['1675280448', '6651'], ['1675282176', '6495'], ['1675283904', '6561'], ['1675285632', '5679'], ['1675287360', '6804'], ['1675289088', '6701'], ['1675290816', '7207'], ['1675292544', '6823'], ['1675294272', '6503'], ['1675296000', '6936'], ['1675297728', '6897'], ['1675299456', '6850'], ['1675301184', '6706'], ['1675302912', '7029'], ['1675304640', '6323'], ['1675306368', '6737'], ['1675308096', '6051'], ['1675309824', '6497'], ['1675311552', '6195'], ['1675313280', '6366'], ['1675315008', '6814'], ['1675316736', '6815'], ['1675318464', '6703'], ['1675320192', '5984'], ['1675321920', '6553'], ['1675323648', '6695'], ['1675325376', '6797'], ['1675327104', '6273'], ['1675328832', '6351'], ['1675330560', '6805'], ['1675332288', '6460'], ['1675334016', '6957'], ['1675335744', '6849'], ['1675337472', '6486'], ['1675339200', '6635'], ['1675340928', '6558'], ['1675342656', '6865'], ['1675344384', '6716'], ['1675346112', '6258'], ['1675347840', '6677'], ['1675349568', '6991'], ['1675351296', '6307'], ['1675353024', '6618']], analysis: { rate: 30.96, total: 668226.0 } }, kuaishou: { values: [['1675180224', '0'], ['1675181952', '1250'], ['1675183680', '1337'], ['1675185408', '1466'], ['1675187136', '1327'], ['1675188864', '1350'], ['1675190592', '1221'], ['1675192320', '1433'], ['1675194048', '1462'], ['1675195776', '1386'], ['1675197504', '1476'], ['1675199232', '1403'], ['1675200960', '1413'], ['1675202688', '1518'], ['1675204416', '1436'], ['1675206144', '1578'], ['1675207872', '1496'], ['1675209600', '1490'], ['1675211328', '1479'], ['1675213056', '1541'], ['1675214784', '1394'], ['1675216512', '1371'], ['1675218240', '1345'], ['1675219968', '1397'], ['1675221696', '1368'], ['1675223424', '1425'], ['1675225152', '1284'], ['1675226880', '1380'], ['1675228608', '1426'], ['1675230336', '1419'], ['1675232064', '1382'], ['1675233792', '1303'], ['1675235520', '1312'], ['1675237248', '1364'], ['1675238976', '1253'], ['1675240704', '1373'], ['1675242432', '1353'], ['1675244160', '1371'], ['1675245888', '1189'], ['1675247616', '1287'], ['1675249344', '1319'], ['1675251072', '1232'], ['1675252800', '1223'], ['1675254528', '1254'], ['1675256256', '1250'], ['1675257984', '1289'], ['1675259712', '1271'], ['1675261440', '1315'], ['1675263168', '1216'], ['1675264896', '1283'], ['1675266624', '1368'], ['1675268352', '1204'], ['1675270080', '1269'], ['1675271808', '1338'], ['1675273536', '1431'], ['1675275264', '1407'], ['1675276992', '1283'], ['1675278720', '1285'], ['1675280448', '1306'], ['1675282176', '1387'], ['1675283904', '1393'], ['1675285632', '1246'], ['1675287360', '1392'], ['1675289088', '1312'], ['1675290816', '1456'], ['1675292544', '1364'], ['1675294272', '1321'], ['1675296000', '1454'], ['1675297728', '1442'], ['1675299456', '1356'], ['1675301184', '1440'], ['1675302912', '1397'], ['1675304640', '1261'], ['1675306368', '1377'], ['1675308096', '1289'], ['1675309824', '1347'], ['1675311552', '1227'], ['1675313280', '1242'], ['1675315008', '1346'], ['1675316736', '1281'], ['1675318464', '1319'], ['1675320192', '1151'], ['1675321920', '1316'], ['1675323648', '1276'], ['1675325376', '1371'], ['1675327104', '1322'], ['1675328832', '1292'], ['1675330560', '1369'], ['1675332288', '1250'], ['1675334016', '1373'], ['1675335744', '1264'], ['1675337472', '1306'], ['1675339200', '1311'], ['1675340928', '1396'], ['1675342656', '1306'], ['1675344384', '1314'], ['1675346112', '1252'], ['1675347840', '1381'], ['1675349568', '1346'], ['1675351296', '1264'], ['1675353024', '1354']], analysis: { rate: 6.24, total: 134464.0 } }, wechat: { values: [['1675180224', '0'], ['1675181952', '2364'], ['1675183680', '2379'], ['1675185408', '2393'], ['1675187136', '2569'], ['1675188864', '2380'], ['1675190592', '2014'], ['1675192320', '2262'], ['1675194048', '2348'], ['1675195776', '2290'], ['1675197504', '2716'], ['1675199232', '2370'], ['1675200960', '2274'], ['1675202688', '2546'], ['1675204416', '2514'], ['1675206144', '2693'], ['1675207872', '2274'], ['1675209600', '2385'], ['1675211328', '2557'], ['1675213056', '2383'], ['1675214784', '2379'], ['1675216512', '2465'], ['1675218240', '2421'], ['1675219968', '2658'], ['1675221696', '2141'], ['1675223424', '2746'], ['1675225152', '2308'], ['1675226880', '2493'], ['1675228608', '2572'], ['1675230336', '2532'], ['1675232064', '2581'], ['1675233792', '2265'], ['1675235520', '2261'], ['1675237248', '2461'], ['1675238976', '2277'], ['1675240704', '2576'], ['1675242432', '2513'], ['1675244160', '2396'], ['1675245888', '2032'], ['1675247616', '2353'], ['1675249344', '2427'], ['1675251072', '2281'], ['1675252800', '2171'], ['1675254528', '2425'], ['1675256256', '2159'], ['1675257984', '2193'], ['1675259712', '2377'], ['1675261440', '2438'], ['1675263168', '2205'], ['1675264896', '2197'], ['1675266624', '2422'], ['1675268352', '2396'], ['1675270080', '2266'], ['1675271808', '2580'], ['1675273536', '2472'], ['1675275264', '2519'], ['1675276992', '2299'], ['1675278720', '2321'], ['1675280448', '2203'], ['1675282176', '2255'], ['1675283904', '2262'], ['1675285632', '1913'], ['1675287360', '2283'], ['1675289088', '2423'], ['1675290816', '2308'], ['1675292544', '2363'], ['1675294272', '2182'], ['1675296000', '2522'], ['1675297728', '2432'], ['1675299456', '2284'], ['1675301184', '2380'], ['1675302912', '2392'], ['1675304640', '2300'], ['1675306368', '2200'], ['1675308096', '2063'], ['1675309824', '2436'], ['1675311552', '1986'], ['1675313280', '2189'], ['1675315008', '2430'], ['1675316736', '2315'], ['1675318464', '2360'], ['1675320192', '2156'], ['1675321920', '2346'], ['1675323648', '2188'], ['1675325376', '2513'], ['1675327104', '2040'], ['1675328832', '2402'], ['1675330560', '2576'], ['1675332288', '2354'], ['1675334016', '2476'], ['1675335744', '2149'], ['1675337472', '2197'], ['1675339200', '2602'], ['1675340928', '2138'], ['1675342656', '2435'], ['1675344384', '2385'], ['1675346112', '2262'], ['1675347840', '2497'], ['1675349568', '2322'], ['1675351296', '2075'], ['1675353024', '2423']], analysis: { rate: 10.88, total: 235306.0 } } }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20TIME_FLOOR_WITH_FILL%28stat_time%2C%27PT1728S%27%2C%27zero%27%29%20AS%20stat_time%2C%20common_app_label%20AS%20app_label%2C%20SUM%28common_c2s_byte_num%20%2B%20common_s2c_byte_num%29%20AS%20bytes_total%2C%20SUM%28common_c2s_pkt_num%20%2B%20common_s2c_pkt_num%29%20AS%20packets_total%2C%20SUM%28common_sessions%29%20AS%20sessions_total%20FROM%20metric_application%20WHERE%20stat_time%20%3E%3D%20toDateTime%281675180800%29%20AND%20stat_time%20%3C%20toDateTime%281675353599%29%20AND%20common_app_label%20IN%20%28%20%27douyin%27%2C%27kuaishou%27%2C%27qq%27%2C%27wechat%27%20%29%20GROUP%20BY%20stat_time%2Capp_label%20ORDER%20BY%20stat_time%20ASC&format=json&option=real-time', msg: 'OK' } }, - { data: { status: 200, code: 200, data: { resultType: 'object', result: [{ type: 'bytes', Baidu: { rate: 10881251200, total: 23503366121 }, Tencent: { rate: 13817425.76, total: 298454669638 }, Bytedance: { rate: 29791297.68, total: 643488305661 }, Alibaba: { rate: 3822845.52, total: 82572985509 } }, { type: 'packets', Baidu: { rate: 1132.24, total: 24456798 }, Tencent: { rate: 15815.6, total: 341615256 }, Bytedance: { rate: 27681.68, total: 597920164 }, Alibaba: { rate: 4051.04, total: 87502224 } }, { type: 'sessions', Baidu: { rate: 7.36, total: 158507 }, Tencent: { rate: 16.4, total: 355022 }, Bytedance: { rate: 38.56, total: 833195 }, Alibaba: { rate: 24, total: 519104 } }] } } }, - { data: { status: 200, code: 200, data: { resultType: 'object', result: [{ type: 'bytes', Baidu: { values: [['1675180224', '0'], ['1675181952', '186922462'], ['1675183680', '246368399'], ['1675185408', '319109553'], ['1675187136', '304441401'], ['1675188864', '535693636'], ['1675190592', '306487561'], ['1675192320', '179845873'], ['1675194048', '240757575'], ['1675195776', '242490898'], ['1675197504', '266812080'], ['1675199232', '285633401'], ['1675200960', '250783731'], ['1675202688', '202741925'], ['1675204416', '288905564'], ['1675206144', '264733418'], ['1675207872', '170662251'], ['1675209600', '188119952'], ['1675211328', '258930258'], ['1675213056', '211813880'], ['1675214784', '311067410'], ['1675216512', '228958245'], ['1675218240', '203782626'], ['1675219968', '258819386'], ['1675221696', '922311133'], ['1675223424', '274140838'], ['1675225152', '214457186'], ['1675226880', '320938298'], ['1675228608', '223494342'], ['1675230336', '263221725'], ['1675232064', '392156448'], ['1675233792', '209510347'], ['1675235520', '233293822'], ['1675237248', '420123341'], ['1675238976', '500120418'], ['1675240704', '306320387'], ['1675242432', '276800750'], ['1675244160', '246412014'], ['1675245888', '213229410'], ['1675247616', '174621303'], ['1675249344', '167818258'], ['1675251072', '311630640'], ['1675252800', '204026984'], ['1675254528', '248019634'], ['1675256256', '225920989'], ['1675257984', '289571558'], ['1675259712', '260433584'], ['1675261440', '267076409'], ['1675263168', '172960469'], ['1675264896', '187771584'], ['1675266624', '241454724'], ['1675268352', '329752706'], ['1675270080', '288552844'], ['1675271808', '248913131'], ['1675273536', '343099199'], ['1675275264', '279732573'], ['1675276992', '199138635'], ['1675278720', '253584024'], ['1675280448', '186462990'], ['1675282176', '241297490'], ['1675283904', '676915126'], ['1675285632', '238702155'], ['1675287360', '349619952'], ['1675289088', '236809805'], ['1675290816', '236038733'], ['1675292544', '276030570'], ['1675294272', '277516641'], ['1675296000', '211822464'], ['1675297728', '272051733'], ['1675299456', '235388507'], ['1675301184', '319171935'], ['1675302912', '192217920'], ['1675304640', '345455785'], ['1675306368', '319848769'], ['1675308096', '303561695'], ['1675309824', '208942533'], ['1675311552', '272791726'], ['1675313280', '204352308'], ['1675315008', '388846886'], ['1675316736', '339402557'], ['1675318464', '260030322'], ['1675320192', '264913750'], ['1675321920', '268731960'], ['1675323648', '245927219'], ['1675325376', '279881933'], ['1675327104', '311843005'], ['1675328832', '282638902'], ['1675330560', '185391416'], ['1675332288', '251799584'], ['1675334016', '206192986'], ['1675335744', '254411430'], ['1675337472', '599077930'], ['1675339200', '257549224'], ['1675340928', '225861527'], ['1675342656', '198703921'], ['1675344384', '209918478'], ['1675346112', '190463924'], ['1675347840', '254093605'], ['1675349568', '229914017'], ['1675351296', '261381749'], ['1675353024', '174475031']], analysis: { rate: 1269032.4, total: 2.7410941385E10 } }, Tencent: { values: [['1675180224', '0'], ['1675181952', '3364312107'], ['1675183680', '4079983457'], ['1675185408', '3664816581'], ['1675187136', '3901897437'], ['1675188864', '3105742432'], ['1675190592', '3109079773'], ['1675192320', '3634085043'], ['1675194048', '3304598207'], ['1675195776', '3364370975'], ['1675197504', '3679341083'], ['1675199232', '4004654138'], ['1675200960', '5075731596'], ['1675202688', '3350826774'], ['1675204416', '3965120815'], ['1675206144', '3258127210'], ['1675207872', '3579118980'], ['1675209600', '3436901533'], ['1675211328', '3963971268'], ['1675213056', '3524855019'], ['1675214784', '4125745109'], ['1675216512', '4280315838'], ['1675218240', '3329633122'], ['1675219968', '4412688081'], ['1675221696', '3283482365'], ['1675223424', '4468620552'], ['1675225152', '3557179411'], ['1675226880', '3579870652'], ['1675228608', '3670862787'], ['1675230336', '4625969288'], ['1675232064', '3708010075'], ['1675233792', '3244513018'], ['1675235520', '3878415405'], ['1675237248', '4052973978'], ['1675238976', '3691082916'], ['1675240704', '5372688259'], ['1675242432', '3702382171'], ['1675244160', '4219862737'], ['1675245888', '2787825671'], ['1675247616', '4763031990'], ['1675249344', '3516330763'], ['1675251072', '3113829408'], ['1675252800', '3218983906'], ['1675254528', '4173806034'], ['1675256256', '3123724450'], ['1675257984', '3244222065'], ['1675259712', '3707679969'], ['1675261440', '4554164279'], ['1675263168', '3597868330'], ['1675264896', '3677154027'], ['1675266624', '3196518119'], ['1675268352', '4017034040'], ['1675270080', '2951739722'], ['1675271808', '4169564577'], ['1675273536', '3285519344'], ['1675275264', '4539611918'], ['1675276992', '3367141015'], ['1675278720', '4219586671'], ['1675280448', '3643011153'], ['1675282176', '3525034696'], ['1675283904', '3250835967'], ['1675285632', '3734756859'], ['1675287360', '3458799171'], ['1675289088', '3561847920'], ['1675290816', '3832087457'], ['1675292544', '3720294758'], ['1675294272', '3095277835'], ['1675296000', '4171337383'], ['1675297728', '4078122772'], ['1675299456', '3741403940'], ['1675301184', '3894701201'], ['1675302912', '3674186510'], ['1675304640', '3516696930'], ['1675306368', '3943407043'], ['1675308096', '3496006622'], ['1675309824', '4132870839'], ['1675311552', '2927013222'], ['1675313280', '3183796841'], ['1675315008', '3711742824'], ['1675316736', '3747908497'], ['1675318464', '3526464555'], ['1675320192', '3785846721'], ['1675321920', '3796697606'], ['1675323648', '3594162696'], ['1675325376', '4271082440'], ['1675327104', '3308973077'], ['1675328832', '3754503133'], ['1675330560', '4138496845'], ['1675332288', '3412677975'], ['1675334016', '3702495983'], ['1675335744', '3023519646'], ['1675337472', '3131554386'], ['1675339200', '4523013005'], ['1675340928', '3188123380'], ['1675342656', '3753413721'], ['1675344384', '3645320211'], ['1675346112', '3399819129'], ['1675347840', '4205903262'], ['1675349568', '3392709766'], ['1675351296', '3433064810'], ['1675353024', '3759978873']], analysis: { rate: 1.715686448E7, total: 3.7058612815E11 } }, Bytedance: { values: [['1675180224', '0'], ['1675181952', '7369561391'], ['1675183680', '7581865508'], ['1675185408', '7912824524'], ['1675187136', '9032300363'], ['1675188864', '7917531147'], ['1675190592', '7631183906'], ['1675192320', '8246679988'], ['1675194048', '8554299101'], ['1675195776', '7883903079'], ['1675197504', '9031857361'], ['1675199232', '7661890423'], ['1675200960', '8886566417'], ['1675202688', '9019250065'], ['1675204416', '8916375747'], ['1675206144', '8479488817'], ['1675207872', '8219763606'], ['1675209600', '8217171805'], ['1675211328', '8336759307'], ['1675213056', '9353465505'], ['1675214784', '7682132545'], ['1675216512', '8100245348'], ['1675218240', '8100168625'], ['1675219968', '8614738437'], ['1675221696', '8355313295'], ['1675223424', '8951119363'], ['1675225152', '8882541689'], ['1675226880', '8228284971'], ['1675228608', '8291470893'], ['1675230336', '8283731813'], ['1675232064', '8398043347'], ['1675233792', '7973853220'], ['1675235520', '13703005209'], ['1675237248', '8489774773'], ['1675238976', '8259222020'], ['1675240704', '8463042283'], ['1675242432', '8273284467'], ['1675244160', '7625472061'], ['1675245888', '6913302871'], ['1675247616', '7410940675'], ['1675249344', '7824045049'], ['1675251072', '7402226771'], ['1675252800', '8316031061'], ['1675254528', '7813282137'], ['1675256256', '8240617903'], ['1675257984', '7983563297'], ['1675259712', '8494801456'], ['1675261440', '8146768399'], ['1675263168', '8273092765'], ['1675264896', '8029603477'], ['1675266624', '7811366743'], ['1675268352', '7599047914'], ['1675270080', '7739846662'], ['1675271808', '8996551338'], ['1675273536', '8445844664'], ['1675275264', '7643411716'], ['1675276992', '7297063335'], ['1675278720', '7840484023'], ['1675280448', '7895092312'], ['1675282176', '7781709149'], ['1675283904', '8213174770'], ['1675285632', '6948686720'], ['1675287360', '8058979941'], ['1675289088', '7959295076'], ['1675290816', '8342931562'], ['1675292544', '7890729747'], ['1675294272', '8124775981'], ['1675296000', '9073797921'], ['1675297728', '8458548545'], ['1675299456', '8191538286'], ['1675301184', '9051440584'], ['1675302912', '8617530633'], ['1675304640', '7459882915'], ['1675306368', '7712272840'], ['1675308096', '7131792015'], ['1675309824', '8534686770'], ['1675311552', '7032452112'], ['1675313280', '8126943638'], ['1675315008', '7628525105'], ['1675316736', '8179538543'], ['1675318464', '8045196777'], ['1675320192', '6970699521'], ['1675321920', '7634588789'], ['1675323648', '7461903527'], ['1675325376', '8334614663'], ['1675327104', '7947481785'], ['1675328832', '7767817477'], ['1675330560', '7451706424'], ['1675332288', '7851774523'], ['1675334016', '7805064464'], ['1675335744', '8152740246'], ['1675337472', '7345349762'], ['1675339200', '7620051268'], ['1675340928', '7578625871'], ['1675342656', '7432575512'], ['1675344384', '8101138008'], ['1675346112', '6979913422'], ['1675347840', '8055117174'], ['1675349568', '8425690572'], ['1675351296', '7175858020'], ['1675353024', '8582510465']], analysis: { rate: 3.751340312E7, total: 8.1028481811E11 } }, Alibaba: { values: [['1675180224', '0'], ['1675181952', '1152063372'], ['1675183680', '816089654'], ['1675185408', '889381524'], ['1675187136', '1518914261'], ['1675188864', '936045239'], ['1675190592', '890527360'], ['1675192320', '1062813475'], ['1675194048', '893057420'], ['1675195776', '805316139'], ['1675197504', '865817855'], ['1675199232', '1337051022'], ['1675200960', '1323094820'], ['1675202688', '918093022'], ['1675204416', '974409292'], ['1675206144', '1221499013'], ['1675207872', '852239484'], ['1675209600', '1028295137'], ['1675211328', '905035471'], ['1675213056', '1160686881'], ['1675214784', '1066457258'], ['1675216512', '782964312'], ['1675218240', '882604945'], ['1675219968', '861896720'], ['1675221696', '1650609412'], ['1675223424', '1195310046'], ['1675225152', '870859428'], ['1675226880', '971786415'], ['1675228608', '864172496'], ['1675230336', '840337374'], ['1675232064', '1010973454'], ['1675233792', '928181215'], ['1675235520', '1001513720'], ['1675237248', '960498648'], ['1675238976', '1067893630'], ['1675240704', '1438810910'], ['1675242432', '1083718561'], ['1675244160', '920906302'], ['1675245888', '890363120'], ['1675247616', '1118329884'], ['1675249344', '653422905'], ['1675251072', '927813538'], ['1675252800', '937941271'], ['1675254528', '1255903102'], ['1675256256', '883473793'], ['1675257984', '1536384871'], ['1675259712', '869667589'], ['1675261440', '1020451266'], ['1675263168', '861917611'], ['1675264896', '930498335'], ['1675266624', '967959768'], ['1675268352', '823527431'], ['1675270080', '847364141'], ['1675271808', '972941204'], ['1675273536', '986524138'], ['1675275264', '758295795'], ['1675276992', '799931952'], ['1675278720', '928900364'], ['1675280448', '860706729'], ['1675282176', '1331438313'], ['1675283904', '1194277664'], ['1675285632', '971877294'], ['1675287360', '873458218'], ['1675289088', '772449542'], ['1675290816', '1137891669'], ['1675292544', '774151500'], ['1675294272', '1229495516'], ['1675296000', '973689434'], ['1675297728', '1074303268'], ['1675299456', '1107023021'], ['1675301184', '1101332250'], ['1675302912', '1135839078'], ['1675304640', '1399158961'], ['1675306368', '919405551'], ['1675308096', '991916341'], ['1675309824', '918910409'], ['1675311552', '835529341'], ['1675313280', '845288353'], ['1675315008', '889173989'], ['1675316736', '777774217'], ['1675318464', '1000168195'], ['1675320192', '1161465589'], ['1675321920', '1076421226'], ['1675323648', '981676104'], ['1675325376', '1325555966'], ['1675327104', '1696768745'], ['1675328832', '1115038006'], ['1675330560', '958436259'], ['1675332288', '923745960'], ['1675334016', '702238686'], ['1675335744', '923585295'], ['1675337472', '1180442037'], ['1675339200', '1372251737'], ['1675340928', '1230751841'], ['1675342656', '1351630983'], ['1675344384', '1222543360'], ['1675346112', '1049059896'], ['1675347840', '1011820794'], ['1675349568', '833134386'], ['1675351296', '1077473674'], ['1675353024', '1048911408']], analysis: { rate: 4735200.96, total: 1.0227974817E11 } } }, { type: 'packets', Baidu: { values: [['1675180224', '0'], ['1675181952', '223000'], ['1675183680', '265508'], ['1675185408', '350366'], ['1675187136', '310999'], ['1675188864', '510694'], ['1675190592', '308396'], ['1675192320', '203767'], ['1675194048', '255023'], ['1675195776', '255845'], ['1675197504', '287227'], ['1675199232', '292255'], ['1675200960', '270281'], ['1675202688', '241808'], ['1675204416', '294475'], ['1675206144', '279966'], ['1675207872', '200530'], ['1675209600', '231734'], ['1675211328', '287475'], ['1675213056', '235889'], ['1675214784', '333597'], ['1675216512', '239230'], ['1675218240', '226415'], ['1675219968', '275448'], ['1675221696', '831021'], ['1675223424', '286996'], ['1675225152', '236941'], ['1675226880', '345722'], ['1675228608', '251852'], ['1675230336', '281771'], ['1675232064', '406684'], ['1675233792', '226724'], ['1675235520', '247147'], ['1675237248', '407263'], ['1675238976', '475638'], ['1675240704', '314283'], ['1675242432', '283487'], ['1675244160', '272287'], ['1675245888', '227637'], ['1675247616', '209270'], ['1675249344', '194027'], ['1675251072', '309921'], ['1675252800', '227283'], ['1675254528', '269168'], ['1675256256', '257953'], ['1675257984', '289215'], ['1675259712', '276239'], ['1675261440', '269606'], ['1675263168', '194894'], ['1675264896', '212679'], ['1675266624', '251133'], ['1675268352', '327280'], ['1675270080', '304735'], ['1675271808', '249876'], ['1675273536', '338018'], ['1675275264', '293189'], ['1675276992', '216697'], ['1675278720', '255466'], ['1675280448', '214979'], ['1675282176', '246673'], ['1675283904', '576987'], ['1675285632', '247766'], ['1675287360', '395316'], ['1675289088', '256700'], ['1675290816', '261973'], ['1675292544', '285871'], ['1675294272', '295870'], ['1675296000', '244208'], ['1675297728', '292936'], ['1675299456', '268863'], ['1675301184', '324627'], ['1675302912', '215455'], ['1675304640', '346224'], ['1675306368', '336487'], ['1675308096', '307464'], ['1675309824', '233401'], ['1675311552', '272466'], ['1675313280', '222933'], ['1675315008', '403553'], ['1675316736', '328135'], ['1675318464', '277378'], ['1675320192', '275123'], ['1675321920', '294213'], ['1675323648', '282124'], ['1675325376', '316009'], ['1675327104', '319574'], ['1675328832', '284039'], ['1675330560', '215777'], ['1675332288', '260041'], ['1675334016', '232958'], ['1675335744', '270457'], ['1675337472', '589546'], ['1675339200', '293118'], ['1675340928', '252330'], ['1675342656', '226237'], ['1675344384', '232968'], ['1675346112', '205055'], ['1675347840', '267297'], ['1675349568', '243364'], ['1675351296', '298675'], ['1675353024', '196343']], analysis: { rate: 0, total: 28833543E7 } }, Tencent: { values: [['1675180224', '0'], ['1675181952', '3818134'], ['1675183680', '4563920'], ['1675185408', '4132640'], ['1675187136', '4385814'], ['1675188864', '3586636'], ['1675190592', '3504492'], ['1675192320', '4134802'], ['1675194048', '3832888'], ['1675195776', '3864609'], ['1675197504', '4208527'], ['1675199232', '4652086'], ['1675200960', '5709498'], ['1675202688', '3839139'], ['1675204416', '4523660'], ['1675206144', '3659488'], ['1675207872', '4152250'], ['1675209600', '4102703'], ['1675211328', '4533740'], ['1675213056', '4012813'], ['1675214784', '4690927'], ['1675216512', '4919255'], ['1675218240', '3820763'], ['1675219968', '5040527'], ['1675221696', '3675884'], ['1675223424', '5402526'], ['1675225152', '4052783'], ['1675226880', '4058055'], ['1675228608', '4154259'], ['1675230336', '5551875'], ['1675232064', '4246082'], ['1675233792', '3691700'], ['1675235520', '4407249'], ['1675237248', '4579687'], ['1675238976', '4308236'], ['1675240704', '6146600'], ['1675242432', '4267726'], ['1675244160', '4895859'], ['1675245888', '3121889'], ['1675247616', '5703047'], ['1675249344', '4050565'], ['1675251072', '3601406'], ['1675252800', '3689234'], ['1675254528', '4842280'], ['1675256256', '3576063'], ['1675257984', '3717912'], ['1675259712', '4272289'], ['1675261440', '5157266'], ['1675263168', '4171065'], ['1675264896', '4436045'], ['1675266624', '3701600'], ['1675268352', '4597804'], ['1675270080', '3414228'], ['1675271808', '4755984'], ['1675273536', '3751048'], ['1675275264', '5055637'], ['1675276992', '3827549'], ['1675278720', '4837360'], ['1675280448', '4162862'], ['1675282176', '4010427'], ['1675283904', '3688127'], ['1675285632', '4134073'], ['1675287360', '3969197'], ['1675289088', '4069713'], ['1675290816', '4329068'], ['1675292544', '4312185'], ['1675294272', '3469766'], ['1675296000', '4865903'], ['1675297728', '4726677'], ['1675299456', '4227722'], ['1675301184', '4814378'], ['1675302912', '4146704'], ['1675304640', '4013049'], ['1675306368', '5079648'], ['1675308096', '4017690'], ['1675309824', '4692524'], ['1675311552', '3282170'], ['1675313280', '3615970'], ['1675315008', '4284415'], ['1675316736', '4251382'], ['1675318464', '4079501'], ['1675320192', '4306283'], ['1675321920', '4295930'], ['1675323648', '4135408'], ['1675325376', '4797047'], ['1675327104', '3959597'], ['1675328832', '4317743'], ['1675330560', '4789363'], ['1675332288', '3847900'], ['1675334016', '4184459'], ['1675335744', '3418078'], ['1675337472', '3588527'], ['1675339200', '5216648'], ['1675340928', '3616641'], ['1675342656', '4200530'], ['1675344384', '4299724'], ['1675346112', '3842595'], ['1675347840', '4933832'], ['1675349568', '3889067'], ['1675351296', '3877365'], ['1675353024', '4329364']], analysis: { rate: 196990400000000, total: 4.25497355E8 } }, Bytedance: { values: [['1675180224', '0'], ['1675181952', '6799533'], ['1675183680', '7060925'], ['1675185408', '7379460'], ['1675187136', '8301829'], ['1675188864', '7273730'], ['1675190592', '7100779'], ['1675192320', '7752192'], ['1675194048', '7750030'], ['1675195776', '7319904'], ['1675197504', '8290190'], ['1675199232', '7095216'], ['1675200960', '8243937'], ['1675202688', '8306100'], ['1675204416', '8254111'], ['1675206144', '7985829'], ['1675207872', '7638631'], ['1675209600', '7572888'], ['1675211328', '7706519'], ['1675213056', '8679582'], ['1675214784', '7153544'], ['1675216512', '7412147'], ['1675218240', '7590032'], ['1675219968', '7938389'], ['1675221696', '7810497'], ['1675223424', '8432330'], ['1675225152', '8161332'], ['1675226880', '7694075'], ['1675228608', '7682116'], ['1675230336', '7748001'], ['1675232064', '7821867'], ['1675233792', '7729207'], ['1675235520', '11947627'], ['1675237248', '8074533'], ['1675238976', '7806795'], ['1675240704', '7879088'], ['1675242432', '7676938'], ['1675244160', '7130214'], ['1675245888', '6488665'], ['1675247616', '6914394'], ['1675249344', '7332892'], ['1675251072', '6905190'], ['1675252800', '7738099'], ['1675254528', '7244679'], ['1675256256', '7835482'], ['1675257984', '7368797'], ['1675259712', '7812392'], ['1675261440', '7547373'], ['1675263168', '7915780'], ['1675264896', '7490826'], ['1675266624', '7258320'], ['1675268352', '7071557'], ['1675270080', '7269268'], ['1675271808', '8294078'], ['1675273536', '7911350'], ['1675275264', '7071895'], ['1675276992', '6851499'], ['1675278720', '7463798'], ['1675280448', '7319364'], ['1675282176', '7200166'], ['1675283904', '7624110'], ['1675285632', '6484110'], ['1675287360', '7453461'], ['1675289088', '7316779'], ['1675290816', '7768863'], ['1675292544', '7200389'], ['1675294272', '7481637'], ['1675296000', '8573284'], ['1675297728', '7820538'], ['1675299456', '7584761'], ['1675301184', '8417599'], ['1675302912', '8099749'], ['1675304640', '6898692'], ['1675306368', '7197094'], ['1675308096', '6690452'], ['1675309824', '7875615'], ['1675311552', '6586706'], ['1675313280', '7562808'], ['1675315008', '7089669'], ['1675316736', '7616459'], ['1675318464', '7440240'], ['1675320192', '6393045'], ['1675321920', '7136052'], ['1675323648', '6910672'], ['1675325376', '7761117'], ['1675327104', '7337632'], ['1675328832', '7169969'], ['1675330560', '6931424'], ['1675332288', '7250827'], ['1675334016', '7287014'], ['1675335744', '7587844'], ['1675337472', '6816941'], ['1675339200', '7072447'], ['1675340928', '7084394'], ['1675342656', '6866922'], ['1675344384', '7453057'], ['1675346112', '6575739'], ['1675347840', '7473871'], ['1675349568', '7823227'], ['1675351296', '6794326'], ['1675353024', '8025933']], analysis: { rate: 0, total: 753041449E8 } }, Alibaba: { values: [['1675180224', '0'], ['1675181952', '1194824'], ['1675183680', '874520'], ['1675185408', '978698'], ['1675187136', '1545349'], ['1675188864', '995660'], ['1675190592', '964558'], ['1675192320', '1132357'], ['1675194048', '933975'], ['1675195776', '872689'], ['1675197504', '954165'], ['1675199232', '1330184'], ['1675200960', '1383990'], ['1675202688', '979732'], ['1675204416', '1120652'], ['1675206144', '1293611'], ['1675207872', '895376'], ['1675209600', '1058540'], ['1675211328', '996617'], ['1675213056', '1285398'], ['1675214784', '1184048'], ['1675216512', '828141'], ['1675218240', '956425'], ['1675219968', '927401'], ['1675221696', '1732940'], ['1675223424', '1255392'], ['1675225152', '942600'], ['1675226880', '1047615'], ['1675228608', '934109'], ['1675230336', '882083'], ['1675232064', '1102657'], ['1675233792', '989123'], ['1675235520', '1078210'], ['1675237248', '1004089'], ['1675238976', '1112246'], ['1675240704', '1357828'], ['1675242432', '1139375'], ['1675244160', '1006102'], ['1675245888', '906401'], ['1675247616', '1160626'], ['1675249344', '717427'], ['1675251072', '979588'], ['1675252800', '984928'], ['1675254528', '1261482'], ['1675256256', '940721'], ['1675257984', '1687111'], ['1675259712', '914218'], ['1675261440', '1050511'], ['1675263168', '950266'], ['1675264896', '997716'], ['1675266624', '1003139'], ['1675268352', '881504'], ['1675270080', '884410'], ['1675271808', '1000046'], ['1675273536', '1058272'], ['1675275264', '830253'], ['1675276992', '869953'], ['1675278720', '1007729'], ['1675280448', '947868'], ['1675282176', '1228764'], ['1675283904', '1206030'], ['1675285632', '1050310'], ['1675287360', '922042'], ['1675289088', '827866'], ['1675290816', '1219546'], ['1675292544', '889108'], ['1675294272', '1221466'], ['1675296000', '1024271'], ['1675297728', '1158810'], ['1675299456', '1158765'], ['1675301184', '1152618'], ['1675302912', '1202723'], ['1675304640', '1451502'], ['1675306368', '957862'], ['1675308096', '1056933'], ['1675309824', '989023'], ['1675311552', '905790'], ['1675313280', '911109'], ['1675315008', '934888'], ['1675316736', '870895'], ['1675318464', '1054094'], ['1675320192', '1181781'], ['1675321920', '1145989'], ['1675323648', '1045330'], ['1675325376', '1403359'], ['1675327104', '1835335'], ['1675328832', '1178441'], ['1675330560', '1039693'], ['1675332288', '981454'], ['1675334016', '769723'], ['1675335744', '987426'], ['1675337472', '1217419'], ['1675339200', '1416718'], ['1675340928', '1317407'], ['1675342656', '1367354'], ['1675344384', '1294205'], ['1675346112', '1051390'], ['1675347840', '1116220'], ['1675349568', '879904'], ['1675351296', '1102655'], ['1675353024', '1129891']], analysis: { rate: 500752, total: 108161557E8 } } }, { type: 'sessions', Baidu: { values: [['1675180224', '0'], ['1675181952', '2045'], ['1675183680', '1954'], ['1675185408', '2133'], ['1675187136', '2110'], ['1675188864', '2060'], ['1675190592', '1923'], ['1675192320', '2101'], ['1675194048', '2039'], ['1675195776', '2082'], ['1675197504', '2080'], ['1675199232', '2059'], ['1675200960', '2054'], ['1675202688', '2197'], ['1675204416', '2154'], ['1675206144', '2252'], ['1675207872', '2155'], ['1675209600', '2116'], ['1675211328', '2145'], ['1675213056', '2212'], ['1675214784', '2121'], ['1675216512', '1874'], ['1675218240', '1899'], ['1675219968', '1910'], ['1675221696', '2065'], ['1675223424', '2075'], ['1675225152', '1924'], ['1675226880', '2037'], ['1675228608', '2128'], ['1675230336', '1964'], ['1675232064', '1982'], ['1675233792', '1964'], ['1675235520', '1963'], ['1675237248', '2045'], ['1675238976', '2166'], ['1675240704', '2040'], ['1675242432', '2082'], ['1675244160', '1898'], ['1675245888', '1845'], ['1675247616', '2016'], ['1675249344', '1940'], ['1675251072', '1850'], ['1675252800', '1974'], ['1675254528', '2060'], ['1675256256', '2070'], ['1675257984', '2018'], ['1675259712', '1920'], ['1675261440', '1844'], ['1675263168', '1872'], ['1675264896', '1738'], ['1675266624', '1920'], ['1675268352', '1810'], ['1675270080', '1923'], ['1675271808', '1890'], ['1675273536', '1862'], ['1675275264', '2070'], ['1675276992', '1897'], ['1675278720', '1917'], ['1675280448', '1943'], ['1675282176', '1883'], ['1675283904', '2095'], ['1675285632', '1850'], ['1675287360', '2139'], ['1675289088', '1987'], ['1675290816', '2228'], ['1675292544', '2032'], ['1675294272', '2219'], ['1675296000', '2241'], ['1675297728', '2188'], ['1675299456', '2230'], ['1675301184', '2031'], ['1675302912', '2058'], ['1675304640', '1921'], ['1675306368', '1832'], ['1675308096', '1668'], ['1675309824', '1833'], ['1675311552', '1792'], ['1675313280', '1793'], ['1675315008', '1901'], ['1675316736', '1752'], ['1675318464', '1858'], ['1675320192', '1740'], ['1675321920', '1826'], ['1675323648', '1966'], ['1675325376', '1927'], ['1675327104', '1981'], ['1675328832', '1954'], ['1675330560', '1733'], ['1675332288', '1758'], ['1675334016', '1900'], ['1675335744', '1898'], ['1675337472', '1890'], ['1675339200', '1986'], ['1675340928', '2070'], ['1675342656', '1963'], ['1675344384', '1944'], ['1675346112', '1858'], ['1675347840', '1990'], ['1675349568', '1978'], ['1675351296', '2108'], ['1675353024', '1876']], analysis: { rate: 9.2, total: 198264.0 } }, Tencent: { values: [['1675180224', '0'], ['1675181952', '4160'], ['1675183680', '4083'], ['1675185408', '4093'], ['1675187136', '4451'], ['1675188864', '4512'], ['1675190592', '3742'], ['1675192320', '4244'], ['1675194048', '4253'], ['1675195776', '4279'], ['1675197504', '4939'], ['1675199232', '4171'], ['1675200960', '4387'], ['1675202688', '4622'], ['1675204416', '4475'], ['1675206144', '4626'], ['1675207872', '4229'], ['1675209600', '4338'], ['1675211328', '4460'], ['1675213056', '4329'], ['1675214784', '4605'], ['1675216512', '4549'], ['1675218240', '4514'], ['1675219968', '4797'], ['1675221696', '4822'], ['1675223424', '5130'], ['1675225152', '4586'], ['1675226880', '4598'], ['1675228608', '4867'], ['1675230336', '4666'], ['1675232064', '4783'], ['1675233792', '4255'], ['1675235520', '4168'], ['1675237248', '4250'], ['1675238976', '4008'], ['1675240704', '4517'], ['1675242432', '4226'], ['1675244160', '4085'], ['1675245888', '3583'], ['1675247616', '4062'], ['1675249344', '4120'], ['1675251072', '3765'], ['1675252800', '3811'], ['1675254528', '4096'], ['1675256256', '3880'], ['1675257984', '4416'], ['1675259712', '4364'], ['1675261440', '4347'], ['1675263168', '4279'], ['1675264896', '3914'], ['1675266624', '4422'], ['1675268352', '4189'], ['1675270080', '4180'], ['1675271808', '4505'], ['1675273536', '4504'], ['1675275264', '4560'], ['1675276992', '4234'], ['1675278720', '4241'], ['1675280448', '3834'], ['1675282176', '4208'], ['1675283904', '3993'], ['1675285632', '3594'], ['1675287360', '4235'], ['1675289088', '4100'], ['1675290816', '4481'], ['1675292544', '4852'], ['1675294272', '4473'], ['1675296000', '4467'], ['1675297728', '4529'], ['1675299456', '4335'], ['1675301184', '4385'], ['1675302912', '4452'], ['1675304640', '4570'], ['1675306368', '4463'], ['1675308096', '3981'], ['1675309824', '4338'], ['1675311552', '4032'], ['1675313280', '4292'], ['1675315008', '4494'], ['1675316736', '4300'], ['1675318464', '4781'], ['1675320192', '4240'], ['1675321920', '4651'], ['1675323648', '4682'], ['1675325376', '4630'], ['1675327104', '3965'], ['1675328832', '4295'], ['1675330560', '4559'], ['1675332288', '4316'], ['1675334016', '4281'], ['1675335744', '4326'], ['1675337472', '4476'], ['1675339200', '4688'], ['1675340928', '4199'], ['1675342656', '4440'], ['1675344384', '4481'], ['1675346112', '4403'], ['1675347840', '4563'], ['1675349568', '4580'], ['1675351296', '4591'], ['1675353024', '4252']], analysis: { rate: 20.16, total: 435098.0 } }, Bytedance: { values: [['1675180224', '0'], ['1675181952', '9660'], ['1675183680', '10163'], ['1675185408', '10437'], ['1675187136', '10493'], ['1675188864', '10058'], ['1675190592', '9670'], ['1675192320', '10173'], ['1675194048', '10109'], ['1675195776', '10301'], ['1675197504', '10879'], ['1675199232', '10491'], ['1675200960', '10796'], ['1675202688', '10615'], ['1675204416', '11054'], ['1675206144', '11036'], ['1675207872', '10498'], ['1675209600', '10504'], ['1675211328', '10911'], ['1675213056', '11053'], ['1675214784', '10541'], ['1675216512', '10122'], ['1675218240', '10506'], ['1675219968', '10752'], ['1675221696', '11017'], ['1675223424', '11052'], ['1675225152', '10610'], ['1675226880', '10862'], ['1675228608', '10897'], ['1675230336', '10748'], ['1675232064', '10806'], ['1675233792', '10589'], ['1675235520', '10160'], ['1675237248', '10590'], ['1675238976', '10022'], ['1675240704', '10218'], ['1675242432', '10319'], ['1675244160', '10392'], ['1675245888', '9096'], ['1675247616', '9688'], ['1675249344', '9996'], ['1675251072', '9730'], ['1675252800', '9606'], ['1675254528', '9726'], ['1675256256', '9635'], ['1675257984', '10247'], ['1675259712', '10242'], ['1675261440', '10328'], ['1675263168', '9738'], ['1675264896', '9720'], ['1675266624', '10521'], ['1675268352', '9414'], ['1675270080', '9936'], ['1675271808', '10447'], ['1675273536', '10840'], ['1675275264', '10020'], ['1675276992', '9910'], ['1675278720', '10333'], ['1675280448', '10341'], ['1675282176', '9771'], ['1675283904', '9946'], ['1675285632', '8611'], ['1675287360', '10287'], ['1675289088', '10168'], ['1675290816', '10858'], ['1675292544', '10252'], ['1675294272', '9988'], ['1675296000', '10610'], ['1675297728', '10408'], ['1675299456', '10594'], ['1675301184', '10363'], ['1675302912', '10647'], ['1675304640', '10022'], ['1675306368', '10571'], ['1675308096', '9479'], ['1675309824', '10015'], ['1675311552', '9625'], ['1675313280', '9858'], ['1675315008', '10435'], ['1675316736', '10623'], ['1675318464', '10332'], ['1675320192', '9246'], ['1675321920', '10265'], ['1675323648', '10308'], ['1675325376', '10266'], ['1675327104', '10017'], ['1675328832', '9931'], ['1675330560', '10591'], ['1675332288', '9971'], ['1675334016', '10590'], ['1675335744', '10745'], ['1675337472', '9874'], ['1675339200', '10143'], ['1675340928', '10501'], ['1675342656', '10829'], ['1675344384', '10524'], ['1675346112', '9595'], ['1675347840', '10187'], ['1675349568', '10652'], ['1675351296', '10072'], ['1675353024', '10234']], analysis: { rate: 47.52, total: 1026622.0 } }, Alibaba: { values: [['1675180224', '0'], ['1675181952', '6259'], ['1675183680', '5994'], ['1675185408', '6400'], ['1675187136', '6495'], ['1675188864', '6432'], ['1675190592', '6382'], ['1675192320', '7069'], ['1675194048', '6016'], ['1675195776', '6542'], ['1675197504', '6274'], ['1675199232', '6580'], ['1675200960', '6660'], ['1675202688', '6121'], ['1675204416', '6612'], ['1675206144', '6465'], ['1675207872', '7281'], ['1675209600', '7306'], ['1675211328', '6455'], ['1675213056', '6976'], ['1675214784', '8342'], ['1675216512', '5635'], ['1675218240', '6527'], ['1675219968', '6182'], ['1675221696', '7297'], ['1675223424', '6458'], ['1675225152', '6446'], ['1675226880', '6260'], ['1675228608', '6424'], ['1675230336', '6584'], ['1675232064', '6260'], ['1675233792', '7646'], ['1675235520', '6740'], ['1675237248', '6407'], ['1675238976', '6809'], ['1675240704', '5862'], ['1675242432', '6052'], ['1675244160', '6395'], ['1675245888', '5817'], ['1675247616', '5452'], ['1675249344', '5573'], ['1675251072', '5614'], ['1675252800', '6100'], ['1675254528', '6085'], ['1675256256', '6413'], ['1675257984', '8435'], ['1675259712', '5928'], ['1675261440', '6034'], ['1675263168', '6818'], ['1675264896', '5718'], ['1675266624', '5842'], ['1675268352', '5789'], ['1675270080', '6738'], ['1675271808', '6023'], ['1675273536', '6160'], ['1675275264', '6088'], ['1675276992', '6252'], ['1675278720', '6782'], ['1675280448', '6569'], ['1675282176', '6028'], ['1675283904', '6243'], ['1675285632', '5515'], ['1675287360', '6350'], ['1675289088', '5872'], ['1675290816', '6445'], ['1675292544', '6173'], ['1675294272', '6579'], ['1675296000', '6547'], ['1675297728', '6635'], ['1675299456', '7510'], ['1675301184', '7063'], ['1675302912', '6524'], ['1675304640', '7073'], ['1675306368', '7444'], ['1675308096', '6280'], ['1675309824', '5793'], ['1675311552', '6172'], ['1675313280', '6252'], ['1675315008', '5648'], ['1675316736', '6324'], ['1675318464', '6242'], ['1675320192', '5861'], ['1675321920', '6722'], ['1675323648', '6581'], ['1675325376', '6184'], ['1675327104', '7407'], ['1675328832', '7587'], ['1675330560', '5659'], ['1675332288', '6138'], ['1675334016', '5978'], ['1675335744', '6513'], ['1675337472', '6154'], ['1675339200', '5983'], ['1675340928', '6780'], ['1675342656', '6356'], ['1675344384', '6301'], ['1675346112', '5765'], ['1675347840', '6199'], ['1675349568', '6272'], ['1675351296', '7894'], ['1675353024', '6256']], analysis: { rate: '', total: '' } } }] } } }, - { data: { code: 200, data: { total: 31, pageSize: 24, pages: 2, pageNo: 1, list: [{ id: 5568, name: '供应商', type: 'overviewProvide', code: '1', value: 'Alibaba', sort: 0, remark: 'Alibaba Group Holding Limited, also known as Alibaba, is a Chinese multinational technology company specializing in e-commerce, retail, Internet, and technology.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5569, name: '供应商', type: 'overviewProvide', code: '1', value: 'Tencent', sort: 0, remark: 'Tencent Holdings Ltd. is a Chinese multinational technology and entertainment conglomerate and holding company headquartered in Shenzhen. It is one of the highest grossing multimedia companies in the world based on revenue.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5570, name: '供应商', type: 'overviewProvide', code: '1', value: 'Baidu', sort: 0, remark: "Baidu, Inc. is a Chinese multinational technology company specializing in Internet-related services and products and artificial intelligence, headquartered in Beijing's Haidian District. It is one of the largest AI and Internet companies in the world.", uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5571, name: '供应商', type: 'overviewProvide', code: '1', value: 'Jingdong', sort: 0, remark: 'JD.com, Inc., also known as Jingdong and formerly called 360buy, is a Chinese e-commerce company headquartered in Beijing. It is one of the two massive B2C online retailers in China by transaction volume and revenue, a member of the Fortune Global 500 and a major competitor to Alibaba-run Tmall.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5572, name: '供应商', type: 'overviewProvide', code: '1', value: 'Meituan', sort: 0, remark: 'Meituan operates as a web based shopping platform for locally found consumer products and retail services. The Company offers deals of the day by selling vouchers on local services and entertainment, dining, delivery, and other services. Meituan provides its services throughout China.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5573, name: '供应商', type: 'overviewProvide', code: '1', value: 'Bytedance', sort: 0, remark: 'ByteDance Ltd. is a Chinese multinational internet technology company headquartered in Beijing and incorporated in the Cayman Islands.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5574, name: '供应商', type: 'overviewProvide', code: '1', value: 'Pinduoduo', sort: 0, remark: 'Pinduoduo Inc. is the largest Chinese agricultural-focused technology platform. It has created a platform that connects farmers and distributors with consumers directly through its interactive shopping experience.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5575, name: '供应商', type: 'overviewProvide', code: '1', value: 'Netease', sort: 0, remark: 'NetEase, Inc. is a Chinese Internet technology company providing online services centered on content, community, communications, and commerce.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5576, name: '供应商', type: 'overviewProvide', code: '1', value: 'Kuaishou', sort: 0, remark: "Kuaishou is a video-sharing mobile app that is developed by Beijing Kuaishou Technology Co., Ltd. It is popular with users outside China's Tier 1 cities.", uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5577, name: '供应商', type: 'overviewProvide', code: '1', value: '360cn', sort: 0, remark: 'Qihoo 360, full name Qihoo 360 Technology Co. Ltd., is a Chinese internet security company that has developed the antivirus software programs 360 Safeguard and 360 Mobile Safe, the Web browser 360 Secure Browser, and the mobile application store 360 Mobile Assistant.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5578, name: '供应商', type: 'overviewProvide', code: '1', value: 'Xiaomi', sort: 0, remark: 'Xiaomi Corporation, commonly known as Xiaomi and registered in Asia as Xiaomi Inc., is a Chinese designer and manufacturer of consumer electronics and related software, home appliances, and household items.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5579, name: '供应商', type: 'overviewProvide', code: '1', value: 'Sina', sort: 0, remark: 'Sina Corporation is a Chinese technology company. Sina operates four major business lines: Sina Weibo, Sina Mobile, Sina Online, and Sinanet. Sina has over 100 million registered users worldwide. ', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5580, name: '供应商', type: 'overviewProvide', code: '1', value: 'Huawei', sort: 0, remark: 'Huawei Technologies Co., Ltd. is a Chinese multinational technology corporation headquartered in Shenzhen, Guangdong, China. It designs, develops, produces and sells telecommunications equipment, consumer electronics and various smart devices.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5581, name: '供应商', type: 'overviewProvide', code: '1', value: 'Beike', sort: 0, remark: 'KE Holdings Inc is a China-based holding company engaged in housing transactions and related services.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5582, name: '供应商', type: 'overviewProvide', code: '1', value: 'Aiqiyi', sort: 0, remark: 'iQIYI, Inc. is an innovative market-leading online entertainment service in China.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5583, name: '供应商', type: 'overviewProvide', code: '1', value: 'Ctrip', sort: 0, remark: 'Trip.com Group Limited is a Chinese multinational online travel company that provides services including accommodation reservation, transportation ticketing, packaged tours and corporate travel management.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5584, name: '供应商', type: 'overviewProvide', code: '1', value: 'Sohu', sort: 0, remark: 'Sohu, Inc. is a Chinese Internet company headquartered in the Sohu Internet Plaza in Haidian District, Beijing.[4][5] Sohu and its subsidiaries offer advertising, a search engine (Sogou.com), on-line multiplayer gaming (ChangYou.com) and other services.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5585, name: '供应商', type: 'overviewProvide', code: '1', value: 'YY', sort: 0, remark: 'YY is a major Chinese video-based social network, a subsidiary of JOYY.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5586, name: '供应商', type: 'overviewProvide', code: '1', value: 'Xiaohongshu', sort: 0, remark: 'Xiaohongshu, also known as Little Red Book is a social media and e-commerce platform. ', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5587, name: '供应商', type: 'overviewProvide', code: '1', value: 'Apple', sort: 0, remark: 'Apple Inc. is an American multinational technology company that specializes in consumer electronics, software and online services headquartered in Cupertino, California, United States.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5588, name: '供应商', type: 'overviewProvide', code: '1', value: 'Microsoft', sort: 0, remark: 'Microsoft Corporation is an American multinational technology corporation which produces computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washington, United States.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5589, name: '供应商', type: 'overviewProvide', code: '1', value: 'Steam', sort: 0, remark: 'Steam parent company Valve has enjoyed enormous success as a game developer, thanks to titles like Half-Life, Counter-Strike: Global Offensive, and Dota 2.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5590, name: '供应商', type: 'overviewProvide', code: '1', value: 'Cibn', sort: 0, remark: 'China International Radio and Television Network (CIBN for short) is a new media international communication platform established by China Radio International.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5591, name: '供应商', type: 'overviewProvide', code: '1', value: 'Amazon', sort: 0, remark: 'Amazon.com, Inc. is an American multinational technology company which focuses on e-commerce, cloud computing, digital streaming, and artificial intelligence.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }] }, time: '2023-02-06 01:39:14', message: 'success' } }, - { data: { code: 200, data: { total: 3493, pageSize: 24, pages: 146, pageNo: 1, list: [{ id: 2304, name: '应用名', type: 'overviewApp', code: '1', value: 'avoidr', sort: 0, remark: 'Avoidr is a free web proxy', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 2560, name: '应用名', type: 'overviewApp', code: '1', value: 'google_translate', sort: 0, remark: 'Google Translate is the Google translation tool', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 2816, name: '应用名', type: 'overviewApp', code: '1', value: 'taobao', sort: 0, remark: 'Taobao is a chinese shopping website', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3072, name: '应用名', type: 'overviewApp', code: '1', value: 'iapp', sort: 0, remark: 'News site about mobile applications', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3328, name: '应用名', type: 'overviewApp', code: '1', value: 'searchnu', sort: 0, remark: 'Browser toolbar search engine', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3584, name: '应用名', type: 'overviewApp', code: '1', value: 'standardmedia', sort: 0, remark: 'Kenyan news portal', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3840, name: '应用名', type: 'overviewApp', code: '1', value: 'mocean', sort: 0, remark: 'MOcean is a advertising agency', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4096, name: '应用名', type: 'overviewApp', code: '1', value: 'elnuevoherald', sort: 0, remark: 'Cuban news portal', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4352, name: '应用名', type: 'overviewApp', code: '1', value: 'millardayo', sort: 0, remark: 'Global news portal in Tanzania', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4608, name: '应用名', type: 'overviewApp', code: '1', value: 'thadinatin', sort: 0, remark: 'Popular infotainment portal in Myanmar', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4864, name: '应用名', type: 'overviewApp', code: '1', value: 'iec104', sort: 0, remark: 'IEC 60870-5-104 protocol (aka IEC 104) is a part of IEC Telecontrol Equipment and Systems Standard IEC 60870-5 that provides a communication profile for sending basic telecontrol messages between two systems in electrical engineering and power system automation', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5120, name: '应用名', type: 'overviewApp', code: '1', value: 'agora_io', sort: 0, remark: 'Agora SDK is a WebRTC framework', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5376, name: '应用名', type: 'overviewApp', code: '1', value: 'LaowangVPN', sort: 0, uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 2305, name: '应用名', type: 'overviewApp', code: '1', value: 'surrogafier', sort: 0, remark: 'Surrogafier is an online proxy provider This protocol plug-in classifies the http traffic to the hosts surrogafierinfo and govfservercom', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 2561, name: '应用名', type: 'overviewApp', code: '1', value: 'gyao', sort: 0, remark: 'GyaO is a video website operated by Yahoo Japan', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 2817, name: '应用名', type: 'overviewApp', code: '1', value: 'cvs', sort: 0, remark: 'The Concurrent Versions System keeps track of all work and all changes in a set of files typically the implementation of a software project and allows several developers to collaborate', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3073, name: '应用名', type: 'overviewApp', code: '1', value: 'ifeng_finance', sort: 0, remark: 'Ifeng finance news portal', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3329, name: '应用名', type: 'overviewApp', code: '1', value: 'panet', sort: 0, remark: 'News and entertainment web portal', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3585, name: '应用名', type: 'overviewApp', code: '1', value: 'tasweernews', sort: 0, remark: 'Jordanian news portal', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3841, name: '应用名', type: 'overviewApp', code: '1', value: 'turner', sort: 0, remark: 'Turner is a video streaming solution provider for audio/video content web services', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4097, name: '应用名', type: 'overviewApp', code: '1', value: 'listindiario', sort: 0, remark: 'Dominican republic news portal', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4353, name: '应用名', type: 'overviewApp', code: '1', value: 'teletica', sort: 0, remark: 'TV calendar service and news web portal in Costa Rica', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4609, name: '应用名', type: 'overviewApp', code: '1', value: 'torrent9', sort: 0, remark: 'Popular torrent file (P2P) search engine and download web site', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4865, name: '应用名', type: 'overviewApp', code: '1', value: 'vonage_mobile', sort: 0, remark: 'Vonage Mobile is an instant messaging application that provides feature to make landline or international calls', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }] }, time: '2023-02-07 02:12:00', message: 'success' } }, - { data: { code: 200, data: { total: 1, pageSize: 24, pages: 1, pageNo: 1, list: [{ id: 5579, name: '供应商', type: 'overviewProvide', code: '1', value: 'Sina', sort: 0, remark: 'Sina Corporation is a Chinese technology company. Sina operates four major business lines: Sina Weibo, Sina Mobile, Sina Online, and Sinanet. Sina has over 100 million registered users worldwide. ', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }] }, time: '2023-02-07 07:46:05', message: 'success' } }, - { data: { code: 200, data: { total: 1, pageSize: 24, pages: 1, pageNo: 1, list: [{ id: 3072, name: '应用名', type: 'overviewApp', code: '1', value: 'iapp', sort: 0, remark: 'News site about mobile applications', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }] }, time: '2023-02-07 09:37:55', message: 'success' } } + { status: 200, data: { status: 200, code: 200, queryKey: 'd9f5b7769b8c9025354794d6eb053f5c', success: true, message: null, statistics: { elapsed: 8, rows_read: 151581, bytes_read: 9780720, result_size: 364, result_rows: 4 }, job: null, formatType: 'json', meta: [{ name: 'app_label', type: 'string', category: 'Dimension' }, { name: 'bytes_total', type: 'long', category: 'Metric' }, { name: 'packets_total', type: 'long', category: 'Metric' }, { name: 'sessions_total', type: 'long', category: 'Metric' }], data: { resultType: 'object', result: [{ type: 'bytes', qq: { rate: 1010.16, total: 21819167 }, douyin: { rate: '0', total: 589724424997 }, kuaishou: { rate: 7390882.56, total: 159642139901 } }, { type: 'packets', qq: { rate: 2.64, total: 57117 }, douyin: { rate: 250258400000, total: 540554929 }, kuaishou: { rate: 6813.36, total: 147167390 } }, { type: 'sessions', qq: { rate: 0.08, total: 2042 }, douyin: { rate: 2504000000000, total: 541472 }, kuaishou: { rate: 5.04, total: 108589 } }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20common_app_label%20AS%20app_label%2C%20SUM%28common_c2s_byte_num%20%2B%20common_s2c_byte_num%29%20AS%20bytes_total%2C%20SUM%28common_c2s_pkt_num%20%2B%20common_s2c_pkt_num%29%20AS%20packets_total%2C%20SUM%28common_sessions%29%20AS%20sessions_total%20FROM%20metric_application%20WHERE%20stat_time%20%3E%3D%201675180800-172799%20AND%20stat_time%20%3C%201675353599-172799%20AND%20common_app_label%20IN%20%28%20%27douyin%27%2C%27kuaishou%27%2C%27qq%27%2C%27wechat%27%20%29%20GROUP%20BY%20app_label&format=json&option=real-time', msg: 'OK' } }, + { status: 200, data: { status: 200, code: 200, queryKey: '0d6d3c03e630309af3ff000a353145bc', success: true, message: null, statistics: { elapsed: 40, rows_read: 633867, bytes_read: 23030397, result_size: 43140, result_rows: 404 }, job: null, formatType: 'json', meta: [{ name: 'stat_time', type: 'long', category: 'Dimension' }, { name: 'app_label', type: 'string', category: 'Dimension' }, { name: 'bytes_total', type: 'long', category: 'Metric' }, { name: 'packets_total', type: 'long', category: 'Metric' }, { name: 'sessions_total', type: 'long', category: 'Metric' }], data: { resultType: 'object', result: [{ type: 'bytes', qq: { values: [['1675180224', '0'], ['1675181952', '227614'], ['1675183680', '38412'], ['1675185408', '116041'], ['1675187136', '128653'], ['1675188864', '135713'], ['1675190592', '122184'], ['1675192320', '129864'], ['1675194048', '1964603'], ['1675195776', '125529'], ['1675197504', '40230'], ['1675199232', '77972'], ['1675200960', '78289'], ['1675202688', '67906'], ['1675204416', '57945'], ['1675206144', '109257'], ['1675207872', '143575'], ['1675209600', '118119'], ['1675211328', '175533'], ['1675213056', '69095'], ['1675214784', '108809'], ['1675216512', '130300'], ['1675218240', '68447'], ['1675219968', '630788'], ['1675221696', '155681'], ['1675223424', '176030'], ['1675225152', '128553'], ['1675226880', '113247'], ['1675228608', '50118'], ['1675230336', '84248'], ['1675232064', '142975'], ['1675233792', '93655'], ['1675235520', '33835'], ['1675237248', '139744'], ['1675238976', '77275'], ['1675240704', '121832'], ['1675242432', '96674'], ['1675244160', '117739'], ['1675245888', '167341'], ['1675247616', '111160'], ['1675249344', '121214'], ['1675251072', '52357'], ['1675252800', '64871'], ['1675254528', '175765'], ['1675256256', '198280'], ['1675257984', '313557'], ['1675259712', '130227'], ['1675261440', '104428'], ['1675263168', '274705'], ['1675264896', '70431'], ['1675266624', '140682'], ['1675268352', '83156'], ['1675270080', '1294611'], ['1675271808', '62669'], ['1675273536', '95395'], ['1675275264', '65723'], ['1675276992', '100901'], ['1675278720', '79062'], ['1675280448', '169488'], ['1675282176', '129568'], ['1675283904', '53631'], ['1675285632', '97518'], ['1675287360', '119426'], ['1675289088', '52308'], ['1675290816', '1361035'], ['1675292544', '156913'], ['1675294272', '215434'], ['1675296000', '54255'], ['1675297728', '288032'], ['1675299456', '772642'], ['1675301184', '107272'], ['1675302912', '92936'], ['1675304640', '498593'], ['1675306368', '102826'], ['1675308096', '76248'], ['1675309824', '145622'], ['1675311552', '55976'], ['1675313280', '75229'], ['1675315008', '162535'], ['1675316736', '180897'], ['1675318464', '60033'], ['1675320192', '64638'], ['1675321920', '129043'], ['1675323648', '579694'], ['1675325376', '51898'], ['1675327104', '75191'], ['1675328832', '333430'], ['1675330560', '39211'], ['1675332288', '1735358'], ['1675334016', '58490'], ['1675335744', '104864'], ['1675337472', '264375'], ['1675339200', '269080'], ['1675340928', '70592'], ['1675342656', '93411'], ['1675344384', '112441'], ['1675346112', '90449'], ['1675347840', '70863'], ['1675349568', '96436'], ['1675351296', '185547'], ['1675353024', '119575']], analysis: { rate: 910.96, total: 1.9676022E7 } }, douyin: { values: [['1675180224', '0'], ['1675181952', '6840349207'], ['1675183680', '6938901016'], ['1675185408', '7305187539'], ['1675187136', '8188141571'], ['1675188864', '7247690661'], ['1675190592', '6926759120'], ['1675192320', '7380048772'], ['1675194048', '7993802965'], ['1675195776', '6965741583'], ['1675197504', '8346510734'], ['1675199232', '6825635569'], ['1675200960', '8038915184'], ['1675202688', '8477225356'], ['1675204416', '8038673785'], ['1675206144', '7753302399'], ['1675207872', '7465742788'], ['1675209600', '7584210058'], ['1675211328', '7588104529'], ['1675213056', '8582557129'], ['1675214784', '6841255319'], ['1675216512', '7587872713'], ['1675218240', '7466607445'], ['1675219968', '7870624721'], ['1675221696', '7412764966'], ['1675223424', '8223871918'], ['1675225152', '8243945377'], ['1675226880', '7638363700'], ['1675228608', '7540615267'], ['1675230336', '7650851184'], ['1675232064', '7617949860'], ['1675233792', '7329955659'], ['1675235520', '8245178822'], ['1675237248', '7792148620'], ['1675238976', '7534743840'], ['1675240704', '7851088104'], ['1675242432', '7635228927'], ['1675244160', '6951204213'], ['1675245888', '6381170963'], ['1675247616', '6813650211'], ['1675249344', '7076447245'], ['1675251072', '6632590990'], ['1675252800', '7598778382'], ['1675254528', '7116694268'], ['1675256256', '7626461803'], ['1675257984', '7264879741'], ['1675259712', '7752671679'], ['1675261440', '7515853750'], ['1675263168', '7579932467'], ['1675264896', '7486997643'], ['1675266624', '7051686793'], ['1675268352', '6873607777'], ['1675270080', '7164166983'], ['1675271808', '8195989021'], ['1675273536', '7704140177'], ['1675275264', '6922140060'], ['1675276992', '6681666225'], ['1675278720', '7215000735'], ['1675280448', '7308499670'], ['1675282176', '7296427060'], ['1675283904', '7580297764'], ['1675285632', '6448511494'], ['1675287360', '7480200181'], ['1675289088', '7233539573'], ['1675290816', '7604079203'], ['1675292544', '7347409713'], ['1675294272', '7539122424'], ['1675296000', '8268929988'], ['1675297728', '7904603396'], ['1675299456', '7481158268'], ['1675301184', '7979103862'], ['1675302912', '8030132482'], ['1675304640', '6815551453'], ['1675306368', '6998980883'], ['1675308096', '6637269462'], ['1675309824', '7831818720'], ['1675311552', '6318916982'], ['1675313280', '7442258523'], ['1675315008', '7118095146'], ['1675316736', '7402017517'], ['1675318464', '7493982868'], ['1675320192', '6520083159'], ['1675321920', '7032318182'], ['1675323648', '6905781093'], ['1675325376', '7802918848'], ['1675327104', '7176212380'], ['1675328832', '7211668065'], ['1675330560', '6843290032'], ['1675332288', '7283947628'], ['1675334016', '7177682226'], ['1675335744', '7391199988'], ['1675337472', '6754687853'], ['1675339200', '6993139381'], ['1675340928', '6874136769'], ['1675342656', '6783677168'], ['1675344384', '7349291166'], ['1675346112', '6556961502'], ['1675347840', '7491223967'], ['1675349568', '7842238132'], ['1675351296', '6221073616'], ['1675353024', '7242494202']], analysis: { rate: 3.414793976E7, total: 7.37591229522E11 } }, kuaishou: { values: [['1675180224', '0'], ['1675181952', '1868006861'], ['1675183680', '1732168677'], ['1675185408', '2131898696'], ['1675187136', '2063010277'], ['1675188864', '1937537679'], ['1675190592', '1936788154'], ['1675192320', '2112580028'], ['1675194048', '1507654055'], ['1675195776', '2391037476'], ['1675197504', '2299446264'], ['1675199232', '1735303680'], ['1675200960', '1914095622'], ['1675202688', '1631022968'], ['1675204416', '2460019472'], ['1675206144', '1862981044'], ['1675207872', '1928704280'], ['1675209600', '1908009754'], ['1675211328', '1654220896'], ['1675213056', '2077381841'], ['1675214784', '2446500655'], ['1675216512', '2521067191'], ['1675218240', '1898347189'], ['1675219968', '1773018533'], ['1675221696', '1763549248'], ['1675223424', '1987857147'], ['1675225152', '1923607018'], ['1675226880', '2088989063'], ['1675228608', '2282878819'], ['1675230336', '1984472550'], ['1675232064', '1973641852'], ['1675233792', '2171240776'], ['1675235520', '2398440034'], ['1675237248', '1653378142'], ['1675238976', '1706909466'], ['1675240704', '2129291289'], ['1675242432', '1855368544'], ['1675244160', '1749240925'], ['1675245888', '1989494774'], ['1675247616', '1845322089'], ['1675249344', '2654426983'], ['1675251072', '1727183617'], ['1675252800', '1788630455'], ['1675254528', '1752731900'], ['1675256256', '1792192548'], ['1675257984', '2093031894'], ['1675259712', '1647678097'], ['1675261440', '2330265624'], ['1675263168', '1944482494'], ['1675264896', '1803569696'], ['1675266624', '2439742888'], ['1675268352', '3347846376'], ['1675270080', '1505440347'], ['1675271808', '2190442219'], ['1675273536', '1993445094'], ['1675275264', '1902837201'], ['1675276992', '2996332903'], ['1675278720', '1961133544'], ['1675280448', '1928639573'], ['1675282176', '2156986535'], ['1675283904', '1865411850'], ['1675285632', '1817765812'], ['1675287360', '1864996543'], ['1675289088', '1675537740'], ['1675290816', '1961491179'], ['1675292544', '1872641081'], ['1675294272', '1982193032'], ['1675296000', '2438454944'], ['1675297728', '2174619701'], ['1675299456', '1786626737'], ['1675301184', '1834178614'], ['1675302912', '1910990943'], ['1675304640', '2182469866'], ['1675306368', '1865110834'], ['1675308096', '2078719494'], ['1675309824', '2032641504'], ['1675311552', '1972714687'], ['1675313280', '1768457473'], ['1675315008', '1742922515'], ['1675316736', '2271077831'], ['1675318464', '1859973394'], ['1675320192', '1732928389'], ['1675321920', '1719608554'], ['1675323648', '1822114739'], ['1675325376', '1932173415'], ['1675327104', '2063384929'], ['1675328832', '2090741727'], ['1675330560', '1579268455'], ['1675332288', '2046765417'], ['1675334016', '2331961077'], ['1675335744', '2016304838'], ['1675337472', '1492052833'], ['1675339200', '1897359803'], ['1675340928', '1819642960'], ['1675342656', '1533538421'], ['1675344384', '2190655674'], ['1675346112', '1588408379'], ['1675347840', '1979353840'], ['1675349568', '2107484915'], ['1675351296', '2249064595'], ['1675353024', '1920902044']], analysis: { rate: 9181730.64, total: 1.98324233794E11 } } }, { type: 'packets', qq: { values: [['1675180224', '0'], ['1675181952', '606'], ['1675183680', '214'], ['1675185408', '526'], ['1675187136', '658'], ['1675188864', '962'], ['1675190592', '699'], ['1675192320', '497'], ['1675194048', '4134'], ['1675195776', '430'], ['1675197504', '242'], ['1675199232', '429'], ['1675200960', '346'], ['1675202688', '340'], ['1675204416', '337'], ['1675206144', '546'], ['1675207872', '614'], ['1675209600', '540'], ['1675211328', '463'], ['1675213056', '376'], ['1675214784', '451'], ['1675216512', '682'], ['1675218240', '396'], ['1675219968', '1123'], ['1675221696', '736'], ['1675223424', '771'], ['1675225152', '850'], ['1675226880', '569'], ['1675228608', '280'], ['1675230336', '389'], ['1675232064', '695'], ['1675233792', '457'], ['1675235520', '180'], ['1675237248', '487'], ['1675238976', '388'], ['1675240704', '553'], ['1675242432', '454'], ['1675244160', '514'], ['1675245888', '551'], ['1675247616', '446'], ['1675249344', '523'], ['1675251072', '324'], ['1675252800', '338'], ['1675254528', '473'], ['1675256256', '732'], ['1675257984', '649'], ['1675259712', '689'], ['1675261440', '490'], ['1675263168', '735'], ['1675264896', '339'], ['1675266624', '657'], ['1675268352', '383'], ['1675270080', '1747'], ['1675271808', '263'], ['1675273536', '349'], ['1675275264', '316'], ['1675276992', '520'], ['1675278720', '380'], ['1675280448', '486'], ['1675282176', '550'], ['1675283904', '319'], ['1675285632', '478'], ['1675287360', '604'], ['1675289088', '266'], ['1675290816', '1751'], ['1675292544', '416'], ['1675294272', '1045'], ['1675296000', '273'], ['1675297728', '644'], ['1675299456', '1215'], ['1675301184', '507'], ['1675302912', '436'], ['1675304640', '1353'], ['1675306368', '431'], ['1675308096', '409'], ['1675309824', '384'], ['1675311552', '209'], ['1675313280', '399'], ['1675315008', '435'], ['1675316736', '443'], ['1675318464', '241'], ['1675320192', '368'], ['1675321920', '399'], ['1675323648', '1294'], ['1675325376', '300'], ['1675327104', '384'], ['1675328832', '962'], ['1675330560', '234'], ['1675332288', '6718'], ['1675334016', '254'], ['1675335744', '446'], ['1675337472', '615'], ['1675339200', '877'], ['1675340928', '404'], ['1675342656', '548'], ['1675344384', '458'], ['1675346112', '347'], ['1675347840', '354'], ['1675349568', '417'], ['1675351296', '387'], ['1675353024', '441']], analysis: { rate: 2.96, total: 63339.0 } }, douyin: { values: [['1675180224', '0'], ['1675181952', '6197371'], ['1675183680', '6358852'], ['1675185408', '6715754'], ['1675187136', '7436866'], ['1675188864', '6557821'], ['1675190592', '6355871'], ['1675192320', '6859765'], ['1675194048', '7127026'], ['1675195776', '6381159'], ['1675197504', '7567599'], ['1675199232', '6226694'], ['1675200960', '7369356'], ['1675202688', '7712436'], ['1675204416', '7345952'], ['1675206144', '7218586'], ['1675207872', '6839080'], ['1675209600', '6887533'], ['1675211328', '6935752'], ['1675213056', '7890836'], ['1675214784', '6251184'], ['1675216512', '6845634'], ['1675218240', '6892309'], ['1675219968', '7150591'], ['1675221696', '6823704'], ['1675223424', '7646335'], ['1675225152', '7486344'], ['1675226880', '7040943'], ['1675228608', '6899602'], ['1675230336', '7066419'], ['1675232064', '7012961'], ['1675233792', '6734310'], ['1675235520', '7507330'], ['1675237248', '7328470'], ['1675238976', '7038404'], ['1675240704', '7173446'], ['1675242432', '6993118'], ['1675244160', '6410795'], ['1675245888', '5911194'], ['1675247616', '6277144'], ['1675249344', '6534898'], ['1675251072', '6118595'], ['1675252800', '6991938'], ['1675254528', '6519410'], ['1675256256', '7181072'], ['1675257984', '6615763'], ['1675259712', '7021918'], ['1675261440', '6878676'], ['1675263168', '7164503'], ['1675264896', '6874729'], ['1675266624', '6432753'], ['1675268352', '6307274'], ['1675270080', '6647741'], ['1675271808', '7462350'], ['1675273536', '7142099'], ['1675275264', '6328964'], ['1675276992', '6183940'], ['1675278720', '6791555'], ['1675280448', '6685349'], ['1675282176', '6661602'], ['1675283904', '6946903'], ['1675285632', '5897413'], ['1675287360', '6805796'], ['1675289088', '6568242'], ['1675290816', '7007823'], ['1675292544', '6610019'], ['1675294272', '6858170'], ['1675296000', '7744211'], ['1675297728', '7208221'], ['1675299456', '6815118'], ['1675301184', '7357640'], ['1675302912', '7459213'], ['1675304640', '6214814'], ['1675306368', '6458755'], ['1675308096', '6134159'], ['1675309824', '7139250'], ['1675311552', '5874017'], ['1675313280', '6848695'], ['1675315008', '6519852'], ['1675316736', '6777270'], ['1675318464', '6846661'], ['1675320192', '5884151'], ['1675321920', '6489480'], ['1675323648', '6293153'], ['1675325376', '7195451'], ['1675327104', '6517878'], ['1675328832', '6551928'], ['1675330560', '6274616'], ['1675332288', '6631027'], ['1675334016', '6614058'], ['1675335744', '6771588'], ['1675337472', '6188863'], ['1675339200', '6427004'], ['1675340928', '6343710'], ['1675342656', '6178169'], ['1675344384', '6657322'], ['1675346112', '6091040'], ['1675347840', '6871382'], ['1675349568', '7173669'], ['1675351296', '5823930'], ['1675353024', '6710423']], analysis: { rate: 31333520000, total: 676800759E8 } }, kuaishou: { values: [['1675180224', '0'], ['1675181952', '1705580'], ['1675183680', '1593727'], ['1675185408', '1946915'], ['1675187136', '1917429'], ['1675188864', '1795867'], ['1675190592', '1767678'], ['1675192320', '1863517'], ['1675194048', '1378238'], ['1675195776', '2133321'], ['1675197504', '2221475'], ['1675199232', '1603668'], ['1675200960', '1738494'], ['1675202688', '1513171'], ['1675204416', '2255791'], ['1675206144', '1716124'], ['1675207872', '1782197'], ['1675209600', '1744454'], ['1675211328', '1554832'], ['1675213056', '1984725'], ['1675214784', '2233360'], ['1675216512', '2297592'], ['1675218240', '1741490'], ['1675219968', '1624499'], ['1675221696', '1630196'], ['1675223424', '1815006'], ['1675225152', '1756123'], ['1675226880', '1899440'], ['1675228608', '2100577'], ['1675230336', '1831805'], ['1675232064', '1819676'], ['1675233792', '1978645'], ['1675235520', '2167573'], ['1675237248', '1557262'], ['1675238976', '1559497'], ['1675240704', '1944289'], ['1675242432', '1674776'], ['1675244160', '1614920'], ['1675245888', '1791181'], ['1675247616', '1675268'], ['1675249344', '2693715'], ['1675251072', '1642608'], ['1675252800', '1644117'], ['1675254528', '1562746'], ['1675256256', '1641479'], ['1675257984', '1935089'], ['1675259712', '1524063'], ['1675261440', '2144236'], ['1675263168', '1744826'], ['1675264896', '1644469'], ['1675266624', '2158417'], ['1675268352', '3294854'], ['1675270080', '1368127'], ['1675271808', '2014564'], ['1675273536', '1810232'], ['1675275264', '1759498'], ['1675276992', '2605599'], ['1675278720', '1780170'], ['1675280448', '1760412'], ['1675282176', '1996901'], ['1675283904', '1750576'], ['1675285632', '1661220'], ['1675287360', '1712123'], ['1675289088', '1536965'], ['1675290816', '1817954'], ['1675292544', '1733340'], ['1675294272', '1790373'], ['1675296000', '2469841'], ['1675297728', '2010199'], ['1675299456', '1642746'], ['1675301184', '1702235'], ['1675302912', '1732882'], ['1675304640', '2004182'], ['1675306368', '1718766'], ['1675308096', '1878088'], ['1675309824', '1969171'], ['1675311552', '1767540'], ['1675313280', '1637693'], ['1675315008', '1596693'], ['1675316736', '2018056'], ['1675318464', '1771415'], ['1675320192', '1595262'], ['1675321920', '1592882'], ['1675323648', '1902703'], ['1675325376', '1749528'], ['1675327104', '1848181'], ['1675328832', '1939436'], ['1675330560', '1443588'], ['1675332288', '1861515'], ['1675334016', '2110223'], ['1675335744', '1842995'], ['1675337472', '1374125'], ['1675339200', '1718740'], ['1675340928', '1665297'], ['1675342656', '1425021'], ['1675344384', '1991077'], ['1675346112', '1444718'], ['1675347840', '1873466'], ['1675349568', '1936970'], ['1675351296', '2080810'], ['1675353024', '1736479']], analysis: { rate: 84588800000000, total: 182711574E8 } } }, { type: 'sessions', qq: { values: [['1675180224', '0'], ['1675181952', '31'], ['1675183680', '20'], ['1675185408', '34'], ['1675187136', '74'], ['1675188864', '279'], ['1675190592', '109'], ['1675192320', '29'], ['1675194048', '24'], ['1675195776', '27'], ['1675197504', '17'], ['1675199232', '29'], ['1675200960', '19'], ['1675202688', '22'], ['1675204416', '22'], ['1675206144', '38'], ['1675207872', '36'], ['1675209600', '31'], ['1675211328', '30'], ['1675213056', '24'], ['1675214784', '23'], ['1675216512', '41'], ['1675218240', '24'], ['1675219968', '32'], ['1675221696', '41'], ['1675223424', '51'], ['1675225152', '29'], ['1675226880', '35'], ['1675228608', '24'], ['1675230336', '22'], ['1675232064', '33'], ['1675233792', '31'], ['1675235520', '15'], ['1675237248', '18'], ['1675238976', '24'], ['1675240704', '34'], ['1675242432', '34'], ['1675244160', '30'], ['1675245888', '23'], ['1675247616', '29'], ['1675249344', '27'], ['1675251072', '26'], ['1675252800', '22'], ['1675254528', '27'], ['1675256256', '29'], ['1675257984', '24'], ['1675259712', '34'], ['1675261440', '22'], ['1675263168', '22'], ['1675264896', '22'], ['1675266624', '27'], ['1675268352', '21'], ['1675270080', '30'], ['1675271808', '19'], ['1675273536', '20'], ['1675275264', '20'], ['1675276992', '24'], ['1675278720', '28'], ['1675280448', '31'], ['1675282176', '25'], ['1675283904', '19'], ['1675285632', '31'], ['1675287360', '30'], ['1675289088', '19'], ['1675290816', '32'], ['1675292544', '23'], ['1675294272', '28'], ['1675296000', '29'], ['1675297728', '25'], ['1675299456', '33'], ['1675301184', '26'], ['1675302912', '23'], ['1675304640', '37'], ['1675306368', '24'], ['1675308096', '28'], ['1675309824', '17'], ['1675311552', '15'], ['1675313280', '28'], ['1675315008', '27'], ['1675316736', '29'], ['1675318464', '22'], ['1675320192', '22'], ['1675321920', '25'], ['1675323648', '30'], ['1675325376', '20'], ['1675327104', '28'], ['1675328832', '25'], ['1675330560', '12'], ['1675332288', '34'], ['1675334016', '19'], ['1675335744', '22'], ['1675337472', '31'], ['1675339200', '29'], ['1675340928', '31'], ['1675342656', '23'], ['1675344384', '36'], ['1675346112', '22'], ['1675347840', '25'], ['1675349568', '24'], ['1675351296', '26'], ['1675353024', '16']], analysis: { rate: 0.16, total: 3033.0 } }, douyin: { values: [['1675180224', '0'], ['1675181952', '6307'], ['1675183680', '6702'], ['1675185408', '6756'], ['1675187136', '6828'], ['1675188864', '6497'], ['1675190592', '6185'], ['1675192320', '6583'], ['1675194048', '6532'], ['1675195776', '6740'], ['1675197504', '7292'], ['1675199232', '6741'], ['1675200960', '7047'], ['1675202688', '7131'], ['1675204416', '7279'], ['1675206144', '7196'], ['1675207872', '6783'], ['1675209600', '6854'], ['1675211328', '7270'], ['1675213056', '7356'], ['1675214784', '6577'], ['1675216512', '6797'], ['1675218240', '6803'], ['1675219968', '7000'], ['1675221696', '7003'], ['1675223424', '7239'], ['1675225152', '7020'], ['1675226880', '6913'], ['1675228608', '7101'], ['1675230336', '6999'], ['1675232064', '6962'], ['1675233792', '6751'], ['1675235520', '6536'], ['1675237248', '6941'], ['1675238976', '6415'], ['1675240704', '6791'], ['1675242432', '6908'], ['1675244160', '6860'], ['1675245888', '5950'], ['1675247616', '6232'], ['1675249344', '6511'], ['1675251072', '6425'], ['1675252800', '6286'], ['1675254528', '6372'], ['1675256256', '6196'], ['1675257984', '6540'], ['1675259712', '6727'], ['1675261440', '6848'], ['1675263168', '6384'], ['1675264896', '6558'], ['1675266624', '6920'], ['1675268352', '6138'], ['1675270080', '6483'], ['1675271808', '6787'], ['1675273536', '7100'], ['1675275264', '6471'], ['1675276992', '6572'], ['1675278720', '6853'], ['1675280448', '6651'], ['1675282176', '6495'], ['1675283904', '6561'], ['1675285632', '5679'], ['1675287360', '6804'], ['1675289088', '6701'], ['1675290816', '7207'], ['1675292544', '6823'], ['1675294272', '6503'], ['1675296000', '6936'], ['1675297728', '6897'], ['1675299456', '6850'], ['1675301184', '6706'], ['1675302912', '7029'], ['1675304640', '6323'], ['1675306368', '6737'], ['1675308096', '6051'], ['1675309824', '6497'], ['1675311552', '6195'], ['1675313280', '6366'], ['1675315008', '6814'], ['1675316736', '6815'], ['1675318464', '6703'], ['1675320192', '5984'], ['1675321920', '6553'], ['1675323648', '6695'], ['1675325376', '6797'], ['1675327104', '6273'], ['1675328832', '6351'], ['1675330560', '6805'], ['1675332288', '6460'], ['1675334016', '6957'], ['1675335744', '6849'], ['1675337472', '6486'], ['1675339200', '6635'], ['1675340928', '6558'], ['1675342656', '6865'], ['1675344384', '6716'], ['1675346112', '6258'], ['1675347840', '6677'], ['1675349568', '6991'], ['1675351296', '6307'], ['1675353024', '6618']], analysis: { rate: 30.96, total: 668226.0 } }, kuaishou: { values: [['1675180224', '0'], ['1675181952', '1250'], ['1675183680', '1337'], ['1675185408', '1466'], ['1675187136', '1327'], ['1675188864', '1350'], ['1675190592', '1221'], ['1675192320', '1433'], ['1675194048', '1462'], ['1675195776', '1386'], ['1675197504', '1476'], ['1675199232', '1403'], ['1675200960', '1413'], ['1675202688', '1518'], ['1675204416', '1436'], ['1675206144', '1578'], ['1675207872', '1496'], ['1675209600', '1490'], ['1675211328', '1479'], ['1675213056', '1541'], ['1675214784', '1394'], ['1675216512', '1371'], ['1675218240', '1345'], ['1675219968', '1397'], ['1675221696', '1368'], ['1675223424', '1425'], ['1675225152', '1284'], ['1675226880', '1380'], ['1675228608', '1426'], ['1675230336', '1419'], ['1675232064', '1382'], ['1675233792', '1303'], ['1675235520', '1312'], ['1675237248', '1364'], ['1675238976', '1253'], ['1675240704', '1373'], ['1675242432', '1353'], ['1675244160', '1371'], ['1675245888', '1189'], ['1675247616', '1287'], ['1675249344', '1319'], ['1675251072', '1232'], ['1675252800', '1223'], ['1675254528', '1254'], ['1675256256', '1250'], ['1675257984', '1289'], ['1675259712', '1271'], ['1675261440', '1315'], ['1675263168', '1216'], ['1675264896', '1283'], ['1675266624', '1368'], ['1675268352', '1204'], ['1675270080', '1269'], ['1675271808', '1338'], ['1675273536', '1431'], ['1675275264', '1407'], ['1675276992', '1283'], ['1675278720', '1285'], ['1675280448', '1306'], ['1675282176', '1387'], ['1675283904', '1393'], ['1675285632', '1246'], ['1675287360', '1392'], ['1675289088', '1312'], ['1675290816', '1456'], ['1675292544', '1364'], ['1675294272', '1321'], ['1675296000', '1454'], ['1675297728', '1442'], ['1675299456', '1356'], ['1675301184', '1440'], ['1675302912', '1397'], ['1675304640', '1261'], ['1675306368', '1377'], ['1675308096', '1289'], ['1675309824', '1347'], ['1675311552', '1227'], ['1675313280', '1242'], ['1675315008', '1346'], ['1675316736', '1281'], ['1675318464', '1319'], ['1675320192', '1151'], ['1675321920', '1316'], ['1675323648', '1276'], ['1675325376', '1371'], ['1675327104', '1322'], ['1675328832', '1292'], ['1675330560', '1369'], ['1675332288', '1250'], ['1675334016', '1373'], ['1675335744', '1264'], ['1675337472', '1306'], ['1675339200', '1311'], ['1675340928', '1396'], ['1675342656', '1306'], ['1675344384', '1314'], ['1675346112', '1252'], ['1675347840', '1381'], ['1675349568', '1346'], ['1675351296', '1264'], ['1675353024', '1354']], analysis: { rate: 6.24, total: 134464.0 } }, wechat: { values: [['1675180224', '0'], ['1675181952', '2364'], ['1675183680', '2379'], ['1675185408', '2393'], ['1675187136', '2569'], ['1675188864', '2380'], ['1675190592', '2014'], ['1675192320', '2262'], ['1675194048', '2348'], ['1675195776', '2290'], ['1675197504', '2716'], ['1675199232', '2370'], ['1675200960', '2274'], ['1675202688', '2546'], ['1675204416', '2514'], ['1675206144', '2693'], ['1675207872', '2274'], ['1675209600', '2385'], ['1675211328', '2557'], ['1675213056', '2383'], ['1675214784', '2379'], ['1675216512', '2465'], ['1675218240', '2421'], ['1675219968', '2658'], ['1675221696', '2141'], ['1675223424', '2746'], ['1675225152', '2308'], ['1675226880', '2493'], ['1675228608', '2572'], ['1675230336', '2532'], ['1675232064', '2581'], ['1675233792', '2265'], ['1675235520', '2261'], ['1675237248', '2461'], ['1675238976', '2277'], ['1675240704', '2576'], ['1675242432', '2513'], ['1675244160', '2396'], ['1675245888', '2032'], ['1675247616', '2353'], ['1675249344', '2427'], ['1675251072', '2281'], ['1675252800', '2171'], ['1675254528', '2425'], ['1675256256', '2159'], ['1675257984', '2193'], ['1675259712', '2377'], ['1675261440', '2438'], ['1675263168', '2205'], ['1675264896', '2197'], ['1675266624', '2422'], ['1675268352', '2396'], ['1675270080', '2266'], ['1675271808', '2580'], ['1675273536', '2472'], ['1675275264', '2519'], ['1675276992', '2299'], ['1675278720', '2321'], ['1675280448', '2203'], ['1675282176', '2255'], ['1675283904', '2262'], ['1675285632', '1913'], ['1675287360', '2283'], ['1675289088', '2423'], ['1675290816', '2308'], ['1675292544', '2363'], ['1675294272', '2182'], ['1675296000', '2522'], ['1675297728', '2432'], ['1675299456', '2284'], ['1675301184', '2380'], ['1675302912', '2392'], ['1675304640', '2300'], ['1675306368', '2200'], ['1675308096', '2063'], ['1675309824', '2436'], ['1675311552', '1986'], ['1675313280', '2189'], ['1675315008', '2430'], ['1675316736', '2315'], ['1675318464', '2360'], ['1675320192', '2156'], ['1675321920', '2346'], ['1675323648', '2188'], ['1675325376', '2513'], ['1675327104', '2040'], ['1675328832', '2402'], ['1675330560', '2576'], ['1675332288', '2354'], ['1675334016', '2476'], ['1675335744', '2149'], ['1675337472', '2197'], ['1675339200', '2602'], ['1675340928', '2138'], ['1675342656', '2435'], ['1675344384', '2385'], ['1675346112', '2262'], ['1675347840', '2497'], ['1675349568', '2322'], ['1675351296', '2075'], ['1675353024', '2423']], analysis: { rate: 10.88, total: 235306.0 } } }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20TIME_FLOOR_WITH_FILL%28stat_time%2C%27PT1728S%27%2C%27zero%27%29%20AS%20stat_time%2C%20common_app_label%20AS%20app_label%2C%20SUM%28common_c2s_byte_num%20%2B%20common_s2c_byte_num%29%20AS%20bytes_total%2C%20SUM%28common_c2s_pkt_num%20%2B%20common_s2c_pkt_num%29%20AS%20packets_total%2C%20SUM%28common_sessions%29%20AS%20sessions_total%20FROM%20metric_application%20WHERE%20stat_time%20%3E%3D%20toDateTime%281675180800%29%20AND%20stat_time%20%3C%20toDateTime%281675353599%29%20AND%20common_app_label%20IN%20%28%20%27douyin%27%2C%27kuaishou%27%2C%27qq%27%2C%27wechat%27%20%29%20GROUP%20BY%20stat_time%2Capp_label%20ORDER%20BY%20stat_time%20ASC&format=json&option=real-time', msg: 'OK' } }, + { status: 200, data: { status: 200, code: 200, data: { resultType: 'object', result: [{ type: 'bytes', Baidu: { rate: 10881251200, total: 23503366121 }, Tencent: { rate: 13817425.76, total: 298454669638 }, Bytedance: { rate: 29791297.68, total: 643488305661 }, Alibaba: { rate: 3822845.52, total: 82572985509 } }, { type: 'packets', Baidu: { rate: 1132.24, total: 24456798 }, Tencent: { rate: 15815.6, total: 341615256 }, Bytedance: { rate: 27681.68, total: 597920164 }, Alibaba: { rate: 4051.04, total: 87502224 } }, { type: 'sessions', Baidu: { rate: 7.36, total: 158507 }, Tencent: { rate: 16.4, total: 355022 }, Bytedance: { rate: 38.56, total: 833195 }, Alibaba: { rate: 24, total: 519104 } }] } } }, + { status: 200, data: { status: 200, code: 200, data: { resultType: 'object', result: [{ type: 'bytes', Baidu: { values: [['1675180224', '0'], ['1675181952', '186922462'], ['1675183680', '246368399'], ['1675185408', '319109553'], ['1675187136', '304441401'], ['1675188864', '535693636'], ['1675190592', '306487561'], ['1675192320', '179845873'], ['1675194048', '240757575'], ['1675195776', '242490898'], ['1675197504', '266812080'], ['1675199232', '285633401'], ['1675200960', '250783731'], ['1675202688', '202741925'], ['1675204416', '288905564'], ['1675206144', '264733418'], ['1675207872', '170662251'], ['1675209600', '188119952'], ['1675211328', '258930258'], ['1675213056', '211813880'], ['1675214784', '311067410'], ['1675216512', '228958245'], ['1675218240', '203782626'], ['1675219968', '258819386'], ['1675221696', '922311133'], ['1675223424', '274140838'], ['1675225152', '214457186'], ['1675226880', '320938298'], ['1675228608', '223494342'], ['1675230336', '263221725'], ['1675232064', '392156448'], ['1675233792', '209510347'], ['1675235520', '233293822'], ['1675237248', '420123341'], ['1675238976', '500120418'], ['1675240704', '306320387'], ['1675242432', '276800750'], ['1675244160', '246412014'], ['1675245888', '213229410'], ['1675247616', '174621303'], ['1675249344', '167818258'], ['1675251072', '311630640'], ['1675252800', '204026984'], ['1675254528', '248019634'], ['1675256256', '225920989'], ['1675257984', '289571558'], ['1675259712', '260433584'], ['1675261440', '267076409'], ['1675263168', '172960469'], ['1675264896', '187771584'], ['1675266624', '241454724'], ['1675268352', '329752706'], ['1675270080', '288552844'], ['1675271808', '248913131'], ['1675273536', '343099199'], ['1675275264', '279732573'], ['1675276992', '199138635'], ['1675278720', '253584024'], ['1675280448', '186462990'], ['1675282176', '241297490'], ['1675283904', '676915126'], ['1675285632', '238702155'], ['1675287360', '349619952'], ['1675289088', '236809805'], ['1675290816', '236038733'], ['1675292544', '276030570'], ['1675294272', '277516641'], ['1675296000', '211822464'], ['1675297728', '272051733'], ['1675299456', '235388507'], ['1675301184', '319171935'], ['1675302912', '192217920'], ['1675304640', '345455785'], ['1675306368', '319848769'], ['1675308096', '303561695'], ['1675309824', '208942533'], ['1675311552', '272791726'], ['1675313280', '204352308'], ['1675315008', '388846886'], ['1675316736', '339402557'], ['1675318464', '260030322'], ['1675320192', '264913750'], ['1675321920', '268731960'], ['1675323648', '245927219'], ['1675325376', '279881933'], ['1675327104', '311843005'], ['1675328832', '282638902'], ['1675330560', '185391416'], ['1675332288', '251799584'], ['1675334016', '206192986'], ['1675335744', '254411430'], ['1675337472', '599077930'], ['1675339200', '257549224'], ['1675340928', '225861527'], ['1675342656', '198703921'], ['1675344384', '209918478'], ['1675346112', '190463924'], ['1675347840', '254093605'], ['1675349568', '229914017'], ['1675351296', '261381749'], ['1675353024', '174475031']], analysis: { rate: 1269032.4, total: 2.7410941385E10 } }, Tencent: { values: [['1675180224', '0'], ['1675181952', '3364312107'], ['1675183680', '4079983457'], ['1675185408', '3664816581'], ['1675187136', '3901897437'], ['1675188864', '3105742432'], ['1675190592', '3109079773'], ['1675192320', '3634085043'], ['1675194048', '3304598207'], ['1675195776', '3364370975'], ['1675197504', '3679341083'], ['1675199232', '4004654138'], ['1675200960', '5075731596'], ['1675202688', '3350826774'], ['1675204416', '3965120815'], ['1675206144', '3258127210'], ['1675207872', '3579118980'], ['1675209600', '3436901533'], ['1675211328', '3963971268'], ['1675213056', '3524855019'], ['1675214784', '4125745109'], ['1675216512', '4280315838'], ['1675218240', '3329633122'], ['1675219968', '4412688081'], ['1675221696', '3283482365'], ['1675223424', '4468620552'], ['1675225152', '3557179411'], ['1675226880', '3579870652'], ['1675228608', '3670862787'], ['1675230336', '4625969288'], ['1675232064', '3708010075'], ['1675233792', '3244513018'], ['1675235520', '3878415405'], ['1675237248', '4052973978'], ['1675238976', '3691082916'], ['1675240704', '5372688259'], ['1675242432', '3702382171'], ['1675244160', '4219862737'], ['1675245888', '2787825671'], ['1675247616', '4763031990'], ['1675249344', '3516330763'], ['1675251072', '3113829408'], ['1675252800', '3218983906'], ['1675254528', '4173806034'], ['1675256256', '3123724450'], ['1675257984', '3244222065'], ['1675259712', '3707679969'], ['1675261440', '4554164279'], ['1675263168', '3597868330'], ['1675264896', '3677154027'], ['1675266624', '3196518119'], ['1675268352', '4017034040'], ['1675270080', '2951739722'], ['1675271808', '4169564577'], ['1675273536', '3285519344'], ['1675275264', '4539611918'], ['1675276992', '3367141015'], ['1675278720', '4219586671'], ['1675280448', '3643011153'], ['1675282176', '3525034696'], ['1675283904', '3250835967'], ['1675285632', '3734756859'], ['1675287360', '3458799171'], ['1675289088', '3561847920'], ['1675290816', '3832087457'], ['1675292544', '3720294758'], ['1675294272', '3095277835'], ['1675296000', '4171337383'], ['1675297728', '4078122772'], ['1675299456', '3741403940'], ['1675301184', '3894701201'], ['1675302912', '3674186510'], ['1675304640', '3516696930'], ['1675306368', '3943407043'], ['1675308096', '3496006622'], ['1675309824', '4132870839'], ['1675311552', '2927013222'], ['1675313280', '3183796841'], ['1675315008', '3711742824'], ['1675316736', '3747908497'], ['1675318464', '3526464555'], ['1675320192', '3785846721'], ['1675321920', '3796697606'], ['1675323648', '3594162696'], ['1675325376', '4271082440'], ['1675327104', '3308973077'], ['1675328832', '3754503133'], ['1675330560', '4138496845'], ['1675332288', '3412677975'], ['1675334016', '3702495983'], ['1675335744', '3023519646'], ['1675337472', '3131554386'], ['1675339200', '4523013005'], ['1675340928', '3188123380'], ['1675342656', '3753413721'], ['1675344384', '3645320211'], ['1675346112', '3399819129'], ['1675347840', '4205903262'], ['1675349568', '3392709766'], ['1675351296', '3433064810'], ['1675353024', '3759978873']], analysis: { rate: 1.715686448E7, total: 3.7058612815E11 } }, Bytedance: { values: [['1675180224', '0'], ['1675181952', '7369561391'], ['1675183680', '7581865508'], ['1675185408', '7912824524'], ['1675187136', '9032300363'], ['1675188864', '7917531147'], ['1675190592', '7631183906'], ['1675192320', '8246679988'], ['1675194048', '8554299101'], ['1675195776', '7883903079'], ['1675197504', '9031857361'], ['1675199232', '7661890423'], ['1675200960', '8886566417'], ['1675202688', '9019250065'], ['1675204416', '8916375747'], ['1675206144', '8479488817'], ['1675207872', '8219763606'], ['1675209600', '8217171805'], ['1675211328', '8336759307'], ['1675213056', '9353465505'], ['1675214784', '7682132545'], ['1675216512', '8100245348'], ['1675218240', '8100168625'], ['1675219968', '8614738437'], ['1675221696', '8355313295'], ['1675223424', '8951119363'], ['1675225152', '8882541689'], ['1675226880', '8228284971'], ['1675228608', '8291470893'], ['1675230336', '8283731813'], ['1675232064', '8398043347'], ['1675233792', '7973853220'], ['1675235520', '13703005209'], ['1675237248', '8489774773'], ['1675238976', '8259222020'], ['1675240704', '8463042283'], ['1675242432', '8273284467'], ['1675244160', '7625472061'], ['1675245888', '6913302871'], ['1675247616', '7410940675'], ['1675249344', '7824045049'], ['1675251072', '7402226771'], ['1675252800', '8316031061'], ['1675254528', '7813282137'], ['1675256256', '8240617903'], ['1675257984', '7983563297'], ['1675259712', '8494801456'], ['1675261440', '8146768399'], ['1675263168', '8273092765'], ['1675264896', '8029603477'], ['1675266624', '7811366743'], ['1675268352', '7599047914'], ['1675270080', '7739846662'], ['1675271808', '8996551338'], ['1675273536', '8445844664'], ['1675275264', '7643411716'], ['1675276992', '7297063335'], ['1675278720', '7840484023'], ['1675280448', '7895092312'], ['1675282176', '7781709149'], ['1675283904', '8213174770'], ['1675285632', '6948686720'], ['1675287360', '8058979941'], ['1675289088', '7959295076'], ['1675290816', '8342931562'], ['1675292544', '7890729747'], ['1675294272', '8124775981'], ['1675296000', '9073797921'], ['1675297728', '8458548545'], ['1675299456', '8191538286'], ['1675301184', '9051440584'], ['1675302912', '8617530633'], ['1675304640', '7459882915'], ['1675306368', '7712272840'], ['1675308096', '7131792015'], ['1675309824', '8534686770'], ['1675311552', '7032452112'], ['1675313280', '8126943638'], ['1675315008', '7628525105'], ['1675316736', '8179538543'], ['1675318464', '8045196777'], ['1675320192', '6970699521'], ['1675321920', '7634588789'], ['1675323648', '7461903527'], ['1675325376', '8334614663'], ['1675327104', '7947481785'], ['1675328832', '7767817477'], ['1675330560', '7451706424'], ['1675332288', '7851774523'], ['1675334016', '7805064464'], ['1675335744', '8152740246'], ['1675337472', '7345349762'], ['1675339200', '7620051268'], ['1675340928', '7578625871'], ['1675342656', '7432575512'], ['1675344384', '8101138008'], ['1675346112', '6979913422'], ['1675347840', '8055117174'], ['1675349568', '8425690572'], ['1675351296', '7175858020'], ['1675353024', '8582510465']], analysis: { rate: 3.751340312E7, total: 8.1028481811E11 } }, Alibaba: { values: [['1675180224', '0'], ['1675181952', '1152063372'], ['1675183680', '816089654'], ['1675185408', '889381524'], ['1675187136', '1518914261'], ['1675188864', '936045239'], ['1675190592', '890527360'], ['1675192320', '1062813475'], ['1675194048', '893057420'], ['1675195776', '805316139'], ['1675197504', '865817855'], ['1675199232', '1337051022'], ['1675200960', '1323094820'], ['1675202688', '918093022'], ['1675204416', '974409292'], ['1675206144', '1221499013'], ['1675207872', '852239484'], ['1675209600', '1028295137'], ['1675211328', '905035471'], ['1675213056', '1160686881'], ['1675214784', '1066457258'], ['1675216512', '782964312'], ['1675218240', '882604945'], ['1675219968', '861896720'], ['1675221696', '1650609412'], ['1675223424', '1195310046'], ['1675225152', '870859428'], ['1675226880', '971786415'], ['1675228608', '864172496'], ['1675230336', '840337374'], ['1675232064', '1010973454'], ['1675233792', '928181215'], ['1675235520', '1001513720'], ['1675237248', '960498648'], ['1675238976', '1067893630'], ['1675240704', '1438810910'], ['1675242432', '1083718561'], ['1675244160', '920906302'], ['1675245888', '890363120'], ['1675247616', '1118329884'], ['1675249344', '653422905'], ['1675251072', '927813538'], ['1675252800', '937941271'], ['1675254528', '1255903102'], ['1675256256', '883473793'], ['1675257984', '1536384871'], ['1675259712', '869667589'], ['1675261440', '1020451266'], ['1675263168', '861917611'], ['1675264896', '930498335'], ['1675266624', '967959768'], ['1675268352', '823527431'], ['1675270080', '847364141'], ['1675271808', '972941204'], ['1675273536', '986524138'], ['1675275264', '758295795'], ['1675276992', '799931952'], ['1675278720', '928900364'], ['1675280448', '860706729'], ['1675282176', '1331438313'], ['1675283904', '1194277664'], ['1675285632', '971877294'], ['1675287360', '873458218'], ['1675289088', '772449542'], ['1675290816', '1137891669'], ['1675292544', '774151500'], ['1675294272', '1229495516'], ['1675296000', '973689434'], ['1675297728', '1074303268'], ['1675299456', '1107023021'], ['1675301184', '1101332250'], ['1675302912', '1135839078'], ['1675304640', '1399158961'], ['1675306368', '919405551'], ['1675308096', '991916341'], ['1675309824', '918910409'], ['1675311552', '835529341'], ['1675313280', '845288353'], ['1675315008', '889173989'], ['1675316736', '777774217'], ['1675318464', '1000168195'], ['1675320192', '1161465589'], ['1675321920', '1076421226'], ['1675323648', '981676104'], ['1675325376', '1325555966'], ['1675327104', '1696768745'], ['1675328832', '1115038006'], ['1675330560', '958436259'], ['1675332288', '923745960'], ['1675334016', '702238686'], ['1675335744', '923585295'], ['1675337472', '1180442037'], ['1675339200', '1372251737'], ['1675340928', '1230751841'], ['1675342656', '1351630983'], ['1675344384', '1222543360'], ['1675346112', '1049059896'], ['1675347840', '1011820794'], ['1675349568', '833134386'], ['1675351296', '1077473674'], ['1675353024', '1048911408']], analysis: { rate: 4735200.96, total: 1.0227974817E11 } } }, { type: 'packets', Baidu: { values: [['1675180224', '0'], ['1675181952', '223000'], ['1675183680', '265508'], ['1675185408', '350366'], ['1675187136', '310999'], ['1675188864', '510694'], ['1675190592', '308396'], ['1675192320', '203767'], ['1675194048', '255023'], ['1675195776', '255845'], ['1675197504', '287227'], ['1675199232', '292255'], ['1675200960', '270281'], ['1675202688', '241808'], ['1675204416', '294475'], ['1675206144', '279966'], ['1675207872', '200530'], ['1675209600', '231734'], ['1675211328', '287475'], ['1675213056', '235889'], ['1675214784', '333597'], ['1675216512', '239230'], ['1675218240', '226415'], ['1675219968', '275448'], ['1675221696', '831021'], ['1675223424', '286996'], ['1675225152', '236941'], ['1675226880', '345722'], ['1675228608', '251852'], ['1675230336', '281771'], ['1675232064', '406684'], ['1675233792', '226724'], ['1675235520', '247147'], ['1675237248', '407263'], ['1675238976', '475638'], ['1675240704', '314283'], ['1675242432', '283487'], ['1675244160', '272287'], ['1675245888', '227637'], ['1675247616', '209270'], ['1675249344', '194027'], ['1675251072', '309921'], ['1675252800', '227283'], ['1675254528', '269168'], ['1675256256', '257953'], ['1675257984', '289215'], ['1675259712', '276239'], ['1675261440', '269606'], ['1675263168', '194894'], ['1675264896', '212679'], ['1675266624', '251133'], ['1675268352', '327280'], ['1675270080', '304735'], ['1675271808', '249876'], ['1675273536', '338018'], ['1675275264', '293189'], ['1675276992', '216697'], ['1675278720', '255466'], ['1675280448', '214979'], ['1675282176', '246673'], ['1675283904', '576987'], ['1675285632', '247766'], ['1675287360', '395316'], ['1675289088', '256700'], ['1675290816', '261973'], ['1675292544', '285871'], ['1675294272', '295870'], ['1675296000', '244208'], ['1675297728', '292936'], ['1675299456', '268863'], ['1675301184', '324627'], ['1675302912', '215455'], ['1675304640', '346224'], ['1675306368', '336487'], ['1675308096', '307464'], ['1675309824', '233401'], ['1675311552', '272466'], ['1675313280', '222933'], ['1675315008', '403553'], ['1675316736', '328135'], ['1675318464', '277378'], ['1675320192', '275123'], ['1675321920', '294213'], ['1675323648', '282124'], ['1675325376', '316009'], ['1675327104', '319574'], ['1675328832', '284039'], ['1675330560', '215777'], ['1675332288', '260041'], ['1675334016', '232958'], ['1675335744', '270457'], ['1675337472', '589546'], ['1675339200', '293118'], ['1675340928', '252330'], ['1675342656', '226237'], ['1675344384', '232968'], ['1675346112', '205055'], ['1675347840', '267297'], ['1675349568', '243364'], ['1675351296', '298675'], ['1675353024', '196343']], analysis: { rate: 0, total: 28833543E7 } }, Tencent: { values: [['1675180224', '0'], ['1675181952', '3818134'], ['1675183680', '4563920'], ['1675185408', '4132640'], ['1675187136', '4385814'], ['1675188864', '3586636'], ['1675190592', '3504492'], ['1675192320', '4134802'], ['1675194048', '3832888'], ['1675195776', '3864609'], ['1675197504', '4208527'], ['1675199232', '4652086'], ['1675200960', '5709498'], ['1675202688', '3839139'], ['1675204416', '4523660'], ['1675206144', '3659488'], ['1675207872', '4152250'], ['1675209600', '4102703'], ['1675211328', '4533740'], ['1675213056', '4012813'], ['1675214784', '4690927'], ['1675216512', '4919255'], ['1675218240', '3820763'], ['1675219968', '5040527'], ['1675221696', '3675884'], ['1675223424', '5402526'], ['1675225152', '4052783'], ['1675226880', '4058055'], ['1675228608', '4154259'], ['1675230336', '5551875'], ['1675232064', '4246082'], ['1675233792', '3691700'], ['1675235520', '4407249'], ['1675237248', '4579687'], ['1675238976', '4308236'], ['1675240704', '6146600'], ['1675242432', '4267726'], ['1675244160', '4895859'], ['1675245888', '3121889'], ['1675247616', '5703047'], ['1675249344', '4050565'], ['1675251072', '3601406'], ['1675252800', '3689234'], ['1675254528', '4842280'], ['1675256256', '3576063'], ['1675257984', '3717912'], ['1675259712', '4272289'], ['1675261440', '5157266'], ['1675263168', '4171065'], ['1675264896', '4436045'], ['1675266624', '3701600'], ['1675268352', '4597804'], ['1675270080', '3414228'], ['1675271808', '4755984'], ['1675273536', '3751048'], ['1675275264', '5055637'], ['1675276992', '3827549'], ['1675278720', '4837360'], ['1675280448', '4162862'], ['1675282176', '4010427'], ['1675283904', '3688127'], ['1675285632', '4134073'], ['1675287360', '3969197'], ['1675289088', '4069713'], ['1675290816', '4329068'], ['1675292544', '4312185'], ['1675294272', '3469766'], ['1675296000', '4865903'], ['1675297728', '4726677'], ['1675299456', '4227722'], ['1675301184', '4814378'], ['1675302912', '4146704'], ['1675304640', '4013049'], ['1675306368', '5079648'], ['1675308096', '4017690'], ['1675309824', '4692524'], ['1675311552', '3282170'], ['1675313280', '3615970'], ['1675315008', '4284415'], ['1675316736', '4251382'], ['1675318464', '4079501'], ['1675320192', '4306283'], ['1675321920', '4295930'], ['1675323648', '4135408'], ['1675325376', '4797047'], ['1675327104', '3959597'], ['1675328832', '4317743'], ['1675330560', '4789363'], ['1675332288', '3847900'], ['1675334016', '4184459'], ['1675335744', '3418078'], ['1675337472', '3588527'], ['1675339200', '5216648'], ['1675340928', '3616641'], ['1675342656', '4200530'], ['1675344384', '4299724'], ['1675346112', '3842595'], ['1675347840', '4933832'], ['1675349568', '3889067'], ['1675351296', '3877365'], ['1675353024', '4329364']], analysis: { rate: 196990400000000, total: 4.25497355E8 } }, Bytedance: { values: [['1675180224', '0'], ['1675181952', '6799533'], ['1675183680', '7060925'], ['1675185408', '7379460'], ['1675187136', '8301829'], ['1675188864', '7273730'], ['1675190592', '7100779'], ['1675192320', '7752192'], ['1675194048', '7750030'], ['1675195776', '7319904'], ['1675197504', '8290190'], ['1675199232', '7095216'], ['1675200960', '8243937'], ['1675202688', '8306100'], ['1675204416', '8254111'], ['1675206144', '7985829'], ['1675207872', '7638631'], ['1675209600', '7572888'], ['1675211328', '7706519'], ['1675213056', '8679582'], ['1675214784', '7153544'], ['1675216512', '7412147'], ['1675218240', '7590032'], ['1675219968', '7938389'], ['1675221696', '7810497'], ['1675223424', '8432330'], ['1675225152', '8161332'], ['1675226880', '7694075'], ['1675228608', '7682116'], ['1675230336', '7748001'], ['1675232064', '7821867'], ['1675233792', '7729207'], ['1675235520', '11947627'], ['1675237248', '8074533'], ['1675238976', '7806795'], ['1675240704', '7879088'], ['1675242432', '7676938'], ['1675244160', '7130214'], ['1675245888', '6488665'], ['1675247616', '6914394'], ['1675249344', '7332892'], ['1675251072', '6905190'], ['1675252800', '7738099'], ['1675254528', '7244679'], ['1675256256', '7835482'], ['1675257984', '7368797'], ['1675259712', '7812392'], ['1675261440', '7547373'], ['1675263168', '7915780'], ['1675264896', '7490826'], ['1675266624', '7258320'], ['1675268352', '7071557'], ['1675270080', '7269268'], ['1675271808', '8294078'], ['1675273536', '7911350'], ['1675275264', '7071895'], ['1675276992', '6851499'], ['1675278720', '7463798'], ['1675280448', '7319364'], ['1675282176', '7200166'], ['1675283904', '7624110'], ['1675285632', '6484110'], ['1675287360', '7453461'], ['1675289088', '7316779'], ['1675290816', '7768863'], ['1675292544', '7200389'], ['1675294272', '7481637'], ['1675296000', '8573284'], ['1675297728', '7820538'], ['1675299456', '7584761'], ['1675301184', '8417599'], ['1675302912', '8099749'], ['1675304640', '6898692'], ['1675306368', '7197094'], ['1675308096', '6690452'], ['1675309824', '7875615'], ['1675311552', '6586706'], ['1675313280', '7562808'], ['1675315008', '7089669'], ['1675316736', '7616459'], ['1675318464', '7440240'], ['1675320192', '6393045'], ['1675321920', '7136052'], ['1675323648', '6910672'], ['1675325376', '7761117'], ['1675327104', '7337632'], ['1675328832', '7169969'], ['1675330560', '6931424'], ['1675332288', '7250827'], ['1675334016', '7287014'], ['1675335744', '7587844'], ['1675337472', '6816941'], ['1675339200', '7072447'], ['1675340928', '7084394'], ['1675342656', '6866922'], ['1675344384', '7453057'], ['1675346112', '6575739'], ['1675347840', '7473871'], ['1675349568', '7823227'], ['1675351296', '6794326'], ['1675353024', '8025933']], analysis: { rate: 0, total: 753041449E8 } }, Alibaba: { values: [['1675180224', '0'], ['1675181952', '1194824'], ['1675183680', '874520'], ['1675185408', '978698'], ['1675187136', '1545349'], ['1675188864', '995660'], ['1675190592', '964558'], ['1675192320', '1132357'], ['1675194048', '933975'], ['1675195776', '872689'], ['1675197504', '954165'], ['1675199232', '1330184'], ['1675200960', '1383990'], ['1675202688', '979732'], ['1675204416', '1120652'], ['1675206144', '1293611'], ['1675207872', '895376'], ['1675209600', '1058540'], ['1675211328', '996617'], ['1675213056', '1285398'], ['1675214784', '1184048'], ['1675216512', '828141'], ['1675218240', '956425'], ['1675219968', '927401'], ['1675221696', '1732940'], ['1675223424', '1255392'], ['1675225152', '942600'], ['1675226880', '1047615'], ['1675228608', '934109'], ['1675230336', '882083'], ['1675232064', '1102657'], ['1675233792', '989123'], ['1675235520', '1078210'], ['1675237248', '1004089'], ['1675238976', '1112246'], ['1675240704', '1357828'], ['1675242432', '1139375'], ['1675244160', '1006102'], ['1675245888', '906401'], ['1675247616', '1160626'], ['1675249344', '717427'], ['1675251072', '979588'], ['1675252800', '984928'], ['1675254528', '1261482'], ['1675256256', '940721'], ['1675257984', '1687111'], ['1675259712', '914218'], ['1675261440', '1050511'], ['1675263168', '950266'], ['1675264896', '997716'], ['1675266624', '1003139'], ['1675268352', '881504'], ['1675270080', '884410'], ['1675271808', '1000046'], ['1675273536', '1058272'], ['1675275264', '830253'], ['1675276992', '869953'], ['1675278720', '1007729'], ['1675280448', '947868'], ['1675282176', '1228764'], ['1675283904', '1206030'], ['1675285632', '1050310'], ['1675287360', '922042'], ['1675289088', '827866'], ['1675290816', '1219546'], ['1675292544', '889108'], ['1675294272', '1221466'], ['1675296000', '1024271'], ['1675297728', '1158810'], ['1675299456', '1158765'], ['1675301184', '1152618'], ['1675302912', '1202723'], ['1675304640', '1451502'], ['1675306368', '957862'], ['1675308096', '1056933'], ['1675309824', '989023'], ['1675311552', '905790'], ['1675313280', '911109'], ['1675315008', '934888'], ['1675316736', '870895'], ['1675318464', '1054094'], ['1675320192', '1181781'], ['1675321920', '1145989'], ['1675323648', '1045330'], ['1675325376', '1403359'], ['1675327104', '1835335'], ['1675328832', '1178441'], ['1675330560', '1039693'], ['1675332288', '981454'], ['1675334016', '769723'], ['1675335744', '987426'], ['1675337472', '1217419'], ['1675339200', '1416718'], ['1675340928', '1317407'], ['1675342656', '1367354'], ['1675344384', '1294205'], ['1675346112', '1051390'], ['1675347840', '1116220'], ['1675349568', '879904'], ['1675351296', '1102655'], ['1675353024', '1129891']], analysis: { rate: 500752, total: 108161557E8 } } }, { type: 'sessions', Baidu: { values: [['1675180224', '0'], ['1675181952', '2045'], ['1675183680', '1954'], ['1675185408', '2133'], ['1675187136', '2110'], ['1675188864', '2060'], ['1675190592', '1923'], ['1675192320', '2101'], ['1675194048', '2039'], ['1675195776', '2082'], ['1675197504', '2080'], ['1675199232', '2059'], ['1675200960', '2054'], ['1675202688', '2197'], ['1675204416', '2154'], ['1675206144', '2252'], ['1675207872', '2155'], ['1675209600', '2116'], ['1675211328', '2145'], ['1675213056', '2212'], ['1675214784', '2121'], ['1675216512', '1874'], ['1675218240', '1899'], ['1675219968', '1910'], ['1675221696', '2065'], ['1675223424', '2075'], ['1675225152', '1924'], ['1675226880', '2037'], ['1675228608', '2128'], ['1675230336', '1964'], ['1675232064', '1982'], ['1675233792', '1964'], ['1675235520', '1963'], ['1675237248', '2045'], ['1675238976', '2166'], ['1675240704', '2040'], ['1675242432', '2082'], ['1675244160', '1898'], ['1675245888', '1845'], ['1675247616', '2016'], ['1675249344', '1940'], ['1675251072', '1850'], ['1675252800', '1974'], ['1675254528', '2060'], ['1675256256', '2070'], ['1675257984', '2018'], ['1675259712', '1920'], ['1675261440', '1844'], ['1675263168', '1872'], ['1675264896', '1738'], ['1675266624', '1920'], ['1675268352', '1810'], ['1675270080', '1923'], ['1675271808', '1890'], ['1675273536', '1862'], ['1675275264', '2070'], ['1675276992', '1897'], ['1675278720', '1917'], ['1675280448', '1943'], ['1675282176', '1883'], ['1675283904', '2095'], ['1675285632', '1850'], ['1675287360', '2139'], ['1675289088', '1987'], ['1675290816', '2228'], ['1675292544', '2032'], ['1675294272', '2219'], ['1675296000', '2241'], ['1675297728', '2188'], ['1675299456', '2230'], ['1675301184', '2031'], ['1675302912', '2058'], ['1675304640', '1921'], ['1675306368', '1832'], ['1675308096', '1668'], ['1675309824', '1833'], ['1675311552', '1792'], ['1675313280', '1793'], ['1675315008', '1901'], ['1675316736', '1752'], ['1675318464', '1858'], ['1675320192', '1740'], ['1675321920', '1826'], ['1675323648', '1966'], ['1675325376', '1927'], ['1675327104', '1981'], ['1675328832', '1954'], ['1675330560', '1733'], ['1675332288', '1758'], ['1675334016', '1900'], ['1675335744', '1898'], ['1675337472', '1890'], ['1675339200', '1986'], ['1675340928', '2070'], ['1675342656', '1963'], ['1675344384', '1944'], ['1675346112', '1858'], ['1675347840', '1990'], ['1675349568', '1978'], ['1675351296', '2108'], ['1675353024', '1876']], analysis: { rate: 9.2, total: 198264.0 } }, Tencent: { values: [['1675180224', '0'], ['1675181952', '4160'], ['1675183680', '4083'], ['1675185408', '4093'], ['1675187136', '4451'], ['1675188864', '4512'], ['1675190592', '3742'], ['1675192320', '4244'], ['1675194048', '4253'], ['1675195776', '4279'], ['1675197504', '4939'], ['1675199232', '4171'], ['1675200960', '4387'], ['1675202688', '4622'], ['1675204416', '4475'], ['1675206144', '4626'], ['1675207872', '4229'], ['1675209600', '4338'], ['1675211328', '4460'], ['1675213056', '4329'], ['1675214784', '4605'], ['1675216512', '4549'], ['1675218240', '4514'], ['1675219968', '4797'], ['1675221696', '4822'], ['1675223424', '5130'], ['1675225152', '4586'], ['1675226880', '4598'], ['1675228608', '4867'], ['1675230336', '4666'], ['1675232064', '4783'], ['1675233792', '4255'], ['1675235520', '4168'], ['1675237248', '4250'], ['1675238976', '4008'], ['1675240704', '4517'], ['1675242432', '4226'], ['1675244160', '4085'], ['1675245888', '3583'], ['1675247616', '4062'], ['1675249344', '4120'], ['1675251072', '3765'], ['1675252800', '3811'], ['1675254528', '4096'], ['1675256256', '3880'], ['1675257984', '4416'], ['1675259712', '4364'], ['1675261440', '4347'], ['1675263168', '4279'], ['1675264896', '3914'], ['1675266624', '4422'], ['1675268352', '4189'], ['1675270080', '4180'], ['1675271808', '4505'], ['1675273536', '4504'], ['1675275264', '4560'], ['1675276992', '4234'], ['1675278720', '4241'], ['1675280448', '3834'], ['1675282176', '4208'], ['1675283904', '3993'], ['1675285632', '3594'], ['1675287360', '4235'], ['1675289088', '4100'], ['1675290816', '4481'], ['1675292544', '4852'], ['1675294272', '4473'], ['1675296000', '4467'], ['1675297728', '4529'], ['1675299456', '4335'], ['1675301184', '4385'], ['1675302912', '4452'], ['1675304640', '4570'], ['1675306368', '4463'], ['1675308096', '3981'], ['1675309824', '4338'], ['1675311552', '4032'], ['1675313280', '4292'], ['1675315008', '4494'], ['1675316736', '4300'], ['1675318464', '4781'], ['1675320192', '4240'], ['1675321920', '4651'], ['1675323648', '4682'], ['1675325376', '4630'], ['1675327104', '3965'], ['1675328832', '4295'], ['1675330560', '4559'], ['1675332288', '4316'], ['1675334016', '4281'], ['1675335744', '4326'], ['1675337472', '4476'], ['1675339200', '4688'], ['1675340928', '4199'], ['1675342656', '4440'], ['1675344384', '4481'], ['1675346112', '4403'], ['1675347840', '4563'], ['1675349568', '4580'], ['1675351296', '4591'], ['1675353024', '4252']], analysis: { rate: 20.16, total: 435098.0 } }, Bytedance: { values: [['1675180224', '0'], ['1675181952', '9660'], ['1675183680', '10163'], ['1675185408', '10437'], ['1675187136', '10493'], ['1675188864', '10058'], ['1675190592', '9670'], ['1675192320', '10173'], ['1675194048', '10109'], ['1675195776', '10301'], ['1675197504', '10879'], ['1675199232', '10491'], ['1675200960', '10796'], ['1675202688', '10615'], ['1675204416', '11054'], ['1675206144', '11036'], ['1675207872', '10498'], ['1675209600', '10504'], ['1675211328', '10911'], ['1675213056', '11053'], ['1675214784', '10541'], ['1675216512', '10122'], ['1675218240', '10506'], ['1675219968', '10752'], ['1675221696', '11017'], ['1675223424', '11052'], ['1675225152', '10610'], ['1675226880', '10862'], ['1675228608', '10897'], ['1675230336', '10748'], ['1675232064', '10806'], ['1675233792', '10589'], ['1675235520', '10160'], ['1675237248', '10590'], ['1675238976', '10022'], ['1675240704', '10218'], ['1675242432', '10319'], ['1675244160', '10392'], ['1675245888', '9096'], ['1675247616', '9688'], ['1675249344', '9996'], ['1675251072', '9730'], ['1675252800', '9606'], ['1675254528', '9726'], ['1675256256', '9635'], ['1675257984', '10247'], ['1675259712', '10242'], ['1675261440', '10328'], ['1675263168', '9738'], ['1675264896', '9720'], ['1675266624', '10521'], ['1675268352', '9414'], ['1675270080', '9936'], ['1675271808', '10447'], ['1675273536', '10840'], ['1675275264', '10020'], ['1675276992', '9910'], ['1675278720', '10333'], ['1675280448', '10341'], ['1675282176', '9771'], ['1675283904', '9946'], ['1675285632', '8611'], ['1675287360', '10287'], ['1675289088', '10168'], ['1675290816', '10858'], ['1675292544', '10252'], ['1675294272', '9988'], ['1675296000', '10610'], ['1675297728', '10408'], ['1675299456', '10594'], ['1675301184', '10363'], ['1675302912', '10647'], ['1675304640', '10022'], ['1675306368', '10571'], ['1675308096', '9479'], ['1675309824', '10015'], ['1675311552', '9625'], ['1675313280', '9858'], ['1675315008', '10435'], ['1675316736', '10623'], ['1675318464', '10332'], ['1675320192', '9246'], ['1675321920', '10265'], ['1675323648', '10308'], ['1675325376', '10266'], ['1675327104', '10017'], ['1675328832', '9931'], ['1675330560', '10591'], ['1675332288', '9971'], ['1675334016', '10590'], ['1675335744', '10745'], ['1675337472', '9874'], ['1675339200', '10143'], ['1675340928', '10501'], ['1675342656', '10829'], ['1675344384', '10524'], ['1675346112', '9595'], ['1675347840', '10187'], ['1675349568', '10652'], ['1675351296', '10072'], ['1675353024', '10234']], analysis: { rate: 47.52, total: 1026622.0 } }, Alibaba: { values: [['1675180224', '0'], ['1675181952', '6259'], ['1675183680', '5994'], ['1675185408', '6400'], ['1675187136', '6495'], ['1675188864', '6432'], ['1675190592', '6382'], ['1675192320', '7069'], ['1675194048', '6016'], ['1675195776', '6542'], ['1675197504', '6274'], ['1675199232', '6580'], ['1675200960', '6660'], ['1675202688', '6121'], ['1675204416', '6612'], ['1675206144', '6465'], ['1675207872', '7281'], ['1675209600', '7306'], ['1675211328', '6455'], ['1675213056', '6976'], ['1675214784', '8342'], ['1675216512', '5635'], ['1675218240', '6527'], ['1675219968', '6182'], ['1675221696', '7297'], ['1675223424', '6458'], ['1675225152', '6446'], ['1675226880', '6260'], ['1675228608', '6424'], ['1675230336', '6584'], ['1675232064', '6260'], ['1675233792', '7646'], ['1675235520', '6740'], ['1675237248', '6407'], ['1675238976', '6809'], ['1675240704', '5862'], ['1675242432', '6052'], ['1675244160', '6395'], ['1675245888', '5817'], ['1675247616', '5452'], ['1675249344', '5573'], ['1675251072', '5614'], ['1675252800', '6100'], ['1675254528', '6085'], ['1675256256', '6413'], ['1675257984', '8435'], ['1675259712', '5928'], ['1675261440', '6034'], ['1675263168', '6818'], ['1675264896', '5718'], ['1675266624', '5842'], ['1675268352', '5789'], ['1675270080', '6738'], ['1675271808', '6023'], ['1675273536', '6160'], ['1675275264', '6088'], ['1675276992', '6252'], ['1675278720', '6782'], ['1675280448', '6569'], ['1675282176', '6028'], ['1675283904', '6243'], ['1675285632', '5515'], ['1675287360', '6350'], ['1675289088', '5872'], ['1675290816', '6445'], ['1675292544', '6173'], ['1675294272', '6579'], ['1675296000', '6547'], ['1675297728', '6635'], ['1675299456', '7510'], ['1675301184', '7063'], ['1675302912', '6524'], ['1675304640', '7073'], ['1675306368', '7444'], ['1675308096', '6280'], ['1675309824', '5793'], ['1675311552', '6172'], ['1675313280', '6252'], ['1675315008', '5648'], ['1675316736', '6324'], ['1675318464', '6242'], ['1675320192', '5861'], ['1675321920', '6722'], ['1675323648', '6581'], ['1675325376', '6184'], ['1675327104', '7407'], ['1675328832', '7587'], ['1675330560', '5659'], ['1675332288', '6138'], ['1675334016', '5978'], ['1675335744', '6513'], ['1675337472', '6154'], ['1675339200', '5983'], ['1675340928', '6780'], ['1675342656', '6356'], ['1675344384', '6301'], ['1675346112', '5765'], ['1675347840', '6199'], ['1675349568', '6272'], ['1675351296', '7894'], ['1675353024', '6256']], analysis: { rate: '', total: '' } } }] } } }, + { status: 200, data: { status: 200, code: 200, data: { total: 31, pageSize: 24, pages: 2, pageNo: 1, list: [{ id: 5568, name: '供应商', type: 'overviewProvide', code: '1', value: 'Alibaba', sort: 0, remark: 'Alibaba Group Holding Limited, also known as Alibaba, is a Chinese multinational technology company specializing in e-commerce, retail, Internet, and technology.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5569, name: '供应商', type: 'overviewProvide', code: '1', value: 'Tencent', sort: 0, remark: 'Tencent Holdings Ltd. is a Chinese multinational technology and entertainment conglomerate and holding company headquartered in Shenzhen. It is one of the highest grossing multimedia companies in the world based on revenue.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5570, name: '供应商', type: 'overviewProvide', code: '1', value: 'Baidu', sort: 0, remark: "Baidu, Inc. is a Chinese multinational technology company specializing in Internet-related services and products and artificial intelligence, headquartered in Beijing's Haidian District. It is one of the largest AI and Internet companies in the world.", uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5571, name: '供应商', type: 'overviewProvide', code: '1', value: 'Jingdong', sort: 0, remark: 'JD.com, Inc., also known as Jingdong and formerly called 360buy, is a Chinese e-commerce company headquartered in Beijing. It is one of the two massive B2C online retailers in China by transaction volume and revenue, a member of the Fortune Global 500 and a major competitor to Alibaba-run Tmall.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5572, name: '供应商', type: 'overviewProvide', code: '1', value: 'Meituan', sort: 0, remark: 'Meituan operates as a web based shopping platform for locally found consumer products and retail services. The Company offers deals of the day by selling vouchers on local services and entertainment, dining, delivery, and other services. Meituan provides its services throughout China.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5573, name: '供应商', type: 'overviewProvide', code: '1', value: 'Bytedance', sort: 0, remark: 'ByteDance Ltd. is a Chinese multinational internet technology company headquartered in Beijing and incorporated in the Cayman Islands.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5574, name: '供应商', type: 'overviewProvide', code: '1', value: 'Pinduoduo', sort: 0, remark: 'Pinduoduo Inc. is the largest Chinese agricultural-focused technology platform. It has created a platform that connects farmers and distributors with consumers directly through its interactive shopping experience.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5575, name: '供应商', type: 'overviewProvide', code: '1', value: 'Netease', sort: 0, remark: 'NetEase, Inc. is a Chinese Internet technology company providing online services centered on content, community, communications, and commerce.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5576, name: '供应商', type: 'overviewProvide', code: '1', value: 'Kuaishou', sort: 0, remark: "Kuaishou is a video-sharing mobile app that is developed by Beijing Kuaishou Technology Co., Ltd. It is popular with users outside China's Tier 1 cities.", uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5577, name: '供应商', type: 'overviewProvide', code: '1', value: '360cn', sort: 0, remark: 'Qihoo 360, full name Qihoo 360 Technology Co. Ltd., is a Chinese internet security company that has developed the antivirus software programs 360 Safeguard and 360 Mobile Safe, the Web browser 360 Secure Browser, and the mobile application store 360 Mobile Assistant.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5578, name: '供应商', type: 'overviewProvide', code: '1', value: 'Xiaomi', sort: 0, remark: 'Xiaomi Corporation, commonly known as Xiaomi and registered in Asia as Xiaomi Inc., is a Chinese designer and manufacturer of consumer electronics and related software, home appliances, and household items.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5579, name: '供应商', type: 'overviewProvide', code: '1', value: 'Sina', sort: 0, remark: 'Sina Corporation is a Chinese technology company. Sina operates four major business lines: Sina Weibo, Sina Mobile, Sina Online, and Sinanet. Sina has over 100 million registered users worldwide. ', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5580, name: '供应商', type: 'overviewProvide', code: '1', value: 'Huawei', sort: 0, remark: 'Huawei Technologies Co., Ltd. is a Chinese multinational technology corporation headquartered in Shenzhen, Guangdong, China. It designs, develops, produces and sells telecommunications equipment, consumer electronics and various smart devices.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5581, name: '供应商', type: 'overviewProvide', code: '1', value: 'Beike', sort: 0, remark: 'KE Holdings Inc is a China-based holding company engaged in housing transactions and related services.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5582, name: '供应商', type: 'overviewProvide', code: '1', value: 'Aiqiyi', sort: 0, remark: 'iQIYI, Inc. is an innovative market-leading online entertainment service in China.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5583, name: '供应商', type: 'overviewProvide', code: '1', value: 'Ctrip', sort: 0, remark: 'Trip.com Group Limited is a Chinese multinational online travel company that provides services including accommodation reservation, transportation ticketing, packaged tours and corporate travel management.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5584, name: '供应商', type: 'overviewProvide', code: '1', value: 'Sohu', sort: 0, remark: 'Sohu, Inc. is a Chinese Internet company headquartered in the Sohu Internet Plaza in Haidian District, Beijing.[4][5] Sohu and its subsidiaries offer advertising, a search engine (Sogou.com), on-line multiplayer gaming (ChangYou.com) and other services.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5585, name: '供应商', type: 'overviewProvide', code: '1', value: 'YY', sort: 0, remark: 'YY is a major Chinese video-based social network, a subsidiary of JOYY.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5586, name: '供应商', type: 'overviewProvide', code: '1', value: 'Xiaohongshu', sort: 0, remark: 'Xiaohongshu, also known as Little Red Book is a social media and e-commerce platform. ', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5587, name: '供应商', type: 'overviewProvide', code: '1', value: 'Apple', sort: 0, remark: 'Apple Inc. is an American multinational technology company that specializes in consumer electronics, software and online services headquartered in Cupertino, California, United States.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5588, name: '供应商', type: 'overviewProvide', code: '1', value: 'Microsoft', sort: 0, remark: 'Microsoft Corporation is an American multinational technology corporation which produces computer software, consumer electronics, personal computers, and related services headquartered at the Microsoft Redmond campus located in Redmond, Washington, United States.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5589, name: '供应商', type: 'overviewProvide', code: '1', value: 'Steam', sort: 0, remark: 'Steam parent company Valve has enjoyed enormous success as a game developer, thanks to titles like Half-Life, Counter-Strike: Global Offensive, and Dota 2.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5590, name: '供应商', type: 'overviewProvide', code: '1', value: 'Cibn', sort: 0, remark: 'China International Radio and Television Network (CIBN for short) is a new media international communication platform established by China Radio International.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5591, name: '供应商', type: 'overviewProvide', code: '1', value: 'Amazon', sort: 0, remark: 'Amazon.com, Inc. is an American multinational technology company which focuses on e-commerce, cloud computing, digital streaming, and artificial intelligence.', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }] }, time: '2023-02-06 01:39:14', message: 'success' } }, + { status: 200, data: { status: 200, code: 200, data: { total: 3493, pageSize: 24, pages: 146, pageNo: 1, list: [{ id: 2304, name: '应用名', type: 'overviewApp', code: '1', value: 'avoidr', sort: 0, remark: 'Avoidr is a free web proxy', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 2560, name: '应用名', type: 'overviewApp', code: '1', value: 'google_translate', sort: 0, remark: 'Google Translate is the Google translation tool', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 2816, name: '应用名', type: 'overviewApp', code: '1', value: 'taobao', sort: 0, remark: 'Taobao is a chinese shopping website', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3072, name: '应用名', type: 'overviewApp', code: '1', value: 'iapp', sort: 0, remark: 'News site about mobile applications', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3328, name: '应用名', type: 'overviewApp', code: '1', value: 'searchnu', sort: 0, remark: 'Browser toolbar search engine', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3584, name: '应用名', type: 'overviewApp', code: '1', value: 'standardmedia', sort: 0, remark: 'Kenyan news portal', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3840, name: '应用名', type: 'overviewApp', code: '1', value: 'mocean', sort: 0, remark: 'MOcean is a advertising agency', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4096, name: '应用名', type: 'overviewApp', code: '1', value: 'elnuevoherald', sort: 0, remark: 'Cuban news portal', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4352, name: '应用名', type: 'overviewApp', code: '1', value: 'millardayo', sort: 0, remark: 'Global news portal in Tanzania', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4608, name: '应用名', type: 'overviewApp', code: '1', value: 'thadinatin', sort: 0, remark: 'Popular infotainment portal in Myanmar', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4864, name: '应用名', type: 'overviewApp', code: '1', value: 'iec104', sort: 0, remark: 'IEC 60870-5-104 protocol (aka IEC 104) is a part of IEC Telecontrol Equipment and Systems Standard IEC 60870-5 that provides a communication profile for sending basic telecontrol messages between two systems in electrical engineering and power system automation', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5120, name: '应用名', type: 'overviewApp', code: '1', value: 'agora_io', sort: 0, remark: 'Agora SDK is a WebRTC framework', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 5376, name: '应用名', type: 'overviewApp', code: '1', value: 'LaowangVPN', sort: 0, uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 2305, name: '应用名', type: 'overviewApp', code: '1', value: 'surrogafier', sort: 0, remark: 'Surrogafier is an online proxy provider This protocol plug-in classifies the http traffic to the hosts surrogafierinfo and govfservercom', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 2561, name: '应用名', type: 'overviewApp', code: '1', value: 'gyao', sort: 0, remark: 'GyaO is a video website operated by Yahoo Japan', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 2817, name: '应用名', type: 'overviewApp', code: '1', value: 'cvs', sort: 0, remark: 'The Concurrent Versions System keeps track of all work and all changes in a set of files typically the implementation of a software project and allows several developers to collaborate', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3073, name: '应用名', type: 'overviewApp', code: '1', value: 'ifeng_finance', sort: 0, remark: 'Ifeng finance news portal', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3329, name: '应用名', type: 'overviewApp', code: '1', value: 'panet', sort: 0, remark: 'News and entertainment web portal', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3585, name: '应用名', type: 'overviewApp', code: '1', value: 'tasweernews', sort: 0, remark: 'Jordanian news portal', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 3841, name: '应用名', type: 'overviewApp', code: '1', value: 'turner', sort: 0, remark: 'Turner is a video streaming solution provider for audio/video content web services', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4097, name: '应用名', type: 'overviewApp', code: '1', value: 'listindiario', sort: 0, remark: 'Dominican republic news portal', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4353, name: '应用名', type: 'overviewApp', code: '1', value: 'teletica', sort: 0, remark: 'TV calendar service and news web portal in Costa Rica', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4609, name: '应用名', type: 'overviewApp', code: '1', value: 'torrent9', sort: 0, remark: 'Popular torrent file (P2P) search engine and download web site', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }, { id: 4865, name: '应用名', type: 'overviewApp', code: '1', value: 'vonage_mobile', sort: 0, remark: 'Vonage Mobile is an instant messaging application that provides feature to make landline or international calls', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }] }, time: '2023-02-07 02:12:00', message: 'success' } }, + { status: 200, data: { status: 200, code: 200, data: { total: 1, pageSize: 24, pages: 1, pageNo: 1, list: [{ id: 5579, name: '供应商', type: 'overviewProvide', code: '1', value: 'Sina', sort: 0, remark: 'Sina Corporation is a Chinese technology company. Sina operates four major business lines: Sina Weibo, Sina Mobile, Sina Online, and Sinanet. Sina has over 100 million registered users worldwide. ', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }] }, time: '2023-02-07 07:46:05', message: 'success' } }, + { status: 200, data: { status: 200, code: 200, data: { total: 1, pageSize: 24, pages: 1, pageNo: 1, list: [{ id: 3072, name: '应用名', type: 'overviewApp', code: '1', value: 'iapp', sort: 0, remark: 'News site about mobile applications', uby: 1, utime: '2022-08-10 17:52:07', i18n: 'en', state: 1, buildIn: 0, uuser: { id: 1, name: null, username: 'admin', salt: null, lang: null, theme: null, lastLoginIp: null, lastLoginTime: null, ctime: null, cby: null, email: null, mobile: null, status: null, source: null, buildIn: null, roleIds: null, usergroupIds: null, roles: null, apiKeyId: null } }] }, time: '2023-02-07 09:37:55', message: 'success' } } ] } } diff --git a/test/views/charts2/charts/networkOverview/mockData/NetworkOverviewDdosDetection.js b/test/views/charts2/charts/networkOverview/mockData/NetworkOverviewDdosDetection.js index 0d4e3015..f27ecc78 100644 --- a/test/views/charts2/charts/networkOverview/mockData/NetworkOverviewDdosDetection.js +++ b/test/views/charts2/charts/networkOverview/mockData/NetworkOverviewDdosDetection.js @@ -1,8 +1,10 @@ export const mockData = { common: { + status: 200, data: { status: 200, code: 200, queryKey: 'dec6723e173e8fa2b00917dc597bfb27', success: true, message: null, statistics: { elapsed: 0, rows_read: 2, result_size: 58, result_rows: 1 }, job: null, formatType: 'json', meta: [{ name: 'attack_event_count', type: 'long', category: 'Metric' }, { name: 'attacker_count', type: 'long', category: 'Metric' }, { name: 'victim_count', type: 'long', category: 'Metric' }], data: { resultType: 'object', result: [{ attackEventCount: 1200000, attackerCount: 2687878, victimCount: 36676767 }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20COUNT%28*%29%20AS%20attack_event_count%2C%20COUNT%28DISTINCT%28offender_ip%29%29%20AS%20attacker_count%2C%20COUNT%28DISTINCT%28victim_ip%29%29%20AS%20victim_count%20FROM%20security_event%20WHERE%20start_time%20%3E%3D%201675043912%20AND%20start_time%20%3C%201675047512%20AND%20security_type%20%3D%20%27ddos%27&format=json&option=real-time', msg: 'OK' } }, empty: { + status: 200, data: { status: 200, code: 200, @@ -14,6 +16,7 @@ export const mockData = { } }, boundary: { + status: 200, data: { status: 200, code: 200, diff --git a/test/views/charts2/charts/npm/NpmAppCategoryScore.test.js b/test/views/charts2/charts/npm/NpmAppCategoryScore.test.js index fc58c086..c8f7f0ae 100644 --- a/test/views/charts2/charts/npm/NpmAppCategoryScore.test.js +++ b/test/views/charts2/charts/npm/NpmAppCategoryScore.test.js @@ -70,14 +70,14 @@ describe('views/charts2/charts/npm/NpmAppCategoryScore.vue测试', () => { const textNode0 = wrapper.find('[test-id="score-gaming"]') const textNode1 = wrapper.find('[test-id="score-email"]') const textNode2 = wrapper.find('[test-id="score-file-sharing"]') - const textNode3 = wrapper.find('[test-id="score-voip-video"]') + // const textNode3 = wrapper.find('[test-id="score-voip-video"]') const textNode4 = wrapper.find('[test-id="score-multimedia-streaming"]') const textNode5 = wrapper.find('[test-id="score-social-networking"]') expect(textNode0.text()).toBe('6') expect(textNode1.text()).toBe('-') expect(textNode2.text()).toBe('5') - expect(textNode3.text()).toBe('6') + // expect(textNode3.text()).toBe('6') expect(textNode4.text()).toBe('5') expect(textNode5.text()).toBe('6') resolve() @@ -96,14 +96,15 @@ describe('views/charts2/charts/npm/NpmAppCategoryScore.vue测试', () => { const iconNode1 = wrapper.find('[test-id="iconContent1"]') const iconNode2 = wrapper.find('[test-id="iconContent2"]') const iconNode3 = wrapper.find('[test-id="iconContent3"]') - const iconNode4 = wrapper.find('[test-id="iconContent4"]') + // const iconNode4 = wrapper.find('[test-id="iconContent4"]') // const iconNode5 = wrapper.find('[test-id="iconContent5"]') expect(iconNode0.classes()).toContain('cn-icon-gaming') expect(iconNode1.classes()).toContain('cn-icon-email') expect(iconNode2.classes()).toContain('cn-icon-file-sharing') - expect(iconNode3.classes()).toContain('cn-icon-voip') - expect(iconNode4.classes()).toContain('cn-icon-video') + expect(iconNode3.classes()).toContain('cn-icon-video') + // expect(iconNode3.classes()).toContain('cn-icon-voip') + // expect(iconNode4.classes()).toContain('cn-icon-video') // expect(iconNode5.classes()).toContain('cn-icon-social-network') resolve() }, 200)) @@ -118,14 +119,14 @@ describe('views/charts2/charts/npm/NpmAppCategoryScore.vue测试', () => { const textNode0 = wrapper.find('[test-id="score-gaming"]') const textNode1 = wrapper.find('[test-id="score-email"]') const textNode2 = wrapper.find('[test-id="score-file-sharing"]') - const textNode3 = wrapper.find('[test-id="score-voip-video"]') + // const textNode3 = wrapper.find('[test-id="score-voip-video"]') const textNode4 = wrapper.find('[test-id="score-multimedia-streaming"]') const textNode5 = wrapper.find('[test-id="score-social-networking"]') expect(textNode0.text()).toBe('6') expect(textNode1.text()).toBe('6') expect(textNode2.text()).toBe('-') - expect(textNode3.text()).toBe('-') + // expect(textNode3.text()).toBe('-') expect(textNode4.text()).toBe('5') expect(textNode5.text()).toBe('3') resolve() @@ -141,14 +142,14 @@ describe('views/charts2/charts/npm/NpmAppCategoryScore.vue测试', () => { const textNode0 = wrapper.find('[test-id="inbound-gaming"]') const textNode1 = wrapper.find('[test-id="inbound-email"]') const textNode2 = wrapper.find('[test-id="inbound-file-sharing"]') - const textNode3 = wrapper.find('[test-id="inbound-voip-video"]') + // const textNode3 = wrapper.find('[test-id="inbound-voip-video"]') const textNode4 = wrapper.find('[test-id="inbound-multimedia-streaming"]') const textNode5 = wrapper.find('[test-id="inbound-social-networking"]') expect(textNode0.text()).toBe('>500.00%') expect(textNode1.text()).toBe('>500.00%') expect(textNode2.text()).toBe('>500.00%') - expect(textNode3.text()).toBe('>500.00%') + // expect(textNode3.text()).toBe('>500.00%') expect(textNode4.text()).toBe('>500.00%') expect(textNode5.text()).toBe('>500.00%') resolve() @@ -165,14 +166,14 @@ describe('views/charts2/charts/npm/NpmAppCategoryScore.vue测试', () => { const textNode0 = wrapper.find('[test-id="inbound-packet-gaming"]') const textNode1 = wrapper.find('[test-id="inbound-packet-email"]') const textNode2 = wrapper.find('[test-id="inbound-packet-file-sharing"]') - const textNode3 = wrapper.find('[test-id="inbound-packet-voip-video"]') + // const textNode3 = wrapper.find('[test-id="inbound-packet-voip-video"]') const textNode4 = wrapper.find('[test-id="inbound-packet-multimedia-streaming"]') const textNode5 = wrapper.find('[test-id="inbound-packet-social-networking"]') expect(textNode0.text()).toBe('<0.01 bps') expect(textNode1.text()).toBe('<0.01 bps') expect(textNode2.text()).toBe('<0.01 bps') - expect(textNode3.text()).toBe('<0.01 bps') + // expect(textNode3.text()).toBe('<0.01 bps') expect(textNode4.text()).toBe('<0.01 bps') expect(textNode5.text()).toBe('<0.01 bps') resolve() diff --git a/test/views/charts2/charts/npm/NpmEventsByType.test.js b/test/views/charts2/charts/npm/NpmEventsByType.test.js index e2455781..0eb4aa0c 100644 --- a/test/views/charts2/charts/npm/NpmEventsByType.test.js +++ b/test/views/charts2/charts/npm/NpmEventsByType.test.js @@ -3,6 +3,7 @@ import { mount } from '@vue/test-utils' import axios from 'axios' import { mockData } from './mockData/NpmEventsByType' import common from '@/mixins/common' +import chartMixin from '@/views/charts2/chart-mixin' const mockGet = mockData.common.data let wrapper = null @@ -28,7 +29,12 @@ function axiosPostAndMounted (data) { propsData: { timeFilter }, - mixins: [common] + data () { + return { + isUnitTesting: true + } + }, + mixins: [common, chartMixin] }) } diff --git a/test/views/charts2/charts/npm/mockData/NpmAppCategoryScore.js b/test/views/charts2/charts/npm/mockData/NpmAppCategoryScore.js index 5933107e..372d3b35 100644 --- a/test/views/charts2/charts/npm/mockData/NpmAppCategoryScore.js +++ b/test/views/charts2/charts/npm/mockData/NpmAppCategoryScore.js @@ -1,24 +1,31 @@ export const mockData = { common: { data1: { + status: 200, data: { status: 200, code: 200, queryKey: '85bef15c1d30074bd716a1e95ba98b71', success: true, message: null, statistics: { elapsed: 3, rows_read: 8239, bytes_read: 1130060, result_size: 1550, result_rows: 6 }, job: null, formatType: 'json', meta: [{ name: 'app_subcategory', type: 'string', category: 'Dimension' }, { name: 'total_bytes', type: 'long', category: 'Metric' }, { name: 'inbound_bytes', type: 'long', category: 'Metric' }, { name: 'outbound_bytes', type: 'long', category: 'Metric' }, { name: 'internal_bytes', type: 'long', category: 'Metric' }, { name: 'through_bytes', type: 'long', category: 'Metric' }, { name: 'total_packets', type: 'long', category: 'Metric' }, { name: 'inbound_packets', type: 'long', category: 'Metric' }, { name: 'outbound_packets', type: 'long', category: 'Metric' }, { name: 'internal_packets', type: 'long', category: 'Metric' }, { name: 'through_packets', type: 'long', category: 'Metric' }, { name: 'sessions', type: 'long', category: 'Metric' }], data: { resultType: 'object', result: [{ appSubcategory: 'gaming', totalBytes: '1198357', totalBitsRate: 2663.04, inboundBytes: '209590', inboundBitsRate: 465.76, outboundBytes: '868709', outboundBitsRate: 1930.48, internalBytes: '0', internalBitsRate: 0, throughBytes: '17814', throughBitsRate: 39.6, totalPackets: '2125', totalPacketsRate: '0.59', inboundPackets: '295', inboundPacketsRate: '0.08', outboundPackets: '705', outboundPacketsRate: '0.20', internalPackets: '0', internalPacketsRate: '0.00', throughPackets: '29', throughPacketsRate: '0.01', sessions: '49', sessionsRate: '0.01' }, { appSubcategory: 'email', totalBytes: '524260', totalBitsRate: 1165.04, inboundBytes: '485307', inboundBitsRate: 1078.48, outboundBytes: '0', outboundBitsRate: 0, internalBytes: '0', internalBitsRate: 0, throughBytes: '0', throughBitsRate: 0, totalPackets: '621', totalPacketsRate: '0.17', inboundPackets: '380', inboundPacketsRate: '0.11', outboundPackets: '0', outboundPacketsRate: '0.00', internalPackets: '0', internalPacketsRate: '0.00', throughPackets: '0', throughPacketsRate: '0.00', sessions: '6', sessionsRate: '0.00' }, { appSubcategory: 'file-sharing', totalBytes: '287808020', totalBitsRate: 639573.36, inboundBytes: '383569', inboundBitsRate: 852.4, outboundBytes: '283158589', outboundBitsRate: 629241.28, internalBytes: '150', internalBitsRate: 0.32, throughBytes: '103241', throughBitsRate: 229.44, totalPackets: '243319', totalPacketsRate: '67.59', inboundPackets: '1184', inboundPacketsRate: '0.33', outboundPackets: '206409', outboundPacketsRate: '57.34', internalPackets: '2', internalPacketsRate: '0.00', throughPackets: '1555', throughPacketsRate: '0.43', sessions: '655', sessionsRate: '0.18' }, { appSubcategory: 'voip-video', totalBytes: '1394859', totalBitsRate: 3099.68, inboundBytes: '1309', inboundBitsRate: 2.88, outboundBytes: '1306937', outboundBitsRate: 2904.32, internalBytes: '55505', internalBitsRate: 123.36, throughBytes: '0', throughBitsRate: 0, totalPackets: '1249', totalPacketsRate: '0.35', inboundPackets: '9', inboundPacketsRate: '0.00', outboundPackets: '964', outboundPacketsRate: '0.27', internalPackets: '47', internalPacketsRate: '0.01', throughPackets: '0', throughPacketsRate: '0.00', sessions: '37', sessionsRate: '0.01' }, { appSubcategory: 'multimedia-streaming', totalBytes: '20753258085', totalBitsRate: 46118351.28, inboundBytes: '885592886', inboundBitsRate: 1967984.16, outboundBytes: '18584773000', outboundBitsRate: 41299495.52, internalBytes: '1239219', internalBitsRate: 2753.84, throughBytes: '862004543', throughBitsRate: 1915565.68, totalPackets: '19072293', totalPacketsRate: '5297.86', inboundPackets: '622206', inboundPacketsRate: '172.84', outboundPackets: '13193955', outboundPacketsRate: '3664.99', internalPackets: '1093', internalPacketsRate: '0.30', throughPackets: '762869', throughPacketsRate: '211.91', sessions: '18867', sessionsRate: '5.24' }, { appSubcategory: 'social-networking', totalBytes: '324162', totalBitsRate: 720.4, inboundBytes: '39911', inboundBitsRate: 88.72, outboundBytes: '218503', outboundBitsRate: 485.6, internalBytes: '0', internalBitsRate: 0, throughBytes: '0', throughBitsRate: 0, totalPackets: '729', totalPacketsRate: '0.20', inboundPackets: '99', inboundPacketsRate: '0.03', outboundPackets: '291', outboundPacketsRate: '0.08', internalPackets: '0', internalPacketsRate: '0.00', throughPackets: '0', throughPacketsRate: '0.00', sessions: '28', sessionsRate: '0.01' }] }, originalUrl: 'http://192.168.44.55:9999?query=%20%20SELECT%20app_subcategory%20AS%20app_subcategory%2C%20SUM%28common_c2s_byte_num%20%2B%20common_s2c_byte_num%29%20AS%20total_bytes%2C%20SUM%28traffic_inbound_byte%29%20AS%20inbound_bytes%2C%20SUM%28traffic_outbound_byte%29%20AS%20outbound_bytes%2C%20SUM%28traffic_internal_byte%29%20AS%20internal_bytes%2C%20SUM%28traffic_through_byte%29%20AS%20through_bytes%2C%20SUM%28common_c2s_pkt_num%20%2B%20common_s2c_pkt_num%29%20AS%20total_packets%2C%20SUM%28traffic_inbound_pkt%29%20AS%20inbound_packets%2C%20SUM%28traffic_outbound_pkt%29%20AS%20outbound_packets%2C%20SUM%28traffic_internal_pkt%29%20AS%20internal_packets%2C%20SUM%28traffic_through_pkt%29%20AS%20through_packets%2C%20SUM%28common_sessions%29%20AS%20sessions%20FROM%20metric_application%20WHERE%20stat_time%20%3E%3D%201674956525-3600%20AND%20stat_time%20%3C%201674960125-3600%20AND%20app_subcategory%20IN%20%28%27multimedia-streaming%27%2C%27social-networking%27%2C%27file-sharing%27%2C%27gaming%27%2C%27email%27%2C%27voip-video%27%29%20GROUP%20BY%20app_subcategory%20&format=json&option=real-time', msg: 'OK' } }, data2: { + status: 200, data: { status: 200, code: 200, queryKey: 'afa724c5532a078ad0ca2bc52b834e2e', success: true, message: null, statistics: { elapsed: 7, rows_read: 9931, bytes_read: 1362019, result_size: 1550, result_rows: 6 }, job: null, formatType: 'json', meta: [{ name: 'app_subcategory', type: 'string', category: 'Dimension' }, { name: 'total_bytes', type: 'long', category: 'Metric' }, { name: 'inbound_bytes', type: 'long', category: 'Metric' }, { name: 'outbound_bytes', type: 'long', category: 'Metric' }, { name: 'internal_bytes', type: 'long', category: 'Metric' }, { name: 'through_bytes', type: 'long', category: 'Metric' }, { name: 'total_packets', type: 'long', category: 'Metric' }, { name: 'inbound_packets', type: 'long', category: 'Metric' }, { name: 'outbound_packets', type: 'long', category: 'Metric' }, { name: 'internal_packets', type: 'long', category: 'Metric' }, { name: 'through_packets', type: 'long', category: 'Metric' }, { name: 'sessions', type: 'long', category: 'Metric' }], data: { resultType: 'object', result: [{ appSubcategory: 'multimedia-streaming', totalBytes: '21278548763', totalBitsRate: 47285663.92, inboundBytes: '785312903', inboundBitsRate: 1745139.76, outboundBytes: '19030565618', outboundBitsRate: 42290145.84, internalBytes: '3319150', internalBitsRate: 7375.92, throughBytes: '1046422310', throughBitsRate: 2325382.88, totalPackets: '19448513', totalPacketsRate: '5402.36', inboundPackets: '542606', inboundPacketsRate: '150.72', outboundPackets: '13518174', outboundPacketsRate: '3755.05', internalPackets: '2774', internalPacketsRate: '0.77', throughPackets: '907519', throughPacketsRate: '252.09', sessions: '18844', sessionsRate: '5.23' }, { appSubcategory: 'file-sharing', totalBytes: '332811699', totalBitsRate: 739581.52, inboundBytes: '1672996', inboundBitsRate: 3717.76, outboundBytes: '324802448', outboundBitsRate: 721783.2, internalBytes: '0', internalBitsRate: 0, throughBytes: '75036', throughBitsRate: 166.72, totalPackets: '294049', totalPacketsRate: '81.68', inboundPackets: '2512', inboundPacketsRate: '0.70', outboundPackets: '238868', outboundPacketsRate: '66.35', internalPackets: '0', internalPacketsRate: '0.00', throughPackets: '1086', throughPacketsRate: '0.30', sessions: '565', sessionsRate: '0.16' }, { appSubcategory: 'voip-video', totalBytes: '16159697', totalBitsRate: 35910.4, inboundBytes: '9983', inboundBitsRate: 22.16, outboundBytes: '16024232', outboundBitsRate: 35609.44, internalBytes: '11691', internalBitsRate: 26, throughBytes: '0', throughBitsRate: 0, totalPackets: '12250', totalPacketsRate: '3.40', inboundPackets: '63', inboundPacketsRate: '0.02', outboundPackets: '11168', outboundPacketsRate: '3.10', internalPackets: '15', internalPacketsRate: '0.00', throughPackets: '0', throughPacketsRate: '0.00', sessions: '46', sessionsRate: '0.01' }, { appSubcategory: 'gaming', totalBytes: '2011572', totalBitsRate: 4470.16, inboundBytes: '85755', inboundBitsRate: 190.56, outboundBytes: '1809947', outboundBitsRate: 4022.08, internalBytes: '0', internalBitsRate: 0, throughBytes: '972', throughBitsRate: 2.16, totalPackets: '2157', totalPacketsRate: '0.60', inboundPackets: '249', inboundPacketsRate: '0.07', outboundPackets: '1336', outboundPacketsRate: '0.37', internalPackets: '0', internalPacketsRate: '0.00', throughPackets: '9', throughPacketsRate: '0.00', sessions: '47', sessionsRate: '0.01' }, { appSubcategory: 'social-networking', totalBytes: '386093', totalBitsRate: 858, inboundBytes: '804', inboundBitsRate: 176, outboundBytes: '343729', outboundBitsRate: 763.84, internalBytes: '0', internalBitsRate: 0, throughBytes: '0', throughBitsRate: 0, totalPackets: '794', totalPacketsRate: '0.22', inboundPackets: '12', inboundPacketsRate: '0.00', outboundPackets: '436', outboundPacketsRate: '0.12', internalPackets: '0', internalPacketsRate: '0.00', throughPackets: '0', throughPacketsRate: '0.00', sessions: '34', sessionsRate: '0.01' }, { appSubcategory: 'email', totalBytes: '33128', totalBitsRate: 73.6, inboundBytes: '21144', inboundBitsRate: 46.96, outboundBytes: '4069', outboundBitsRate: 9.04, internalBytes: '0', internalBitsRate: 0, throughBytes: '0', throughBitsRate: 0, totalPackets: '93', totalPacketsRate: '0.03', inboundPackets: '46', inboundPacketsRate: '0.01', outboundPackets: '7', outboundPacketsRate: '0.00', internalPackets: '0', internalPacketsRate: '0.00', throughPackets: '0', throughPacketsRate: '0.00', sessions: '6', sessionsRate: '0.00' }] }, originalUrl: 'http://192.168.44.55:9999?query=%20SELECT%20app_subcategory%20AS%20app_subcategory%2C%20SUM%28common_c2s_byte_num%20%2B%20common_s2c_byte_num%29%20AS%20total_bytes%2C%20SUM%28traffic_inbound_byte%29%20AS%20inbound_bytes%2C%20SUM%28traffic_outbound_byte%29%20AS%20outbound_bytes%2C%20SUM%28traffic_internal_byte%29%20AS%20internal_bytes%2C%20SUM%28traffic_through_byte%29%20AS%20through_bytes%2C%20SUM%28common_c2s_pkt_num%20%2B%20common_s2c_pkt_num%29%20AS%20total_packets%2C%20SUM%28traffic_inbound_pkt%29%20AS%20inbound_packets%2C%20SUM%28traffic_outbound_pkt%29%20AS%20outbound_packets%2C%20SUM%28traffic_internal_pkt%29%20AS%20internal_packets%2C%20SUM%28traffic_through_pkt%29%20AS%20through_packets%2C%20SUM%28common_sessions%29%20AS%20sessions%20FROM%20metric_application%20WHERE%20stat_time%20%3E%3D%201674956525%20AND%20stat_time%20%3C%201674960125%20AND%20app_subcategory%20IN%20%28%27multimedia-streaming%27%2C%27social-networking%27%2C%27file-sharing%27%2C%27gaming%27%2C%27email%27%2C%27voip-video%27%29%20GROUP%20BY%20app_subcategory%20%20ORDER%20BY%20total_bytes%20desc%20%20%20&format=json&option=real-time', msg: 'OK' } }, data3: { + status: 200, data: { status: 200, code: 200, queryKey: '4492575d70af04eca0829f4cf049c523', success: true, message: null, statistics: { elapsed: 2, rows_read: 7960, bytes_read: 335660, result_size: 311, result_rows: 5 }, job: null, formatType: 'json', meta: [{ name: 'app_subcategory', type: 'string', category: 'Dimension' }, { name: 'establish_latency_ms', type: 'double', category: 'Metric' }], data: { resultType: 'object', result: [{ appSubcategory: 'gaming', establishLatencyMs: 80.2037 }, { appSubcategory: 'file-sharing', establishLatencyMs: 186.7609 }, { appSubcategory: 'voip-video', establishLatencyMs: 61 }, { appSubcategory: 'multimedia-streaming', establishLatencyMs: 95.5483 }, { appSubcategory: 'social-networking', establishLatencyMs: 51.0179 }] }, originalUrl: 'http://192.168.44.55:9999?query=%20SELECT%20app_subcategory%20AS%20app_subcategory%2C%20ROUND%28AVG%28avg_establish_latency_ms%29%2C%204%29%20AS%20establish_latency_ms%20FROM%20metric_application%20WHERE%20stat_time%20%3E%3D%201675144350%20AND%20stat_time%20%3C%201675147950%20AND%20isNotNull%28avg_establish_latency_ms%29%20AND%20app_subcategory%20IN%20%28%27multimedia-streaming%27%2C%27social-networking%27%2C%27file-sharing%27%2C%27gaming%27%2C%27email%27%2C%27voip-video%27%29%20GROUP%20BY%20app_subcategory%20&format=json&option=real-time', msg: 'OK' } }, data4: { + status: 200, data: { status: 200, code: 200, queryKey: '8141b611155bb7eac75b6be6da314b79', success: true, message: null, statistics: { elapsed: 1, rows_read: 7960, bytes_read: 335660, result_size: 258, result_rows: 4 }, job: null, formatType: 'json', meta: [{ name: 'app_subcategory', type: 'string', category: 'Dimension' }, { name: 'http_response_latency', type: 'double', category: 'Metric' }], data: { resultType: 'object', result: [{ appSubcategory: 'gaming', httpResponseLatency: 49.9375 }, { appSubcategory: 'file-sharing', httpResponseLatency: 304.75 }, { appSubcategory: 'multimedia-streaming', httpResponseLatency: 319.011 }, { appSubcategory: 'social-networking', httpResponseLatency: 55.4423 }] }, originalUrl: 'http://192.168.44.55:9999?query=%20SELECT%20app_subcategory%20AS%20app_subcategory%2C%20ROUND%28AVG%28avg_http_response_latency_ms%29%2C%204%29%20AS%20http_response_latency%20FROM%20metric_application%20WHERE%20stat_time%20%3E%3D%201675144350%20AND%20stat_time%20%3C%201675147950%20AND%20isNotNull%28avg_http_response_latency_ms%29%20AND%20app_subcategory%20IN%20%28%27multimedia-streaming%27%2C%27social-networking%27%2C%27file-sharing%27%2C%27gaming%27%2C%27email%27%2C%27voip-video%27%29%20GROUP%20BY%20app_subcategory%20&format=json&option=real-time', msg: 'OK' } }, data5: { + status: 200, data: { status: 200, code: 200, queryKey: 'df80ef09ef60ddc6da8343edd5699796', success: true, message: null, statistics: { elapsed: 2, rows_read: 7960, bytes_read: 335660, result_size: 209, result_rows: 4 }, job: null, formatType: 'json', meta: [{ name: 'app_subcategory', type: 'string', category: 'Dimension' }, { name: 'ssl_con_latency', type: 'double', category: 'Metric' }], data: { resultType: 'object', result: [{ appSubcategory: 'gaming', sslConLatency: 0 }, { appSubcategory: 'voip-video', sslConLatency: 0 }, { appSubcategory: 'multimedia-streaming', sslConLatency: 0 }, { appSubcategory: 'social-networking', sslConLatency: 0 }] }, originalUrl: 'http://192.168.44.55:9999?query=%20SELECT%20app_subcategory%20AS%20app_subcategory%2C%20ROUND%28AVG%28avg_ssl_con_latency_ms%29%2C%204%29%20AS%20ssl_con_latency%20FROM%20metric_application%20WHERE%20stat_time%20%3E%3D%201675144350%20AND%20stat_time%20%3C%201675147950%20AND%20isNotNull%28avg_ssl_con_latency_ms%29%20AND%20app_subcategory%20IN%20%28%27multimedia-streaming%27%2C%27social-networking%27%2C%27file-sharing%27%2C%27gaming%27%2C%27email%27%2C%27voip-video%27%29%20GROUP%20BY%20app_subcategory%20&format=json&option=real-time', msg: 'OK' } }, data6: { + status: 200, data: { status: 200, code: 200, queryKey: '209ee36ddba970fef15d8347acbb45d1', success: true, message: null, statistics: { elapsed: 2, rows_read: 7960, bytes_read: 335660, result_size: 289, result_rows: 5 }, job: null, formatType: 'json', meta: [{ name: 'app_subcategory', type: 'string', category: 'Dimension' }, { name: 'tcp_lostlen_percent', type: 'double', category: 'Metric' }], data: { resultType: 'object', result: [{ appSubcategory: 'gaming', tcpLostlenPercent: 0 }, { appSubcategory: 'file-sharing', tcpLostlenPercent: 0 }, { appSubcategory: 'voip-video', tcpLostlenPercent: 0 }, { appSubcategory: 'multimedia-streaming', tcpLostlenPercent: 0.006 }, { appSubcategory: 'social-networking', tcpLostlenPercent: 0.0208 }] }, originalUrl: 'http://192.168.44.55:9999?query=%20SELECT%20app_subcategory%20AS%20app_subcategory%2C%20ROUND%28AVG%28tcp_lostlen_ratio%29%2C%204%29%20AS%20tcp_lostlen_percent%20FROM%20metric_application%20WHERE%20stat_time%20%3E%3D%201675144350%20AND%20stat_time%20%3C%201675147950%20AND%20isNotNull%28tcp_lostlen_ratio%29%20AND%20app_subcategory%20IN%20%28%27multimedia-streaming%27%2C%27social-networking%27%2C%27file-sharing%27%2C%27gaming%27%2C%27email%27%2C%27voip-video%27%29%20GROUP%20BY%20app_subcategory%20&format=json&option=real-time', msg: 'OK' } }, data7: { + status: 200, data: { status: 200, code: 200, queryKey: 'bc04f2b6120feeb9eee2d83640475447', success: true, message: null, statistics: { elapsed: 2, rows_read: 7960, bytes_read: 335660, result_size: 295, result_rows: 5 }, job: null, formatType: 'json', meta: [{ name: 'app_subcategory', type: 'string', category: 'Dimension' }, { name: 'pkt_retrans_percent', type: 'double', category: 'Metric' }], data: { resultType: 'object', result: [{ appSubcategory: 'gaming', pktRetransPercent: 0.0023 }, { appSubcategory: 'file-sharing', pktRetransPercent: 0 }, { appSubcategory: 'voip-video', pktRetransPercent: 0 }, { appSubcategory: 'multimedia-streaming', pktRetransPercent: 0.0171 }, { appSubcategory: 'social-networking', pktRetransPercent: 0.0003 }] }, originalUrl: 'http://192.168.44.55:9999?query=%20SELECT%20app_subcategory%20AS%20app_subcategory%2C%20ROUND%28AVG%28pkt_retrans_ratio%29%2C%204%29%20AS%20pkt_retrans_percent%20FROM%20metric_application%20WHERE%20stat_time%20%3E%3D%201675144350%20AND%20stat_time%20%3C%201675147950%20AND%20isNotNull%28pkt_retrans_ratio%29%20AND%20app_subcategory%20IN%20%28%27multimedia-streaming%27%2C%27social-networking%27%2C%27file-sharing%27%2C%27gaming%27%2C%27email%27%2C%27voip-video%27%29%20GROUP%20BY%20app_subcategory%20&format=json&option=real-time', msg: 'OK' } } }, @@ -26,6 +33,7 @@ export const mockData = { boundary: { large: { data1: { + status: 200, data: { status: 200, code: 200, @@ -189,6 +197,7 @@ export const mockData = { }, zero: { data1: { + status: 200, data: { status: 200, code: 200, @@ -350,6 +359,7 @@ export const mockData = { } }, data2: { + status: 200, data: { status: 200, code: 200, @@ -513,6 +523,7 @@ export const mockData = { }, score: { data3: { + status: 200, data: { status: 200, code: 200, @@ -543,6 +554,7 @@ export const mockData = { } }, data4: { + status: 200, data: { status: 200, code: 200, @@ -573,6 +585,7 @@ export const mockData = { } }, data5: { + status: 200, data: { status: 200, code: 200, @@ -602,6 +615,7 @@ export const mockData = { } }, data6: { + status: 200, data: { status: 200, code: 200, @@ -632,6 +646,7 @@ export const mockData = { } }, data7: { + status: 200, data: { status: 200, code: 200, diff --git a/test/views/charts2/charts/npm/mockData/NpmAppEventByTable.js b/test/views/charts2/charts/npm/mockData/NpmAppEventByTable.js index bee1b37b..cfbdafc4 100644 --- a/test/views/charts2/charts/npm/mockData/NpmAppEventByTable.js +++ b/test/views/charts2/charts/npm/mockData/NpmAppEventByTable.js @@ -1,7 +1,8 @@ export const mockData = { common: { data: { - data: { status: 200, code: 200, queryKey: '88eeb92e0ddb40c0327db494cfe5c74c', success: true, message: null, statistics: { elapsed: 0, rows_read: 2, result_size: 752, result_rows: 10 }, job: null, formatType: 'json', meta: [{ name: 'app_name', type: 'string', category: 'Dimension' }, { name: 'event_severity', type: 'string', category: 'Dimension' }, { name: 'event_type', type: 'string', category: 'Dimension' }, { name: 'count', type: 'long', category: 'Metric' }], data: { resultType: 'table', result: [{ appName: 'youku', eventSeverity: 'info', eventType: 'http error', count: 6 }, { appName: 'uplive', eventSeverity: 'critical', eventType: 'http error', count: 5 }, { appName: 'youku', eventSeverity: 'low', eventType: 'http error', count: 4 }, { appName: 'apple_hls', eventSeverity: 'info', eventType: 'http error', count: 3 }, { appName: 'apple_hls', eventSeverity: 'low', eventType: 'http error', count: 3 }, { appName: 'apple_hls', eventSeverity: 'medium', eventType: 'http error', count: 2 }, { appName: 'uplive', eventSeverity: 'high', eventType: 'http error', count: 2 }, { appName: 'windows_update', eventSeverity: 'medium', eventType: 'http error', count: 2 }, { appName: 'apple_hls', eventSeverity: 'critical', eventType: 'http error', count: 1 }, { appName: 'cloudflare', eventSeverity: 'info', eventType: 'http error', count: 1 }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20app_name%20AS%20app_name%2C%20event_severity%20AS%20event_severity%2C%20event_type%20AS%20event_type%2C%20COUNT%28*%29%20AS%20count%20FROM%20performance_event%20WHERE%20start_time%20%3E%3D%201675580110%20AND%20end_time%20%3C%201675752910%20AND%20entity_type%20%3D%20%27app%27%20GROUP%20BY%20app_name%2Cevent_severity%2Cevent_type%20ORDER%20BY%20count%20DESC%20%20LIMIT%2010%20&format=json&option=real-time', msg: 'OK' } + status: 200, + data: { code: 200, queryKey: '88eeb92e0ddb40c0327db494cfe5c74c', success: true, message: null, statistics: { elapsed: 0, rows_read: 2, result_size: 752, result_rows: 10 }, job: null, formatType: 'json', meta: [{ name: 'app_name', type: 'string', category: 'Dimension' }, { name: 'event_severity', type: 'string', category: 'Dimension' }, { name: 'event_type', type: 'string', category: 'Dimension' }, { name: 'count', type: 'long', category: 'Metric' }], data: { resultType: 'table', result: [{ appName: 'youku', eventSeverity: 'info', eventType: 'http error', count: 6 }, { appName: 'uplive', eventSeverity: 'critical', eventType: 'http error', count: 5 }, { appName: 'youku', eventSeverity: 'low', eventType: 'http error', count: 4 }, { appName: 'apple_hls', eventSeverity: 'info', eventType: 'http error', count: 3 }, { appName: 'apple_hls', eventSeverity: 'low', eventType: 'http error', count: 3 }, { appName: 'apple_hls', eventSeverity: 'medium', eventType: 'http error', count: 2 }, { appName: 'uplive', eventSeverity: 'high', eventType: 'http error', count: 2 }, { appName: 'windows_update', eventSeverity: 'medium', eventType: 'http error', count: 2 }, { appName: 'apple_hls', eventSeverity: 'critical', eventType: 'http error', count: 1 }, { appName: 'cloudflare', eventSeverity: 'info', eventType: 'http error', count: 1 }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20app_name%20AS%20app_name%2C%20event_severity%20AS%20event_severity%2C%20event_type%20AS%20event_type%2C%20COUNT%28*%29%20AS%20count%20FROM%20performance_event%20WHERE%20start_time%20%3E%3D%201675580110%20AND%20end_time%20%3C%201675752910%20AND%20entity_type%20%3D%20%27app%27%20GROUP%20BY%20app_name%2Cevent_severity%2Cevent_type%20ORDER%20BY%20count%20DESC%20%20LIMIT%2010%20&format=json&option=real-time', msg: 'OK' } } }, empty: { diff --git a/test/views/charts2/charts/npm/mockData/NpmEventsByType.js b/test/views/charts2/charts/npm/mockData/NpmEventsByType.js index 96c4e422..207ff95c 100644 --- a/test/views/charts2/charts/npm/mockData/NpmEventsByType.js +++ b/test/views/charts2/charts/npm/mockData/NpmEventsByType.js @@ -1,11 +1,13 @@ export const mockData = { common: { data: { + status: 200, data: { status: 200, code: 200, queryKey: 'b99b52117b79dcb67b460a2693a0871e', success: true, message: null, statistics: { elapsed: 0, rows_read: 2, result_size: 20424, result_rows: 183 }, job: null, formatType: 'json', meta: [{ name: 'event_id', type: 'long', category: 'Metric' }, { name: 'event_severity', type: 'string', category: 'Metric' }, { name: 'event_key', type: 'string', category: 'Metric' }, { name: 'event_type', type: 'string', category: 'Metric' }], data: { resultType: 'table', result: [{ eventId: 1174838595247138800, eventSeverity: 'critical', eventKey: '116.178.216.99 dns error', eventType: 'dns error' }, { eventId: 1174835015358343200, eventSeverity: 'critical', eventKey: 'vt147.ddns.net dns error', eventType: 'dns error' }, { eventId: 1174807382327289900, eventSeverity: 'critical', eventKey: '180.76.76.76 dns error', eventType: 'dns error' }, { eventId: 1174805855952955400, eventSeverity: 'critical', eventKey: '1.1.1.2 dns error', eventType: 'dns error' }, { eventId: 1174796724433053700, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174786387772172300, eventSeverity: 'critical', eventKey: '116.178.216.99 dns error', eventType: 'dns error' }, { eventId: 1174779978556893200, eventSeverity: 'low', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174753520551716900, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174741411075975200, eventSeverity: 'high', eventKey: '180.76.76.76 dns error', eventType: 'dns error' }, { eventId: 1174736669113313300, eventSeverity: 'low', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174728322280581000, eventSeverity: 'low', eventKey: '223.6.6.6 dns error', eventType: 'dns error' }, { eventId: 1174722700822702000, eventSeverity: 'info', eventKey: 'ximalaya http error', eventType: 'http error' }, { eventId: 1174725030808905700, eventSeverity: 'critical', eventKey: 'log1 dns error', eventType: 'dns error' }, { eventId: 1174725017370355700, eventSeverity: 'critical', eventKey: 'log2 dns error', eventType: 'dns error' }, { eventId: 1174725504849143800, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174720266046007300, eventSeverity: 'critical', eventKey: '180.76.76.76 dns error', eventType: 'dns error' }, { eventId: 1174714699801946000, eventSeverity: 'info', eventKey: '223.6.6.6 dns error', eventType: 'dns error' }, { eventId: 1174714961190971400, eventSeverity: 'critical', eventKey: 'vt147.ddns.net dns error', eventType: 'dns error' }, { eventId: 1174701711334303700, eventSeverity: 'info', eventKey: 'youku http error', eventType: 'http error' }, { eventId: 1174703587161270300, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174692059871701000, eventSeverity: 'critical', eventKey: '1.1.1.2 dns error', eventType: 'dns error' }, { eventId: 1174691947380467700, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174687138946476000, eventSeverity: 'critical', eventKey: '116.178.78.180 http error', eventType: 'http error' }, { eventId: 1174678385769572400, eventSeverity: 'critical', eventKey: 'vt147.ddns.net dns error', eventType: 'dns error' }, { eventId: 1174680030389725200, eventSeverity: 'info', eventKey: 'ximalaya http error', eventType: 'http error' }, { eventId: 1174669472588359700, eventSeverity: 'low', eventKey: '180.76.76.76 dns error', eventType: 'dns error' }, { eventId: 1174662877078874000, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174657527411894300, eventSeverity: 'critical', eventKey: '180.76.76.76 dns error', eventType: 'dns error' }, { eventId: 1174651831630948400, eventSeverity: 'low', eventKey: 'ximalaya http error', eventType: 'http error' }, { eventId: 1174646285334997000, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174640943888853000, eventSeverity: 'critical', eventKey: '1.1.1.2 dns error', eventType: 'dns error' }, { eventId: 1174635152712657000, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174621814758828000, eventSeverity: 'high', eventKey: '180.76.76.76 dns error', eventType: 'dns error' }, { eventId: 1174618972329339000, eventSeverity: 'info', eventKey: 'mpegts http error', eventType: 'http error' }, { eventId: 1174610567598434300, eventSeverity: 'critical', eventKey: 'uplive http error', eventType: 'http error' }, { eventId: 1174606450654177300, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174574172330780700, eventSeverity: 'medium', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174549157132626000, eventSeverity: 'info', eventKey: '221.7.1.20 dns error', eventType: 'dns error' }, { eventId: 1174543499872168000, eventSeverity: 'critical', eventKey: 'log1 dns error', eventType: 'dns error' }, { eventId: 1174534952048388000, eventSeverity: 'critical', eventKey: 'uplive http error', eventType: 'http error' }, { eventId: 1174524675668043800, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174516711339059200, eventSeverity: 'high', eventKey: '180.76.76.76 dns error', eventType: 'dns error' }, { eventId: 1174506204255217700, eventSeverity: 'low', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174495276868561000, eventSeverity: 'low', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174497535232829400, eventSeverity: 'critical', eventKey: '1.1.1.2 dns error', eventType: 'dns error' }, { eventId: 1174475121945995300, eventSeverity: 'low', eventKey: 'apple_hls http error', eventType: 'http error' }, { eventId: 1174475122533197800, eventSeverity: 'high', eventKey: '116.178.78.180 http error', eventType: 'http error' }, { eventId: 1174477946390308900, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174470721164798000, eventSeverity: 'high', eventKey: '180.76.76.76 dns error', eventType: 'dns error' }, { eventId: 1174436860313725000, eventSeverity: 'high', eventKey: '180.76.76.76 dns error', eventType: 'dns error' }, { eventId: 1174437914761750500, eventSeverity: 'critical', eventKey: '1.1.1.2 dns error', eventType: 'dns error' }, { eventId: 1174438411803551700, eventSeverity: 'medium', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174421137109543000, eventSeverity: 'critical', eventKey: 'vt147.ddns.net dns error', eventType: 'dns error' }, { eventId: 1174401325432039400, eventSeverity: 'critical', eventKey: '180.76.76.76 dns error', eventType: 'dns error' }, { eventId: 1174402867929278500, eventSeverity: 'medium', eventKey: 'uplive http error', eventType: 'http error' }, { eventId: 1174398889027954700, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174386105997322200, eventSeverity: 'high', eventKey: 'uplive http error', eventType: 'http error' }, { eventId: 1174380396744272000, eventSeverity: 'critical', eventKey: '180.76.76.76 dns error', eventType: 'dns error' }, { eventId: 1174382065926269000, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174373377794631700, eventSeverity: 'critical', eventKey: '1.1.1.2 dns error', eventType: 'dns error' }, { eventId: 1174374993088211000, eventSeverity: 'medium', eventKey: '116.178.78.237 http error', eventType: 'http error' }, { eventId: 1174355355994417200, eventSeverity: 'critical', eventKey: '116.178.216.99 dns error', eventType: 'dns error' }, { eventId: 1174355355994417200, eventSeverity: 'critical', eventKey: 'jkm.xinjiang.gov.cn dns error', eventType: 'dns error' }, { eventId: 1174349803054688300, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174338465498654700, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174300141841016800, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174285699828934700, eventSeverity: 'critical', eventKey: '1.1.1.2 dns error', eventType: 'dns error' }, { eventId: 1174283778871257000, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174266335700445200, eventSeverity: 'info', eventKey: '119.29.29.29 dns error', eventType: 'dns error' }, { eventId: 1174267183654496300, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174263356150769700, eventSeverity: 'critical', eventKey: 'log2 dns error', eventType: 'dns error' }, { eventId: 1174254480550520800, eventSeverity: 'low', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174226363916216300, eventSeverity: 'critical', eventKey: '180.76.76.76 dns error', eventType: 'dns error' }, { eventId: 1174219072387147800, eventSeverity: 'info', eventKey: 'youku http error', eventType: 'http error' }, { eventId: 1174206494894188500, eventSeverity: 'high', eventKey: '180.76.76.76 dns error', eventType: 'dns error' }, { eventId: 1174198183780149200, eventSeverity: 'high', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174201186297833500, eventSeverity: 'critical', eventKey: 'log1 dns error', eventType: 'dns error' }, { eventId: 1174187210558138400, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174178571499858000, eventSeverity: 'critical', eventKey: '1.1.1.2 dns error', eventType: 'dns error' }, { eventId: 1174178759555672000, eventSeverity: 'critical', eventKey: 'log2 dns error', eventType: 'dns error' }, { eventId: 1174178764588836900, eventSeverity: 'critical', eventKey: 'log1 dns error', eventType: 'dns error' }, { eventId: 1174172786564786200, eventSeverity: 'high', eventKey: '116.178.78.180 http error', eventType: 'http error' }, { eventId: 1174176868897646600, eventSeverity: 'high', eventKey: '180.76.76.76 dns error', eventType: 'dns error' }, { eventId: 1174167942596651000, eventSeverity: 'low', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174154488712259600, eventSeverity: 'high', eventKey: '8.8.8.8 dns error', eventType: 'dns error' }, { eventId: 1174147795542599700, eventSeverity: 'critical', eventKey: '1.1.1.2 dns error', eventType: 'dns error' }, { eventId: 1174151451063085000, eventSeverity: 'critical', eventKey: 'log1 dns error', eventType: 'dns error' }, { eventId: 1174140574897268700, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174115611188390000, eventSeverity: 'critical', eventKey: 'vt147.ddns.net dns error', eventType: 'dns error' }, { eventId: 1174088124169447400, eventSeverity: 'high', eventKey: '180.76.76.76 dns error', eventType: 'dns error' }, { eventId: 1174070734333405200, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174047047857203200, eventSeverity: 'low', eventKey: '221.7.1.21 dns error', eventType: 'dns error' }, { eventId: 1174044043712129000, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174039639474825200, eventSeverity: 'critical', eventKey: '13.0.8.11.in-addr.arpa dns error', eventType: 'dns error' }, { eventId: 1174036136710891500, eventSeverity: 'medium', eventKey: '221.7.1.21 dns error', eventType: 'dns error' }, { eventId: 1174039651218876400, eventSeverity: 'critical', eventKey: '138.0.0.11.in-addr.arpa dns error', eventType: 'dns error' }, { eventId: 1174039642830268400, eventSeverity: 'critical', eventKey: '139.0.0.11.in-addr.arpa dns error', eventType: 'dns error' }, { eventId: 1174026676139452400, eventSeverity: 'low', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1174030321442613200, eventSeverity: 'critical', eventKey: '1.1.1.2 dns error', eventType: 'dns error' }, { eventId: 1174025787886528500, eventSeverity: 'critical', eventKey: 'waflog.byted.org dns error', eventType: 'dns error' }, { eventId: 1174012734860159000, eventSeverity: 'info', eventKey: '116.178.65.116 http error', eventType: 'http error' }, { eventId: 1174006252680767500, eventSeverity: 'critical', eventKey: 'vt147.ddns.net dns error', eventType: 'dns error' }, { eventId: 1174006939439327200, eventSeverity: 'info', eventKey: '119.29.29.29 dns error', eventType: 'dns error' }, { eventId: 1174001730499635200, eventSeverity: 'high', eventKey: 'youku http error', eventType: 'http error' }, { eventId: 1174004061526026200, eventSeverity: 'low', eventKey: '116.178.216.99 dns error', eventType: 'dns error' }, { eventId: 1174005144478541800, eventSeverity: 'critical', eventKey: 'waflog.byted.org dns error', eventType: 'dns error' }, { eventId: 1174005345972906000, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1173989371093706800, eventSeverity: 'info', eventKey: '116.178.78.180 http error', eventType: 'http error' }, { eventId: 1173989934690723800, eventSeverity: 'low', eventKey: 'youku http error', eventType: 'http error' }, { eventId: 1173983634678343700, eventSeverity: 'critical', eventKey: 'abc.sched.otherv3.tdnsv6.com dns error', eventType: 'dns error' }, { eventId: 1173983659860945000, eventSeverity: 'critical', eventKey: 'abc.sched.ssdv3-v6.tdnsv6.com dns error', eventType: 'dns error' }, { eventId: 1173978562204526600, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1173962289680738300, eventSeverity: 'low', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1173962961339803600, eventSeverity: 'critical', eventKey: '1.1.1.2 dns error', eventType: 'dns error' }, { eventId: 1173957583453546500, eventSeverity: 'critical', eventKey: 'abc.sched.otherv3-v6.tdnsv6.com dns error', eventType: 'dns error' }, { eventId: 1173954733541419000, eventSeverity: 'critical', eventKey: 'abc.sched.otherv3.tdnsv6.com dns error', eventType: 'dns error' }, { eventId: 1173943917521922000, eventSeverity: 'info', eventKey: '223.6.6.6 dns error', eventType: 'dns error' }, { eventId: 1173937749311350800, eventSeverity: 'info', eventKey: 'apple_hls http error', eventType: 'http error' }, { eventId: 1173939758248749000, eventSeverity: 'critical', eventKey: 'abc.sched.ssdv3-v6.tdnsv6.com dns error', eventType: 'dns error' }, { eventId: 1173921203872589800, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1173910251823425500, eventSeverity: 'medium', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1173910323646687200, eventSeverity: 'critical', eventKey: 'dbhost dns error', eventType: 'dns error' }, { eventId: 1173914451395471400, eventSeverity: 'low', eventKey: '223.6.6.6 dns error', eventType: 'dns error' }, { eventId: 1173905460971956200, eventSeverity: 'critical', eventKey: 'abc.gjh.sched.intlscdn.com dns error', eventType: 'dns error' }, { eventId: 1173901145351907300, eventSeverity: 'critical', eventKey: 'console1 dns error', eventType: 'dns error' }, { eventId: 1173895360618162200, eventSeverity: 'critical', eventKey: 'log2 dns error', eventType: 'dns error' }, { eventId: 1173895382445320200, eventSeverity: 'critical', eventKey: 'log1 dns error', eventType: 'dns error' }, { eventId: 1173886793802573800, eventSeverity: 'low', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1173884740271335400, eventSeverity: 'critical', eventKey: '116.178.216.99 dns error', eventType: 'dns error' }, { eventId: 1173875828281305000, eventSeverity: 'low', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1173870519835945000, eventSeverity: 'critical', eventKey: 'abc.gjh.sched.intlscdn.com dns error', eventType: 'dns error' }, { eventId: 1173864186067806200, eventSeverity: 'critical', eventKey: 'console1 dns error', eventType: 'dns error' }, { eventId: 1173864799593818000, eventSeverity: 'low', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1173843054476388400, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1173830460659198000, eventSeverity: 'critical', eventKey: 'abc.gjh.sched.intlscdn.com dns error', eventType: 'dns error' }, { eventId: 1173827299982698500, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1173801162657228800, eventSeverity: 'critical', eventKey: '116.178.216.99 dns error', eventType: 'dns error' }, { eventId: 1173801406899939300, eventSeverity: 'critical', eventKey: 'vt147.ddns.net dns error', eventType: 'dns error' }, { eventId: 1173804333769156600, eventSeverity: 'critical', eventKey: 'abc.gjh.sched.intlscdn.com dns error', eventType: 'dns error' }, { eventId: 1173785470155352000, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1173787257264400400, eventSeverity: 'info', eventKey: '116.178.65.117 http error', eventType: 'http error' }, { eventId: 1173782556707907600, eventSeverity: 'critical', eventKey: '180.76.76.76 dns error', eventType: 'dns error' }, { eventId: 1173772848655755300, eventSeverity: 'info', eventKey: 'youku http error', eventType: 'http error' }, { eventId: 1173761658923772000, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1173756759456606200, eventSeverity: 'critical', eventKey: '1.1.1.2 dns error', eventType: 'dns error' }, { eventId: 1173737380127959000, eventSeverity: 'high', eventKey: '180.76.76.76 dns error', eventType: 'dns error' }, { eventId: 1173727189378525200, eventSeverity: 'low', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1173709680659130400, eventSeverity: 'medium', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1173705227851786200, eventSeverity: 'critical', eventKey: 'xinjiang-cloud-n15-es02.221.7.1.20 dns error', eventType: 'dns error' }, { eventId: 1173707481317107700, eventSeverity: 'info', eventKey: '116.178.78.241 http error', eventType: 'http error' }, { eventId: 1173700414535624700, eventSeverity: 'high', eventKey: '116.178.78.180 http error', eventType: 'http error' }, { eventId: 1173700481191504000, eventSeverity: 'info', eventKey: 'apple_hls http error', eventType: 'http error' }, { eventId: 1173693224777148400, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1173674352053315600, eventSeverity: 'critical', eventKey: 'log2 dns error', eventType: 'dns error' }, { eventId: 1173674422567954400, eventSeverity: 'critical', eventKey: 'log1 dns error', eventType: 'dns error' }, { eventId: 1173665352570103800, eventSeverity: 'critical', eventKey: '1.1.1.2 dns error', eventType: 'dns error' }, { eventId: 1173624683306674200, eventSeverity: 'low', eventKey: 'youku http error', eventType: 'http error' }, { eventId: 1173613740048771000, eventSeverity: 'medium', eventKey: '116.178.216.99 dns error', eventType: 'dns error' }, { eventId: 1173614443718764500, eventSeverity: 'critical', eventKey: '1.1.1.2 dns error', eventType: 'dns error' }, { eventId: 1173612472630765600, eventSeverity: 'info', eventKey: 'cloudflare http error', eventType: 'http error' }, { eventId: 1173595264408086500, eventSeverity: 'medium', eventKey: '116.178.78.241 http error', eventType: 'http error' }, { eventId: 1173565664936323000, eventSeverity: 'medium', eventKey: '180.76.76.76 dns error', eventType: 'dns error' }, { eventId: 1173563545973942300, eventSeverity: 'critical', eventKey: 'vt147.ddns.net dns error', eventType: 'dns error' }, { eventId: 1173555558374959000, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1173534826819479600, eventSeverity: 'critical', eventKey: '221.7.1.20 dns error', eventType: 'dns error' }, { eventId: 1173527753847203800, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1173530044121737200, eventSeverity: 'critical', eventKey: 'log1 dns error', eventType: 'dns error' }, { eventId: 1173511643475208200, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1173504415263352800, eventSeverity: 'info', eventKey: '116.178.78.241 http error', eventType: 'http error' }, { eventId: 1173492761289025500, eventSeverity: 'low', eventKey: '223.6.6.6 dns error', eventType: 'dns error' }, { eventId: 1173489002890651600, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1173482380537620500, eventSeverity: 'critical', eventKey: '1.1.1.2 dns error', eventType: 'dns error' }, { eventId: 1173469902801987600, eventSeverity: 'low', eventKey: 'windows_update http error', eventType: 'http error' }, { eventId: 1173464020038969300, eventSeverity: 'critical', eventKey: '1.1.1.2 dns error', eventType: 'dns error' }, { eventId: 1173465920847210500, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1173454260061333500, eventSeverity: 'high', eventKey: 'windows_update http error', eventType: 'http error' }, { eventId: 1173449125830584300, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1173442930088601600, eventSeverity: 'critical', eventKey: 'dbhost.user.domain dns error', eventType: 'dns error' }, { eventId: 1173435918537713700, eventSeverity: 'medium', eventKey: 'windows_update http error', eventType: 'http error' }, { eventId: 1173424676796360700, eventSeverity: 'low', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1173422689417685000, eventSeverity: 'critical', eventKey: 'vt147.ddns.net dns error', eventType: 'dns error' }, { eventId: 1173418655268989000, eventSeverity: 'critical', eventKey: '1.1.1.2 dns error', eventType: 'dns error' }, { eventId: 1173403767184287700, eventSeverity: 'info', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20event_id%20AS%20event_id%2Cevent_severity%20AS%20event_severity%2C%20event_key%20AS%20event_key%2C%20event_type%20AS%20event_type%20FROM%20performance_event%20WHERE%20start_time%20%3E%3D%201675222963%20AND%20end_time%20%3C%201675309363%20ORDER%20BY%20start_time%20DESC%20&format=json&option=real-time', msg: 'OK' } } }, empty: { data: { + status: 200, data: { status: 200, code: 200, diff --git a/test/views/charts2/charts/npm/mockData/NpmEventsHeader.js b/test/views/charts2/charts/npm/mockData/NpmEventsHeader.js index 29f50f7f..fcaf5e99 100644 --- a/test/views/charts2/charts/npm/mockData/NpmEventsHeader.js +++ b/test/views/charts2/charts/npm/mockData/NpmEventsHeader.js @@ -1,13 +1,14 @@ export const mockData = { common: { data: { - data: { status: 200, code: 200, queryKey: '6480498979f7501d822572ebeb9e9665', success: true, message: null, statistics: { elapsed: 0, rows_read: 3, result_size: 167, result_rows: 5 }, job: null, formatType: 'json', meta: [{ name: 'event_severity', type: 'string', category: 'Dimension' }, { name: 'count', type: 'long', category: 'Metric' }], data: { resultType: 'table', result: [{ eventSeverity: 'critical', count: 322334 }, { eventSeverity: 'high', count: 1111 }, { eventSeverity: 'info', count: 122222 }, { eventSeverity: 'low', count: 14456678 }, { eventSeverity: 'medium', count: 2000000 }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20event_severity%20AS%20event_severity%2C%20COUNT%28*%29%20AS%20count%20FROM%20performance_event%20WHERE%20start_time%20%3E%3D%201675026686%20AND%20end_time%20%3C%201675048286%20GROUP%20BY%20event_severity&format=json&option=real-time', msg: 'OK' } + status: 200, + data: { code: 200, queryKey: '6480498979f7501d822572ebeb9e9665', success: true, message: null, statistics: { elapsed: 0, rows_read: 3, result_size: 167, result_rows: 5 }, job: null, formatType: 'json', meta: [{ name: 'event_severity', type: 'string', category: 'Dimension' }, { name: 'count', type: 'long', category: 'Metric' }], data: { resultType: 'table', result: [{ eventSeverity: 'critical', count: 322334 }, { eventSeverity: 'high', count: 1111 }, { eventSeverity: 'info', count: 122222 }, { eventSeverity: 'low', count: 14456678 }, { eventSeverity: 'medium', count: 2000000 }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20event_severity%20AS%20event_severity%2C%20COUNT%28*%29%20AS%20count%20FROM%20performance_event%20WHERE%20start_time%20%3E%3D%201675026686%20AND%20end_time%20%3C%201675048286%20GROUP%20BY%20event_severity&format=json&option=real-time', msg: 'OK' } } }, empty: { data: { + status: 200, data: { - status: 200, code: 200, data: { resultType: 'table', @@ -19,6 +20,7 @@ export const mockData = { }, boundary: { data: { + status: 200, data: { status: 200, code: 200, diff --git a/test/views/charts2/charts/npm/mockData/NpmNetworkQuantity.js b/test/views/charts2/charts/npm/mockData/NpmNetworkQuantity.js index a71e3de1..d85c67eb 100644 --- a/test/views/charts2/charts/npm/mockData/NpmNetworkQuantity.js +++ b/test/views/charts2/charts/npm/mockData/NpmNetworkQuantity.js @@ -2,44 +2,56 @@ export const mockData = { common: { drillDown: { data1: { + status: 200, data: { status: 200, code: 200, queryKey: '176825b31c1b552bca8b3ec494cb7af3', success: true, message: null, statistics: { elapsed: 10, rows_read: 112586, bytes_read: 10235742, result_size: 771, result_rows: 1 }, job: null, formatType: 'json', meta: [{ name: 'ip', type: 'string', category: 'Dimension' }, { name: 'establish_latency_ms_avg', type: 'double', category: 'Metric' }, { name: 'establish_latency_ms_p50', type: 'double', category: 'Metric' }, { name: 'establish_latency_ms_p90', type: 'double', category: 'Metric' }, { name: 'establish_latency_ms_p95', type: 'double', category: 'Metric' }, { name: 'establish_latency_ms_p99', type: 'double', category: 'Metric' }, { name: 'http_response_latency_avg', type: 'double', category: 'Metric' }, { name: 'http_response_latency_p50', type: 'double', category: 'Metric' }, { name: 'http_response_latency_p90', type: 'double', category: 'Metric' }, { name: 'http_response_latency_p95', type: 'double', category: 'Metric' }, { name: 'http_response_latency_p99', type: 'double', category: 'Metric' }, { name: 'ssl_con_latency_avg', type: 'double', category: 'Metric' }, { name: 'ssl_con_latency_p50', type: 'double', category: 'Metric' }, { name: 'ssl_con_latency_p90', type: 'double', category: 'Metric' }, { name: 'ssl_con_latency_p95', type: 'double', category: 'Metric' }, { name: 'ssl_con_latency_p99', type: 'double', category: 'Metric' }, { name: 'tcp_lostlen_percent_avg', type: 'double', category: 'Metric' }, { name: 'tcp_lostlen_percent_p50', type: 'double', category: 'Metric' }, { name: 'tcp_lostlen_percent_p90', type: 'double', category: 'Metric' }, { name: 'tcp_lostlen_percent_p95', type: 'double', category: 'Metric' }, { name: 'tcp_lostlen_percent_p99', type: 'double', category: 'Metric' }, { name: 'pkt_retrans_percent_avg', type: 'double', category: 'Metric' }, { name: 'pkt_retrans_percent_p50', type: 'double', category: 'Metric' }, { name: 'pkt_retrans_percent_p90', type: 'double', category: 'Metric' }, { name: 'pkt_retrans_percent_p95', type: 'double', category: 'Metric' }, { name: 'pkt_retrans_percent_p99', type: 'double', category: 'Metric' }], data: { resultType: 'object', result: { ip: '116.178.70.242', establishLatencyMsAvg: 130.8252, establishLatencyMsP50: 81, establishLatencyMsP90: 262, establishLatencyMsP95: 445, establishLatencyMsP99: 601, httpResponseLatencyAvg: 598.2844, httpResponseLatencyP50: 88, httpResponseLatencyP90: 2282, httpResponseLatencyP95: 2949, httpResponseLatencyP99: 4620, sslConLatencyAvg: 1, sslConLatencyP50: 0, sslConLatencyP90: 0, sslConLatencyP95: 0, sslConLatencyP99: 0, tcpLostlenPercentAvg: 0.0108, tcpLostlenPercentP50: 0.0017, tcpLostlenPercentP90: 0.0224, tcpLostlenPercentP95: 0.0346, tcpLostlenPercentP99: 0.1372, pktRetransPercentAvg: 0.0379, pktRetransPercentP50: 0.0202, pktRetransPercentP90: 0.0946, pktRetransPercentP95: 0.1047, pktRetransPercentP99: 0.183 } }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20ip%20AS%20ip%2C%20ROUND%28AVG%28avg_establish_latency_ms%29%2C%204%29%20AS%20establish_latency_ms_avg%2C%20ROUND%28QUANTILE%28avg_establish_latency_ms%2C0.50%29%29%20AS%20establish_latency_ms_p50%2C%20ROUND%28QUANTILE%28avg_establish_latency_ms%2C0.90%29%29%20AS%20establish_latency_ms_p90%2C%20ROUND%28QUANTILE%28avg_establish_latency_ms%2C0.95%29%29%20AS%20establish_latency_ms_p95%2C%20ROUND%28QUANTILE%28avg_establish_latency_ms%2C0.99%29%29%20AS%20establish_latency_ms_p99%2C%20ROUND%28AVG%28avg_http_response_latency_ms%29%2C%204%29%20AS%20http_response_latency_avg%2C%20ROUND%28QUANTILE%28avg_http_response_latency_ms%2C0.50%29%29%20AS%20http_response_latency_p50%2C%20ROUND%28QUANTILE%28avg_http_response_latency_ms%2C0.90%29%29%20AS%20http_response_latency_p90%2C%20ROUND%28QUANTILE%28avg_http_response_latency_ms%2C0.95%29%29%20AS%20http_response_latency_p95%2C%20ROUND%28QUANTILE%28avg_http_response_latency_ms%2C0.99%29%29%20AS%20http_response_latency_p99%2C%20ROUND%28AVG%28avg_ssl_con_latency_ms%29%2C%204%29%20AS%20ssl_con_latency_avg%2C%20ROUND%28QUANTILE%28avg_ssl_con_latency_ms%2C0.50%29%29%20AS%20ssl_con_latency_p50%2C%20ROUND%28QUANTILE%28avg_ssl_con_latency_ms%2C0.90%29%29%20AS%20ssl_con_latency_p90%2C%20ROUND%28QUANTILE%28avg_ssl_con_latency_ms%2C0.95%29%29%20AS%20ssl_con_latency_p95%2C%20ROUND%28QUANTILE%28avg_ssl_con_latency_ms%2C0.99%29%29%20AS%20ssl_con_latency_p99%2C%20ROUND%28AVG%28tcp_lostlen_ratio%29%2C%204%29%20AS%20tcp_lostlen_percent_avg%2C%20ROUND%28QUANTILE%28tcp_lostlen_ratio%2C0.50%29%2C%204%29%20AS%20tcp_lostlen_percent_p50%2C%20ROUND%28QUANTILE%28tcp_lostlen_ratio%2C0.90%29%2C%204%29%20AS%20tcp_lostlen_percent_p90%2C%20ROUND%28QUANTILE%28tcp_lostlen_ratio%2C0.95%29%2C%204%29%20AS%20tcp_lostlen_percent_p95%2C%20ROUND%28QUANTILE%28tcp_lostlen_ratio%2C0.99%29%2C%204%29%20AS%20tcp_lostlen_percent_p99%2C%20ROUND%28AVG%28pkt_retrans_ratio%29%2C%204%29%20AS%20pkt_retrans_percent_avg%2C%20ROUND%28QUANTILE%28pkt_retrans_ratio%2C0.50%29%2C%204%29%20AS%20pkt_retrans_percent_p50%2C%20ROUND%28QUANTILE%28pkt_retrans_ratio%2C0.90%29%2C%204%29%20AS%20pkt_retrans_percent_p90%2C%20ROUND%28QUANTILE%28pkt_retrans_ratio%2C0.95%29%2C%204%29%20AS%20pkt_retrans_percent_p95%2C%20ROUND%28QUANTILE%28pkt_retrans_ratio%2C0.99%29%2C%204%29%20AS%20pkt_retrans_percent_p99%20FROM%20metric_ip%20WHERE%20%20stat_time%20%3E%3D%201675215165%20AND%20stat_time%20%3C%201675218765%20%20%20AND%20%28ip%3D%27116.178.70.242%27%20and%20side%3D%27server%27%29%20%20GROUP%20BY%20ip&format=json&option=real-time', msg: 'OK' } }, data2: { + status: 200, data: { status: 200, code: 200, queryKey: 'c45cc8bbb2aecd158c72a550093c07bb', success: true, message: null, statistics: { elapsed: 10, rows_read: 109487, bytes_read: 9949922, result_size: 769, result_rows: 1 }, job: null, formatType: 'json', meta: [{ name: 'ip', type: 'string', category: 'Dimension' }, { name: 'establish_latency_ms_avg', type: 'double', category: 'Metric' }, { name: 'establish_latency_ms_p50', type: 'double', category: 'Metric' }, { name: 'establish_latency_ms_p90', type: 'double', category: 'Metric' }, { name: 'establish_latency_ms_p95', type: 'double', category: 'Metric' }, { name: 'establish_latency_ms_p99', type: 'double', category: 'Metric' }, { name: 'http_response_latency_avg', type: 'double', category: 'Metric' }, { name: 'http_response_latency_p50', type: 'double', category: 'Metric' }, { name: 'http_response_latency_p90', type: 'double', category: 'Metric' }, { name: 'http_response_latency_p95', type: 'double', category: 'Metric' }, { name: 'http_response_latency_p99', type: 'double', category: 'Metric' }, { name: 'ssl_con_latency_avg', type: 'double', category: 'Metric' }, { name: 'ssl_con_latency_p50', type: 'double', category: 'Metric' }, { name: 'ssl_con_latency_p90', type: 'double', category: 'Metric' }, { name: 'ssl_con_latency_p95', type: 'double', category: 'Metric' }, { name: 'ssl_con_latency_p99', type: 'double', category: 'Metric' }, { name: 'tcp_lostlen_percent_avg', type: 'double', category: 'Metric' }, { name: 'tcp_lostlen_percent_p50', type: 'double', category: 'Metric' }, { name: 'tcp_lostlen_percent_p90', type: 'double', category: 'Metric' }, { name: 'tcp_lostlen_percent_p95', type: 'double', category: 'Metric' }, { name: 'tcp_lostlen_percent_p99', type: 'double', category: 'Metric' }, { name: 'pkt_retrans_percent_avg', type: 'double', category: 'Metric' }, { name: 'pkt_retrans_percent_p50', type: 'double', category: 'Metric' }, { name: 'pkt_retrans_percent_p90', type: 'double', category: 'Metric' }, { name: 'pkt_retrans_percent_p95', type: 'double', category: 'Metric' }, { name: 'pkt_retrans_percent_p99', type: 'double', category: 'Metric' }], data: { resultType: 'object', result: { ip: '116.178.70.242', establishLatencyMsAvg: 86.5147, establishLatencyMsP50: 68, establishLatencyMsP90: 131, establishLatencyMsP95: 152, establishLatencyMsP99: 321, httpResponseLatencyAvg: 311.6164, httpResponseLatencyP50: 66, httpResponseLatencyP90: 305, httpResponseLatencyP95: 592, httpResponseLatencyP99: 5724, sslConLatencyAvg: 1, sslConLatencyP50: 0, sslConLatencyP90: 0, sslConLatencyP95: 0, sslConLatencyP99: 0, tcpLostlenPercentAvg: 0.0147, tcpLostlenPercentP50: 0.0011, tcpLostlenPercentP90: 0.0226, tcpLostlenPercentP95: 0.0357, tcpLostlenPercentP99: 0.2522, pktRetransPercentAvg: 0.0357, pktRetransPercentP50: 0.0192, pktRetransPercentP90: 0.0919, pktRetransPercentP95: 0.1043, pktRetransPercentP99: 0.2249 } }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20ip%20AS%20ip%2C%20ROUND%28AVG%28avg_establish_latency_ms%29%2C%204%29%20AS%20establish_latency_ms_avg%2C%20ROUND%28QUANTILE%28avg_establish_latency_ms%2C0.50%29%29%20AS%20establish_latency_ms_p50%2C%20ROUND%28QUANTILE%28avg_establish_latency_ms%2C0.90%29%29%20AS%20establish_latency_ms_p90%2C%20ROUND%28QUANTILE%28avg_establish_latency_ms%2C0.95%29%29%20AS%20establish_latency_ms_p95%2C%20ROUND%28QUANTILE%28avg_establish_latency_ms%2C0.99%29%29%20AS%20establish_latency_ms_p99%2C%20ROUND%28AVG%28avg_http_response_latency_ms%29%2C%204%29%20AS%20http_response_latency_avg%2C%20ROUND%28QUANTILE%28avg_http_response_latency_ms%2C0.50%29%29%20AS%20http_response_latency_p50%2C%20ROUND%28QUANTILE%28avg_http_response_latency_ms%2C0.90%29%29%20AS%20http_response_latency_p90%2C%20ROUND%28QUANTILE%28avg_http_response_latency_ms%2C0.95%29%29%20AS%20http_response_latency_p95%2C%20ROUND%28QUANTILE%28avg_http_response_latency_ms%2C0.99%29%29%20AS%20http_response_latency_p99%2C%20ROUND%28AVG%28avg_ssl_con_latency_ms%29%2C%204%29%20AS%20ssl_con_latency_avg%2C%20ROUND%28QUANTILE%28avg_ssl_con_latency_ms%2C0.50%29%29%20AS%20ssl_con_latency_p50%2C%20ROUND%28QUANTILE%28avg_ssl_con_latency_ms%2C0.90%29%29%20AS%20ssl_con_latency_p90%2C%20ROUND%28QUANTILE%28avg_ssl_con_latency_ms%2C0.95%29%29%20AS%20ssl_con_latency_p95%2C%20ROUND%28QUANTILE%28avg_ssl_con_latency_ms%2C0.99%29%29%20AS%20ssl_con_latency_p99%2C%20ROUND%28AVG%28tcp_lostlen_ratio%29%2C%204%29%20AS%20tcp_lostlen_percent_avg%2C%20ROUND%28QUANTILE%28tcp_lostlen_ratio%2C0.50%29%2C%204%29%20AS%20tcp_lostlen_percent_p50%2C%20ROUND%28QUANTILE%28tcp_lostlen_ratio%2C0.90%29%2C%204%29%20AS%20tcp_lostlen_percent_p90%2C%20ROUND%28QUANTILE%28tcp_lostlen_ratio%2C0.95%29%2C%204%29%20AS%20tcp_lostlen_percent_p95%2C%20ROUND%28QUANTILE%28tcp_lostlen_ratio%2C0.99%29%2C%204%29%20AS%20tcp_lostlen_percent_p99%2C%20ROUND%28AVG%28pkt_retrans_ratio%29%2C%204%29%20AS%20pkt_retrans_percent_avg%2C%20ROUND%28QUANTILE%28pkt_retrans_ratio%2C0.50%29%2C%204%29%20AS%20pkt_retrans_percent_p50%2C%20ROUND%28QUANTILE%28pkt_retrans_ratio%2C0.90%29%2C%204%29%20AS%20pkt_retrans_percent_p90%2C%20ROUND%28QUANTILE%28pkt_retrans_ratio%2C0.95%29%2C%204%29%20AS%20pkt_retrans_percent_p95%2C%20ROUND%28QUANTILE%28pkt_retrans_ratio%2C0.99%29%2C%204%29%20AS%20pkt_retrans_percent_p99%20FROM%20metric_ip%20WHERE%20%20stat_time%20%3E%3D%201675215165-3600%20AND%20stat_time%20%3C%201675218765-3600%20%20%20AND%20%28ip%3D%27116.178.70.242%27%20and%20side%3D%27server%27%29%20%20GROUP%20BY%20ip&format=json&option=real-time', msg: 'OK' } } }, notDrillDown: { cycle0: { tcp0: { + status: 200, data: { status: 200, code: 200, queryKey: '43786ef6059289466ee0870e51fd4e10', success: true, message: null, statistics: { elapsed: 13, rows_read: 112696, bytes_read: 3831664, result_size: 149, result_rows: 1 }, job: null, formatType: 'json', meta: [{ name: 'establish_latency_ms_avg', type: 'double', category: 'Metric' }, { name: 'establish_latency_ms_p50', type: 'double', category: 'Metric' }, { name: 'establish_latency_ms_p90', type: 'double', category: 'Metric' }, { name: 'establish_latency_ms_p95', type: 'double', category: 'Metric' }, { name: 'establish_latency_ms_p99', type: 'double', category: 'Metric' }], data: { resultType: 'object', result: { establishLatencyMsAvg: 92, establishLatencyMsP50: 49, establishLatencyMsP90: 91, establishLatencyMsP95: 160, establishLatencyMsP99: 789 } }, originalUrl: 'http://192.168.44.55:9999?query=%20SELECT%20ROUND%28AVG%28common_establish_latency_ms%29%29%20AS%20establish_latency_ms_avg%2C%20ROUND%28QUANTILE%28common_establish_latency_ms%2C0.5%29%29%20AS%20establish_latency_ms_p50%2C%20ROUND%28QUANTILE%28common_establish_latency_ms%2C0.9%29%29%20AS%20establish_latency_ms_p90%2C%20ROUND%28QUANTILE%28common_establish_latency_ms%2C0.95%29%29%20AS%20establish_latency_ms_p95%2C%20ROUND%28QUANTILE%28common_establish_latency_ms%2C0.99%29%29%20AS%20establish_latency_ms_p99%20FROM%20session_record_cn%20WHERE%20common_recv_time%20%3E%3D%201675140930%20AND%20common_recv_time%20%3C%201675144530%20AND%20common_l4_protocol%20IN%20%28%27IPv4_TCP%27%2C%27IPv6_TCP%27%29%20&format=json&option=real-time', msg: 'OK' } }, http0: { + status: 200, data: { status: 200, code: 200, queryKey: '9c24dd3ad820f76adc84c261c7754a1e', success: true, message: null, statistics: { elapsed: 8, rows_read: 112696, bytes_read: 3319507, result_size: 157, result_rows: 1 }, job: null, formatType: 'json', meta: [{ name: 'http_response_latency_avg', type: 'double', category: 'Metric' }, { name: 'http_response_latency_p50', type: 'double', category: 'Metric' }, { name: 'http_response_latency_p90', type: 'double', category: 'Metric' }, { name: 'http_response_latency_p95', type: 'double', category: 'Metric' }, { name: 'http_response_latency_p99', type: 'double', category: 'Metric' }], data: { resultType: 'object', result: { httpResponseLatencyAvg: 193, httpResponseLatencyP50: 56, httpResponseLatencyP90: 128, httpResponseLatencyP95: 266, httpResponseLatencyP99: 2093 } }, originalUrl: 'http://192.168.44.55:9999?query=%20SELECT%20ROUND%28AVG%28http_response_latency_ms%29%29%20AS%20http_response_latency_avg%2C%20ROUND%28QUANTILE%28http_response_latency_ms%2C0.5%29%29%20AS%20http_response_latency_p50%2C%20ROUND%28QUANTILE%28http_response_latency_ms%2C0.9%29%29%20AS%20http_response_latency_p90%2C%20ROUND%28QUANTILE%28http_response_latency_ms%2C0.95%29%29%20AS%20http_response_latency_p95%2C%20ROUND%28QUANTILE%28http_response_latency_ms%2C0.99%29%29%20AS%20http_response_latency_p99%20FROM%20session_record_cn%20WHERE%20common_recv_time%20%3E%3D%201675140930%20AND%20common_recv_time%20%3C%201675144530%20AND%20common_schema_type%20%3D%20%27HTTP%27%20&format=json&option=real-time', msg: 'OK' } }, ssl0: { + status: 200, data: { status: 200, code: 200, queryKey: '15433596850b0bc440b087db3995b073', success: true, message: null, statistics: { elapsed: 7, rows_read: 112696, bytes_read: 3319507, result_size: 117, result_rows: 1 }, job: null, formatType: 'json', meta: [{ name: 'ssl_con_latency_avg', type: 'double', category: 'Metric' }, { name: 'ssl_con_latency_p50', type: 'double', category: 'Metric' }, { name: 'ssl_con_latency_p90', type: 'double', category: 'Metric' }, { name: 'ssl_con_latency_p95', type: 'double', category: 'Metric' }, { name: 'ssl_con_latency_p99', type: 'double', category: 'Metric' }], data: { resultType: 'object', result: { sslConLatencyAvg: 1, sslConLatencyP50: 0, sslConLatencyP90: 0, sslConLatencyP95: 0, sslConLatencyP99: 0 } }, originalUrl: 'http://192.168.44.55:9999?query=%20SELECT%20ROUND%28AVG%28ssl_con_latency_ms%29%29%20AS%20ssl_con_latency_avg%2C%20ROUND%28QUANTILE%28ssl_con_latency_ms%2C0.5%29%29%20AS%20ssl_con_latency_p50%2C%20ROUND%28QUANTILE%28ssl_con_latency_ms%2C0.9%29%29%20AS%20ssl_con_latency_p90%2C%20ROUND%28QUANTILE%28ssl_con_latency_ms%2C0.95%29%29%20AS%20ssl_con_latency_p95%2C%20ROUND%28QUANTILE%28ssl_con_latency_ms%2C0.99%29%29%20AS%20ssl_con_latency_p99%20FROM%20session_record_cn%20WHERE%20common_recv_time%20%3E%3D%201675140930%20AND%20common_recv_time%20%3C%201675144530%20AND%20common_schema_type%20%3D%20%27SSL%27%20&format=json&option=real-time', msg: 'OK' } }, tcpPercent0: { + status: 200, data: { status: 200, code: 200, queryKey: '4249cc0e01eaa33feb66a35885c4497c', success: true, message: null, statistics: { elapsed: 10, rows_read: 112696, bytes_read: 6649064, result_size: 162, result_rows: 1 }, job: null, formatType: 'json', meta: [{ name: 'tcp_lostlen_percent_avg', type: 'double', category: 'Metric' }, { name: 'tcp_lostlen_percent_p50', type: 'double', category: 'Metric' }, { name: 'tcp_lostlen_percent_p90', type: 'double', category: 'Metric' }, { name: 'tcp_lostlen_percent_p95', type: 'double', category: 'Metric' }, { name: 'tcp_lostlen_percent_p99', type: 'double', category: 'Metric' }], data: { resultType: 'object', result: { tcpLostlenPercentAvg: 0.0156, tcpLostlenPercentP50: 0.0068, tcpLostlenPercentP90: 0.0169, tcpLostlenPercentP95: 0.0223, tcpLostlenPercentP99: 0.2187 } }, originalUrl: 'http://192.168.44.55:9999?query=%20SELECT%20ROUND%28AVG%28sequence_gap_loss_percent%29%2C%204%29%20AS%20tcp_lostlen_percent_avg%2C%20ROUND%28QUANTILE%28sequence_gap_loss_percent%2C%200.5%29%2C%204%29%20AS%20tcp_lostlen_percent_p50%2C%20ROUND%28QUANTILE%28sequence_gap_loss_percent%2C%200.9%29%2C%204%29%20AS%20tcp_lostlen_percent_p90%2C%20ROUND%28QUANTILE%28sequence_gap_loss_percent%2C%200.95%29%2C%204%29%20AS%20tcp_lostlen_percent_p95%2C%20ROUND%28QUANTILE%28sequence_gap_loss_percent%2C%200.99%29%2C%204%29%20AS%20tcp_lostlen_percent_p99%20FROM%28%20SELECT%20ROUND%28SUM%28common_c2s_tcp_lostlen%20%2B%20common_s2c_tcp_lostlen%29%20%2F%20SUM%28common_c2s_byte_num%20%2B%20common_s2c_byte_num%20%2B%20common_c2s_tcp_lostlen%20%2B%20common_s2c_tcp_lostlen%29%2C%204%29%20AS%20sequence_gap_loss_percent%2C%20toDateTime%28toStartOfInterval%28toDateTime%28common_recv_time%29%2C%20INTERVAL%2036%20SECOND%29%29%20AS%20granularity%20FROM%20session_record_cn%20WHERE%20common_recv_time%20%3E%3D%201675140930%20AND%20common_recv_time%20%3C%201675144530%20AND%20common_l4_protocol%20IN%20%28%27IPv4_TCP%27%2C%20%27IPv6_TCP%27%29%20GROUP%20BY%20granularity%20%29%20&format=json&option=real-time', msg: 'OK' } }, packetPercent0: { + status: 200, data: { status: 200, code: 200, queryKey: '00ccdfe80cd8e68ca8e60c57ac9cb60b', success: true, message: null, statistics: { elapsed: 9, rows_read: 112696, bytes_read: 6649064, result_size: 161, result_rows: 1 }, job: null, formatType: 'json', meta: [{ name: 'pkt_retrans_percent_avg', type: 'double', category: 'Metric' }, { name: 'pkt_retrans_percent_p50', type: 'double', category: 'Metric' }, { name: 'pkt_retrans_percent_p90', type: 'double', category: 'Metric' }, { name: 'pkt_retrans_percent_p95', type: 'double', category: 'Metric' }, { name: 'pkt_retrans_percent_p99', type: 'double', category: 'Metric' }], data: { resultType: 'object', result: { pktRetransPercentAvg: 0.0382, pktRetransPercentP50: 0.0353, pktRetransPercentP90: 0.0593, pktRetransPercentP95: 0.066, pktRetransPercentP99: 0.0926 } }, originalUrl: 'http://192.168.44.55:9999?query=%20SELECT%20ROUND%28AVG%28pkt_retrans_percent%29%2C%204%29%20AS%20pkt_retrans_percent_avg%2C%20ROUND%28QUANTILE%28pkt_retrans_percent%2C%200.5%29%2C%204%29%20AS%20pkt_retrans_percent_p50%2C%20ROUND%28QUANTILE%28pkt_retrans_percent%2C%200.9%29%2C%204%29%20AS%20pkt_retrans_percent_p90%2C%20ROUND%28QUANTILE%28pkt_retrans_percent%2C%200.95%29%2C%204%29%20AS%20pkt_retrans_percent_p95%2C%20ROUND%28QUANTILE%28pkt_retrans_percent%2C%200.99%29%2C%204%29%20AS%20pkt_retrans_percent_p99%20FROM%28%20SELECT%20ROUND%28SUM%28common_c2s_pkt_retrans%20%2B%20common_s2c_pkt_retrans%29%2F%20SUM%28common_c2s_pkt_num%20%2B%20common_s2c_pkt_num%29%2C4%29%20AS%20pkt_retrans_percent%2C%20toDateTime%28toStartOfInterval%28toDateTime%28common_recv_time%29%2C%20INTERVAL%2036%20SECOND%29%29%20AS%20granularity%20FROM%20session_record_cn%20WHERE%20common_recv_time%20%3E%3D%201675140930%20AND%20common_recv_time%20%3C%201675144530%20AND%20common_l4_protocol%20IN%20%28%27IPv4_TCP%27%2C%20%27IPv6_TCP%27%29%20GROUP%20BY%20granularity%20%29%20&format=json&option=real-time', msg: 'OK' } } - }, + }, cycle1: { tcp1: { + status: 200, data: { status: 200, code: 200, queryKey: '45b6f5188d3d59a11c95061ebeef5297', success: true, message: null, statistics: { elapsed: 7, rows_read: 116184, bytes_read: 3950256, result_size: 31, result_rows: 1 }, job: null, formatType: 'json', meta: [{ name: 'establish_latency_ms_avg', type: 'double', category: 'Metric' }], data: { resultType: 'object', result: { establishLatencyMsAvg: 96 } }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20ROUND%28AVG%28common_establish_latency_ms%29%29%20AS%20establish_latency_ms_avg%20FROM%20session_record_cn%20WHERE%20common_recv_time%20%3E%3D%201675140930-3600%20AND%20common_recv_time%20%3C%201675144530-3600%20AND%20common_l4_protocol%20IN%20%28%27IPv4_TCP%27%2C%27IPv6_TCP%27%29%20&format=json&option=real-time', msg: 'OK' } }, http1: { + status: 200, data: { status: 200, code: 200, queryKey: 'd807b6dd867a37c57d512768b4cebfc4', success: true, message: null, statistics: { elapsed: 12, rows_read: 116184, bytes_read: 3422832, result_size: 33, result_rows: 1 }, job: null, formatType: 'json', meta: [{ name: 'http_response_latency_avg', type: 'double', category: 'Metric' }], data: { resultType: 'object', result: { httpResponseLatencyAvg: 184 } }, originalUrl: 'http://192.168.44.55:9999?query=%20%20SELECT%20ROUND%28AVG%28http_response_latency_ms%29%29%20AS%20http_response_latency_avg%20FROM%20session_record_cn%20WHERE%20common_recv_time%20%3E%3D%201675140930-3600%20AND%20common_recv_time%20%3C%201675144530-3600%20AND%20common_schema_type%20%3D%20%27HTTP%27%20&format=json&option=real-time', msg: 'OK' } }, ssl1: { + status: 200, data: { status: 200, code: 200, queryKey: 'b8cd46d7a83f032bc5bd31092707c9fb', success: true, message: null, statistics: { elapsed: 8, rows_read: 116184, bytes_read: 3422832, result_size: 25, result_rows: 1 }, job: null, formatType: 'json', meta: [{ name: 'ssl_con_latency_avg', type: 'double', category: 'Metric' }], data: { resultType: 'object', result: { sslConLatencyAvg: 1 } }, originalUrl: 'http://192.168.44.55:9999?query=%20%20SELECT%20ROUND%28AVG%28ssl_con_latency_ms%29%29%20AS%20ssl_con_latency_avg%20FROM%20session_record_cn%20WHERE%20common_recv_time%20%3E%3D%201675140930-3600%20AND%20common_recv_time%20%3C%201675144530-3600%20AND%20common_schema_type%20%3D%20%27SSL%27%20&format=json&option=real-time', msg: 'OK' } }, tcpPercent1: { + status: 200, data: { status: 200, code: 200, queryKey: 'b2cbf07a6bd9e131f433fd17a784aa95', success: true, message: null, statistics: { elapsed: 11, rows_read: 116184, bytes_read: 6854856, result_size: 34, result_rows: 1 }, job: null, formatType: 'json', meta: [{ name: 'tcp_lostlen_percent_avg', type: 'double', category: 'Metric' }], data: { resultType: 'object', result: { tcpLostlenPercentAvg: 0.0258 } }, originalUrl: 'http://192.168.44.55:9999?query=%20%20SELECT%20ROUND%28AVG%28sequence_gap_loss_percent%29%2C%204%29%20AS%20tcp_lostlen_percent_avg%20FROM%28%20SELECT%20ROUND%28SUM%28common_c2s_tcp_lostlen%20%2B%20common_s2c_tcp_lostlen%29%20%2F%20SUM%28common_c2s_byte_num%20%2B%20common_s2c_byte_num%20%2B%20common_c2s_tcp_lostlen%20%2B%20common_s2c_tcp_lostlen%29%2C%204%29%20AS%20sequence_gap_loss_percent%2C%20toDateTime%28toStartOfInterval%28toDateTime%28common_recv_time%29%2CINTERVAL%2036%20SECOND%29%29%20AS%20granularity%20FROM%20session_record_cn%20WHERE%20common_recv_time%20%3E%3D%201675140930-3600%20AND%20common_recv_time%20%3C%201675144530-3600%20AND%20common_l4_protocol%20IN%20%28%27IPv4_TCP%27%2C%20%27IPv6_TCP%27%29%20GROUP%20BY%20granularity%20%29%20&format=json&option=real-time', msg: 'OK' } }, packetPercent1: { + status: 200, data: { status: 200, code: 200, queryKey: 'b87afb99b22c44769f4a284ed8b62d5b', success: true, message: null, statistics: { elapsed: 11, rows_read: 116184, bytes_read: 6854856, result_size: 34, result_rows: 1 }, job: null, formatType: 'json', meta: [{ name: 'pkt_retrans_percent_avg', type: 'double', category: 'Metric' }], data: { resultType: 'object', result: { pktRetransPercentAvg: 0.0419 } }, originalUrl: 'http://192.168.44.55:9999?query=%20%20SELECT%20ROUND%28AVG%28pkt_retrans_percent%29%2C%204%29%20AS%20pkt_retrans_percent_avg%20FROM%28%20SELECT%20ROUND%28SUM%28common_c2s_pkt_retrans%20%2B%20common_s2c_pkt_retrans%29%2F%20SUM%28common_c2s_pkt_num%20%2B%20common_s2c_pkt_num%29%2C4%29%20AS%20pkt_retrans_percent%2C%20toDateTime%28toStartOfInterval%28toDateTime%28common_recv_time%29%2C%20INTERVAL%2036%20SECOND%29%29%20AS%20granularity%20FROM%20session_record_cn%20WHERE%20common_recv_time%20%3E%3D%201675140930-3600%20AND%20common_recv_time%20%3C%201675144530-3600%20AND%20common_l4_protocol%20IN%20%28%27IPv4_TCP%27%2C%20%27IPv6_TCP%27%29%20GROUP%20BY%20granularity%20%29%20&format=json&option=real-time', msg: 'OK' } } } @@ -65,6 +77,7 @@ export const mockData = { }, empty: { data: { + status: 200, data: { status: 200, code: 200, @@ -79,6 +92,7 @@ export const mockData = { boundary: { drillDown: { data1: { + status: 200, data: { status: 200, code: 200, @@ -116,6 +130,7 @@ export const mockData = { } }, data2: { + status: 200, data: { status: 200, code: 200, diff --git a/test/views/charts2/charts/npm/mockData/NpmRecentEvents.js b/test/views/charts2/charts/npm/mockData/NpmRecentEvents.js index 0a449246..890bbd3b 100644 --- a/test/views/charts2/charts/npm/mockData/NpmRecentEvents.js +++ b/test/views/charts2/charts/npm/mockData/NpmRecentEvents.js @@ -1,9 +1,11 @@ export const mockData = { common: { data1: { + status: 200, data: { status: 200, code: 200, queryKey: '68d8aa5867b08b926b5bd38c36add9e5', success: true, message: null, statistics: { elapsed: 0, rows_read: 2, result_size: 550, result_rows: 5 }, job: null, formatType: 'json', meta: [{ name: 'event_id', type: 'long', category: 'Metric' }, { name: 'event_severity', type: 'string', category: 'Metric' }, { name: 'event_key', type: 'string', category: 'Metric' }, { name: 'event_type', type: 'string', category: 'Metric' }], data: { resultType: 'table', result: [{ eventId: 1173511643475208200, eventSeverity: 'critical', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1173504415263352800, eventSeverity: 'high', eventKey: '116.178.78.241 http error', eventType: 'http error' }, { eventId: 1173492761289025500, eventSeverity: 'medium', eventKey: '223.6.6.6 dns error', eventType: 'dns error' }, { eventId: 1173489002890651600, eventSeverity: 'low', eventKey: '114.114.114.114 dns error', eventType: 'dns error' }, { eventId: 1173482380537620500, eventSeverity: 'info', eventKey: '1.1.1.2 dns error', eventType: 'http error' }, { eventId: 1173482380537620500, eventSeverity: 'critical', eventKey: '1.1.1.2 dns error', eventType: 'dns error' }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20event_id%20AS%20event_id%2Cevent_severity%20AS%20event_severity%2C%20event_key%20AS%20event_key%2C%20event_type%20AS%20event_type%20FROM%20performance_event%20WHERE%20start_time%20%3E%3D%201675227528%20AND%20end_time%20%3C%201675231128%20ORDER%20BY%20start_time%20DESC%20%20LIMIT%208%20&format=json&option=real-time', msg: 'OK' } }, data2: { + status: 200, data: { status: 200, code: 200, queryKey: 'fc0bd92bf3b48a37310d5c004d8b7a7b', success: true, message: null, statistics: { elapsed: 0, rows_read: 2, result_size: 689, result_rows: 7 }, job: null, formatType: 'json', meta: [{ name: 'event_id', type: 'long', category: 'Metric' }, { name: 'event_severity', type: 'string', category: 'Metric' }, { name: 'event_type', type: 'string', category: 'Metric' }, { name: 'start_time', type: 'long', category: 'Metric' }], data: { resultType: 'table', result: [{ eventId: 1132790825086844900, eventSeverity: 'critical', eventType: 'http error', startTime: 1672802700 }, { eventId: 1132132403379142700, eventSeverity: 'high', eventType: 'dns error', startTime: 1672763400 }, { eventId: 1131441760155689000, eventSeverity: 'low', eventType: 'dns error', startTime: 1672722300 }, { eventId: 1131411523384598500, eventSeverity: 'medium', eventType: 'http error', startTime: 1672720500 }, { eventId: 1131390214323789800, eventSeverity: 'info', eventType: 'dns error', startTime: 1672719300 }, { eventId: 1131306200132968400, eventSeverity: 'critical', eventType: 'http error', startTime: 1672714200 }] }, originalUrl: 'http://192.168.44.55:9999?query=SELECT%20event_id%20AS%20event_id%2Cevent_severity%20AS%20event_severity%2C%20event_type%20AS%20event_type%2C%20start_time%20AS%20start_time%20FROM%20performance_event%20WHERE%20start_time%20%3E%3D%201672675200%20AND%20start_time%20%3C%201677513600%20AND%20server_ip%20%3D%20%27116.178.236.216%27%20ORDER%20BY%20start_time%20DESC&format=json&option=real-time', msg: 'OK' } }, query: { @@ -24,6 +26,7 @@ export const mockData = { }, empty: { data: { + status: 200, data: { status: 200, code: 200, @@ -37,6 +40,7 @@ export const mockData = { }, boundary: { data: { + status: 200, data: { status: 200, code: 200,