// Copyright 2019 Yunion // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package monitor var ( UnionTags = []string{ "host", "host_id", "id", "ips", "name", "zone", "zone_id", "zone_ext_id", "os_type", "status", "cloudregion", "cloudregion_id", "region_ext_id", "tenant", "tenant_id", "brand", "vm_scaling_group_id", "domain_id", "project_domain", } ServerTags = map[string]string{ "host": "host", "host_id": "host_id", "vm_id": "id", "vm_ip": "ips", "vm_name": "name", "zone": "zone", "zone_id": "zone_id", "zone_ext_id": "zone_ext_id", "os_type": "os_type", "status": "status", "cloudregion": "cloudregion", "cloudregion_id": "cloudregion_id", "region_ext_id": "region_ext_id", "tenant": "tenant", "tenant_id": "tenant_id", "brand": "brand", "scaling_group_id": "vm_scaling_group_id", "domain_id": "domain_id", "project_domain": "project_domain", "account": "account", "account_id": "account_id", "external_id": "external_id", "eip": "eip", "eip_mode": "eip_mode", "ips": "ips", "vips": "vips", "vip": "vip", "vip_eip": "vip_eip", } HostTags = map[string]string{ "host_id": "id", "host_ip": "ips", "host": "name", "zone": "zone", "zone_id": "zone_id", "zone_ext_id": "zone_ext_id", "os_type": "os_type", "status": "status", "cloudregion": "cloudregion", "cloudregion_id": "cloudregion_id", "region_ext_id": "region_ext_id", "tenant": "tenant", "tenant_id": "tenant_id", "brand": "brand", "domain_id": "domain_id", "project_domain": "project_domain", "access_ip": "access_ip", "account": "account", "account_id": "account_id", } RdsTags = map[string]string{ "host": "host", "host_id": "host_id", "rds_id": "id", "rds_ip": "ips", "rds_name": "name", "zone": "zone", "zone_id": "zone_id", "zone_ext_id": "zone_ext_id", "os_type": "os_type", "status": "status", "cloudregion": "cloudregion", "cloudregion_id": "cloudregion_id", "region_ext_id": "region_ext_id", "tenant": "tenant", "tenant_id": "tenant_id", "brand": "brand", "domain_id": "domain_id", "project_domain": "project_domain", "external_id": "external_id", "ip_addrs": "ip_addrs", "connection_str": "connection_str", "internal_connection_str": "internal_connection_str", } RedisTags = map[string]string{ "host": "host", "host_id": "host_id", "redis_id": "id", "redis_ip": "ips", "redis_name": "name", "zone": "zone", "zone_id": "zone_id", "zone_ext_id": "zone_ext_id", "os_type": "os_type", "status": "status", "cloudregion": "cloudregion", "cloudregion_id": "cloudregion_id", "region_ext_id": "region_ext_id", "tenant": "tenant", "tenant_id": "tenant_id", "brand": "brand", "domain_id": "domain_id", "project_domain": "project_domain", } OssTags = map[string]string{ "host": "host", "host_id": "host_id", "oss_id": "id", "oss_ip": "ips", "oss_name": "name", "zone": "zone", "zone_id": "zone_id", "zone_ext_id": "zone_ext_id", "os_type": "os_type", "status": "status", "cloudregion": "cloudregion", "cloudregion_id": "cloudregion_id", "region_ext_id": "region_ext_id", "tenant": "tenant", "tenant_id": "tenant_id", "brand": "brand", "domain_id": "domain_id", "project_domain": "project_domain", } ElbTags = map[string]string{ "host": "host", "host_id": "host_id", "elb_id": "id", "elb_ip": "ips", "elb_name": "name", "zone": "zone", "zone_id": "zone_id", "zone_ext_id": "zone_ext_id", "os_type": "os_type", "status": "status", "region": "region", "cloudregion": "cloudregion", "cloudregion_id": "cloudregion_id", "tenant": "tenant", "tenant_id": "tenant_id", "brand": "brand", "domain_id": "domain_id", "project_domain": "project_domain", } CloudAccountTags = map[string]string{ "cloudaccount_id": "id", "cloudaccount_name": "name", "brand": "brand", "domain_id": "domain_id", "project_domain": "project_domain", } TenantTags = map[string]string{ "tenant_id": "id", "tenant": "name", "domain_id": "domain_id", "project_domain": "project_domain", } DomainTags = map[string]string{ "domain_id": "id", "project_domain": "name", } StorageTags = map[string]string{ "storage_id": "id", "storage_name": "name", "zone": "zone", "zone_id": "zone_id", "zone_ext_id": "zone_ext_id", "status": "status", "cloudregion": "cloudregion", "cloudregion_id": "cloudregion_id", "region_ext_id": "region_ext_id", "brand": "brand", "domain_id": "domain_id", "project_domain": "project_domain", } )