diff --git a/src/assets/css/components/views/entityExplorer/entityList/card.scss b/src/assets/css/components/views/entityExplorer/entityList/card.scss
index eadf5f49..76cc46ad 100644
--- a/src/assets/css/components/views/entityExplorer/entityList/card.scss
+++ b/src/assets/css/components/views/entityExplorer/entityList/card.scss
@@ -160,7 +160,7 @@
.body__detail {
cursor: pointer;
font-size: 14px;
- color: #8FA1BE;
+ color: #3976CB;
position: absolute;
right: 30px;
}
diff --git a/src/views/entityExplorer/entityList/Card.vue b/src/views/entityExplorer/entityList/Card.vue
index 5d7b8091..6a390b4f 100644
--- a/src/views/entityExplorer/entityList/Card.vue
+++ b/src/views/entityExplorer/entityList/Card.vue
@@ -45,19 +45,25 @@
{{$t('entities.recentAlert')}}:
-
{{entityData.alertCount || '-'}}
+
{{entityData.performanceCount}}
{{$t('entities.recentSecurity')}}:
-
{{entityData.securityCount || '-'}}
+
{{entityData.securityCount}}
-
{{entityData.bytesReceivedRate || 0}} bps
-
{{entityData.bytesSentRate || 0}} bps
+
+
+ {{entityData.bytesReceivedRate ? unitConvert(entityData.bytesReceivedRate, unitTypes.byte).join(' ') + 'ps' : '-'}}
+
+
+
+ {{entityData.bytesSentRate ? unitConvert(entityData.bytesSentRate, unitTypes.byte).join(' ') + 'ps' : '-'}}
+
{{$t('overall.detail')}}>
@@ -76,19 +82,24 @@
{{$t('entities.recentAlert')}}:
-
{{entityData.alertCount || '-'}}
+
{{entityData.performanceCount}}
{{$t('entities.recentSecurity')}}:
-
{{entityData.securityCount || '-'}}
+
{{entityData.securityCount}}
-
{{entityData.bytesReceivedRate || 0}} bps
-
{{entityData.bytesSentRate || 0}} bps
+
+ {{entityData.bytesReceivedRate ? unitConvert(entityData.bytesReceivedRate, unitTypes.byte).join(' ') + 'ps' : '-'}}
+
+
+
+ {{entityData.bytesSentRate ? unitConvert(entityData.bytesSentRate, unitTypes.byte).join(' ') + 'ps' : '-'}}
+
{{$t('overall.detail')}}>
@@ -107,15 +118,15 @@
{{$t('entities.recentAlert')}}:
-
{{entityData.alertCount || '-'}}
+
{{entityData.performanceCount}}
{{$t('entities.recentSecurity')}}:
-
{{entityData.securityCount || '-'}}
+
{{entityData.securityCount}}
{{entityData.bytesReceivedRate ? unitConvert(entityData.bytesReceivedRate, unitTypes.byte).join(' ') + 'ps' : '-'}}
@@ -129,16 +140,8 @@
diff --git a/src/views/entityExplorer/entityList/detailOverview/entityDetailMixin.js b/src/views/entityExplorer/entityList/detailOverview/entityDetailMixin.js
index e9dacf80..328a65f3 100644
--- a/src/views/entityExplorer/entityList/detailOverview/entityDetailMixin.js
+++ b/src/views/entityExplorer/entityList/detailOverview/entityDetailMixin.js
@@ -24,6 +24,7 @@ export default {
sentChart: null,
receivedChart: null
},
+ chartOption: null,
queryParams: {}
}
},
@@ -237,20 +238,16 @@ export default {
this.queryEntityDetailNetworkQuantity()
this.queryEntityDetailLinkOutUrl()
this.queryEntityDetailLinkInUrl()
- this.queryRelated()
}
},
setup () {
return {
- chartOption: entityListLineOption,
unitTypes,
unitConvert
}
},
mounted () {
- if (this.listMode === 'list') {
- this.chartOption = _.cloneDeep(entityListLineOption)
- setTimeout(() => { this.queryEntityDetail() })
- }
+ this.chartOption = _.cloneDeep(entityListLineOption)
+ setTimeout(() => { this.queryEntityDetail() })
}
}