Merge pull request #11443 from zhaoxiangchun/feature/zxc-agent-metirc

fix(monitor): fix agent monitor query
This commit is contained in:
Zexi Li
2021-06-21 00:34:37 +08:00
committed by GitHub
2 changed files with 3 additions and 0 deletions
+1
View File
@@ -20,6 +20,7 @@ var (
METRIC_RES_TYPE_OSS: "oss_name",
METRIC_RES_TYPE_CLOUDACCOUNT: "cloudaccount_name",
METRIC_RES_TYPE_STORAGE: "storage_name",
METRIC_RES_TYPE_AGENT: "vm_name",
}
MEASUREMENT_TAG_ID = map[string]string{
METRIC_RES_TYPE_HOST: "host_id",
+2
View File
@@ -752,6 +752,8 @@ func (c *QueryCondition) getTagKeyRelationMap() map[string]string {
relationMap = monitor.DomainTags
case monitor.METRIC_RES_TYPE_STORAGE:
relationMap = monitor.StorageTags
case monitor.METRIC_RES_TYPE_AGENT:
relationMap = monitor.ServerTags
default:
relationMap = monitor.HostTags
}