From 58895839279b53cb4c7bfd43e276a6f50c6829f6 Mon Sep 17 00:00:00 2001 From: zianazhao <53551082+zianazhao@users.noreply.github.com> Date: Mon, 16 Jan 2023 17:05:36 +0800 Subject: [PATCH 01/11] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index f70af7b..fe7af58 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,8 @@ CYNOSDB_MYSQL|QCE/CYNOSDB_MYSQL|[指标详情](https://cloud.tencent.com/documen 数据传输 |QCE/DTS|指标详情说明文档(待上线) 专线网关 |QCE/DCG|指标详情说明文档(待上线) 全球应用加速|QCE/QAAP|[指标详情](https://cloud.tencent.com/document/product/248/45062) +WAF |QCE/WAF|指标详情说明文档(待上线) +CLB(公网)|QCE/LB_PRIVATE|[指标详情](https://cloud.tencent.com/document/product/248/51899) `后续会有更多的产品支持` From b7926932810e3e202b21c36a462c6117d2485452 Mon Sep 17 00:00:00 2001 From: zianazhao <53551082+zianazhao@users.noreply.github.com> Date: Mon, 23 Jan 2023 19:56:57 +0800 Subject: [PATCH 02/11] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fe7af58..870853f 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ CYNOSDB_MYSQL|QCE/CYNOSDB_MYSQL|[指标详情](https://cloud.tencent.com/documen 专线网关 |QCE/DCG|指标详情说明文档(待上线) 全球应用加速|QCE/QAAP|[指标详情](https://cloud.tencent.com/document/product/248/45062) WAF |QCE/WAF|指标详情说明文档(待上线) -CLB(公网)|QCE/LB_PRIVATE|[指标详情](https://cloud.tencent.com/document/product/248/51899) +CLB(内网)|QCE/LB_PRIVATE|[指标详情](https://cloud.tencent.com/document/product/248/51899) `后续会有更多的产品支持` From 4151f06dead06d5a9b6c5e2363efbbdb6a27c091 Mon Sep 17 00:00:00 2001 From: zianazhao Date: Thu, 2 Feb 2023 10:41:48 +0800 Subject: [PATCH 03/11] fix-query time && time zone --- pkg/metric/metric.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/metric/metric.go b/pkg/metric/metric.go index a120e4f..9031ed7 100644 --- a/pkg/metric/metric.go +++ b/pkg/metric/metric.go @@ -61,10 +61,11 @@ func (m *TcmMetric) GetLatestPromMetrics(repo TcmMetricRepository) (pms []promet et := int64(0) now := time.Now().Unix() if m.Conf.StatDelaySeconds > 0 { - st = now - m.Conf.StatPeriodSeconds - m.Conf.StatDelaySeconds + st = now - m.Conf.StatNumSamples*m.Conf.StatPeriodSeconds - m.Conf.StatDelaySeconds et = now - m.Conf.StatDelaySeconds } else { st = now - m.Conf.StatNumSamples*m.Conf.StatPeriodSeconds + et = now } samplesList, err := repo.ListSamples(m, st, et) From f761455aa9d775439fd4d94c7396679813c5105b Mon Sep 17 00:00:00 2001 From: zianazhao Date: Thu, 2 Feb 2023 15:57:12 +0800 Subject: [PATCH 04/11] fix-timeZone --- pkg/util/time.go | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkg/util/time.go b/pkg/util/time.go index 6c7b31f..98327f4 100644 --- a/pkg/util/time.go +++ b/pkg/util/time.go @@ -6,10 +6,11 @@ import "time" func FormatTime(t time.Time, format string) string { var local time.Time _, offset := t.Zone() - if offset == 0 { - local = t.Add(8 * time.Hour) - } else { - local = t - } + // if offset == 0 { + // local = t.Add(8 * time.Hour) + // } else { + // local = t + // } + local = t.Add(time.Duration(8*3600-offset) * time.Second) return local.Format(format) } From c4da628060ebcb1725efa317bc952ef4a638708a Mon Sep 17 00:00:00 2001 From: zianazhao Date: Thu, 2 Feb 2023 15:57:33 +0800 Subject: [PATCH 05/11] fix-timeZone --- pkg/util/time.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkg/util/time.go b/pkg/util/time.go index 98327f4..e5bd6db 100644 --- a/pkg/util/time.go +++ b/pkg/util/time.go @@ -6,11 +6,6 @@ import "time" func FormatTime(t time.Time, format string) string { var local time.Time _, offset := t.Zone() - // if offset == 0 { - // local = t.Add(8 * time.Hour) - // } else { - // local = t - // } local = t.Add(time.Duration(8*3600-offset) * time.Second) return local.Format(format) } From 7e584544d3d6913735360741f2f1fb9d630298c3 Mon Sep 17 00:00:00 2001 From: zianazhao Date: Thu, 2 Feb 2023 16:01:09 +0800 Subject: [PATCH 06/11] =?UTF-8?q?=E5=AF=B9=E9=BD=90=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/collector/handler_cbs.go | 8 -------- pkg/collector/handler_clb7.go | 8 -------- pkg/collector/handler_tdmq.go | 18 ------------------ 3 files changed, 34 deletions(-) diff --git a/pkg/collector/handler_cbs.go b/pkg/collector/handler_cbs.go index 716a134..1114e8c 100644 --- a/pkg/collector/handler_cbs.go +++ b/pkg/collector/handler_cbs.go @@ -33,14 +33,6 @@ func (h *cbsHandler) GetNamespace() string { } func (h *cbsHandler) IsMetricVaild(m *metric.TcmMetric) bool { - // 暂时过滤nvme盘类指标 - var dimensions []string - for _, v := range m.Meta.SupportDimensions { - dimensions = append(dimensions, v) - } - if util.IsStrInList(dimensions, "vmUuid") { - return false - } return true } diff --git a/pkg/collector/handler_clb7.go b/pkg/collector/handler_clb7.go index 48768c3..098c63a 100644 --- a/pkg/collector/handler_clb7.go +++ b/pkg/collector/handler_clb7.go @@ -23,14 +23,6 @@ var ( "activeconnratio", "newactiveconnratio", "outtrafficratio", - "rsptimeout", - "setreqavg", - "setreqmax", - "setrspavg", - "setrspmax", - "settotalreq", - "vrsptimeout", - "vsettotalreq", } ) diff --git a/pkg/collector/handler_tdmq.go b/pkg/collector/handler_tdmq.go index 95262e6..b3834c2 100644 --- a/pkg/collector/handler_tdmq.go +++ b/pkg/collector/handler_tdmq.go @@ -2,7 +2,6 @@ package collector import ( "fmt" - "strings" "time" "github.com/go-kit/log" @@ -18,19 +17,6 @@ const ( TdmqInstanceidKey = "tenant" ) -var ( - RocketMQOnlyIncludeMetrics = []string{ - "ropratein", - "roprateout", - "ropthroughputin", - "ropthroughputout", - "ropmsgbacklog", - "ropmsgaveragesize", - "ropinmessagetotal", - "ropgroupcount", - } -) - func init() { registerHandler(TdmqNamespace, defaultHandlerEnabled, NewTdmqHandler) } @@ -50,10 +36,6 @@ func (h *tdmqHandler) GetNamespace() string { } func (h *tdmqHandler) IsMetricVaild(m *metric.TcmMetric) bool { - // 暂时只支持 TDMQ RocketMQ 版指标 - if !util.IsStrInList(RocketMQOnlyIncludeMetrics, strings.ToLower(m.Meta.MetricName)) { - return false - } _, ok := excludeMetricName[m.Meta.MetricName] if ok { return false From 029afb9512fe764aa3a7f28c5d3da2d321f1de7b Mon Sep 17 00:00:00 2001 From: zianazhao Date: Thu, 2 Feb 2023 16:06:27 +0800 Subject: [PATCH 07/11] =?UTF-8?q?=E5=AF=B9=E9=BD=90=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/collector/handler_clb_private.go | 41 ++++++++++++---------------- 1 file changed, 17 insertions(+), 24 deletions(-) diff --git a/pkg/collector/handler_clb_private.go b/pkg/collector/handler_clb_private.go index a6627c9..44a9d57 100644 --- a/pkg/collector/handler_clb_private.go +++ b/pkg/collector/handler_clb_private.go @@ -23,10 +23,6 @@ var ( } ) -var ( - LbPrivateSupportDimensions = []string{"vip", "vpcId", "loadBalancerPort", "protocol", "lanIp", "port"} -) - func init() { registerHandler(ClbPrivateNamespace, defaultHandlerEnabled, NewClbPrivateHandler) } @@ -123,35 +119,32 @@ func (h *ClbPrivateHandler) GetSeriesByAll(m *metric.TcmMetric) ([]*metric.TcmSe return slist, nil } -func (h *ClbPrivateHandler) GetSeriesByCustom(m *metric.TcmMetric) (slist []*metric.TcmSeries, err error) { +func (h *ClbPrivateHandler) GetSeriesByCustom(m *metric.TcmMetric) ([]*metric.TcmSeries, error) { + var slist []*metric.TcmSeries for _, ql := range m.Conf.CustomQueryDimensions { - if !h.checkMonitorQueryKeys(m, ql) { + v, ok := ql[h.monitorQueryKey] + if !ok { + level.Error(h.logger).Log( + "msg", fmt.Sprintf("not found %s in queryDimensions", h.monitorQueryKey), + "ql", fmt.Sprintf("%v", ql)) continue } - - s, err := metric.NewTcmSeries(m, ql, nil) + ins, err := h.collector.InstanceRepo.Get(v) if err != nil { - level.Error(h.logger).Log("msg", "Create metric series fail", "metric", m.Meta.MetricName, - "ql", fmt.Sprintf("%v", ql)) + level.Error(h.logger).Log("msg", "Instance not found", "err", err, "id", v) continue } - slist = append(slist, s) - } - return -} -func (h *ClbPrivateHandler) checkMonitorQueryKeys(m *metric.TcmMetric, ql map[string]string) bool { - for k := range ql { - if !util.IsStrInList(LbPrivateSupportDimensions, k) { - level.Error(h.logger).Log("msg", fmt.Sprintf("not found %s in supportQueryDimensions", k), - "ql", fmt.Sprintf("%v", ql), - "sd", fmt.Sprintf("%v", m.Meta.SupportDimensions), - ) - return false + + sl, err := h.getSeriesByMetricType(m, ins) + if err != nil { + level.Error(h.logger).Log("msg", "Create metric series fail", + "metric", m.Meta.MetricName, "instacne", ins.GetInstanceId()) + continue } + slist = append(slist, sl...) } - return true + return slist, nil } - func (h *ClbPrivateHandler) getSeriesByMetricType(m *metric.TcmMetric, ins instance.TcInstance) ([]*metric.TcmSeries, error) { var dimensions []string for _, v := range m.Meta.SupportDimensions { From f9f2b8732efc6d9d5e88be911d168a9c0409cffb Mon Sep 17 00:00:00 2001 From: zianazhao Date: Fri, 3 Feb 2023 17:00:23 +0800 Subject: [PATCH 08/11] =?UTF-8?q?1=E3=80=81cbs=E3=80=81tdmq=E3=80=81loadba?= =?UTF-8?q?lance=E6=8C=87=E6=A0=87=E8=BF=87=E6=BB=A4=202=E3=80=81lb=5Fpriv?= =?UTF-8?q?ate=E6=94=AF=E6=8C=81=E8=87=AA=E5=AE=9A=E4=B9=89=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2=E5=85=B6=E4=BB=96=E7=BB=B4=E5=BA=A6=E6=8C=87=E6=A0=87?= =?UTF-8?q?=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/collector/handler_cbs.go | 8 ++++++ pkg/collector/handler_clb7.go | 8 ++++++ pkg/collector/handler_clb_private.go | 41 ++++++++++++++++------------ pkg/collector/handler_tdmq.go | 18 ++++++++++++ 4 files changed, 58 insertions(+), 17 deletions(-) diff --git a/pkg/collector/handler_cbs.go b/pkg/collector/handler_cbs.go index 1114e8c..716a134 100644 --- a/pkg/collector/handler_cbs.go +++ b/pkg/collector/handler_cbs.go @@ -33,6 +33,14 @@ func (h *cbsHandler) GetNamespace() string { } func (h *cbsHandler) IsMetricVaild(m *metric.TcmMetric) bool { + // 暂时过滤nvme盘类指标 + var dimensions []string + for _, v := range m.Meta.SupportDimensions { + dimensions = append(dimensions, v) + } + if util.IsStrInList(dimensions, "vmUuid") { + return false + } return true } diff --git a/pkg/collector/handler_clb7.go b/pkg/collector/handler_clb7.go index 098c63a..48768c3 100644 --- a/pkg/collector/handler_clb7.go +++ b/pkg/collector/handler_clb7.go @@ -23,6 +23,14 @@ var ( "activeconnratio", "newactiveconnratio", "outtrafficratio", + "rsptimeout", + "setreqavg", + "setreqmax", + "setrspavg", + "setrspmax", + "settotalreq", + "vrsptimeout", + "vsettotalreq", } ) diff --git a/pkg/collector/handler_clb_private.go b/pkg/collector/handler_clb_private.go index 44a9d57..a6627c9 100644 --- a/pkg/collector/handler_clb_private.go +++ b/pkg/collector/handler_clb_private.go @@ -23,6 +23,10 @@ var ( } ) +var ( + LbPrivateSupportDimensions = []string{"vip", "vpcId", "loadBalancerPort", "protocol", "lanIp", "port"} +) + func init() { registerHandler(ClbPrivateNamespace, defaultHandlerEnabled, NewClbPrivateHandler) } @@ -119,32 +123,35 @@ func (h *ClbPrivateHandler) GetSeriesByAll(m *metric.TcmMetric) ([]*metric.TcmSe return slist, nil } -func (h *ClbPrivateHandler) GetSeriesByCustom(m *metric.TcmMetric) ([]*metric.TcmSeries, error) { - var slist []*metric.TcmSeries +func (h *ClbPrivateHandler) GetSeriesByCustom(m *metric.TcmMetric) (slist []*metric.TcmSeries, err error) { for _, ql := range m.Conf.CustomQueryDimensions { - v, ok := ql[h.monitorQueryKey] - if !ok { - level.Error(h.logger).Log( - "msg", fmt.Sprintf("not found %s in queryDimensions", h.monitorQueryKey), - "ql", fmt.Sprintf("%v", ql)) - continue - } - ins, err := h.collector.InstanceRepo.Get(v) - if err != nil { - level.Error(h.logger).Log("msg", "Instance not found", "err", err, "id", v) + if !h.checkMonitorQueryKeys(m, ql) { continue } - sl, err := h.getSeriesByMetricType(m, ins) + s, err := metric.NewTcmSeries(m, ql, nil) if err != nil { - level.Error(h.logger).Log("msg", "Create metric series fail", - "metric", m.Meta.MetricName, "instacne", ins.GetInstanceId()) + level.Error(h.logger).Log("msg", "Create metric series fail", "metric", m.Meta.MetricName, + "ql", fmt.Sprintf("%v", ql)) continue } - slist = append(slist, sl...) + slist = append(slist, s) } - return slist, nil + return } +func (h *ClbPrivateHandler) checkMonitorQueryKeys(m *metric.TcmMetric, ql map[string]string) bool { + for k := range ql { + if !util.IsStrInList(LbPrivateSupportDimensions, k) { + level.Error(h.logger).Log("msg", fmt.Sprintf("not found %s in supportQueryDimensions", k), + "ql", fmt.Sprintf("%v", ql), + "sd", fmt.Sprintf("%v", m.Meta.SupportDimensions), + ) + return false + } + } + return true +} + func (h *ClbPrivateHandler) getSeriesByMetricType(m *metric.TcmMetric, ins instance.TcInstance) ([]*metric.TcmSeries, error) { var dimensions []string for _, v := range m.Meta.SupportDimensions { diff --git a/pkg/collector/handler_tdmq.go b/pkg/collector/handler_tdmq.go index b3834c2..95262e6 100644 --- a/pkg/collector/handler_tdmq.go +++ b/pkg/collector/handler_tdmq.go @@ -2,6 +2,7 @@ package collector import ( "fmt" + "strings" "time" "github.com/go-kit/log" @@ -17,6 +18,19 @@ const ( TdmqInstanceidKey = "tenant" ) +var ( + RocketMQOnlyIncludeMetrics = []string{ + "ropratein", + "roprateout", + "ropthroughputin", + "ropthroughputout", + "ropmsgbacklog", + "ropmsgaveragesize", + "ropinmessagetotal", + "ropgroupcount", + } +) + func init() { registerHandler(TdmqNamespace, defaultHandlerEnabled, NewTdmqHandler) } @@ -36,6 +50,10 @@ func (h *tdmqHandler) GetNamespace() string { } func (h *tdmqHandler) IsMetricVaild(m *metric.TcmMetric) bool { + // 暂时只支持 TDMQ RocketMQ 版指标 + if !util.IsStrInList(RocketMQOnlyIncludeMetrics, strings.ToLower(m.Meta.MetricName)) { + return false + } _, ok := excludeMetricName[m.Meta.MetricName] if ok { return false From 1ec97424ee92cd8a465a0f44bab892e1ed37d759 Mon Sep 17 00:00:00 2001 From: zianazhao Date: Mon, 6 Feb 2023 19:01:42 +0800 Subject: [PATCH 09/11] =?UTF-8?q?README=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index f70af7b..da55589 100644 --- a/README.md +++ b/README.md @@ -12,40 +12,41 @@ 产品 | 命名空间 |支持的指标| --------|---------|---------- -MongoDB |QCE/CMONGO|[指标详情](https://cloud.tencent.com/document/product/248/45104) -CDB|QCE/CDB|[指标详情](https://cloud.tencent.com/document/product/248/45147) +数据库MongoDB |QCE/CMONGO|[指标详情](https://cloud.tencent.com/document/product/248/45104) +数据库MySQL(CDB)|QCE/CDB|[指标详情](https://cloud.tencent.com/document/product/248/45147) Redis标准版|QCE/REDIS(即将下线,不推荐)|[指标详情](https://cloud.tencent.com/document/product/248/45111) Redis集群版|QCE/REDIS_CLUSTER(即将下线,不推荐)|[指标详情](https://cloud.tencent.com/document/product/248/45111) -Redis内存版监控指标|QCE/REDIS_MEM|[指标详情](https://cloud.tencent.com/document/product/248/49729) -CVM|QCE/CVM|[指标详情](https://cloud.tencent.com/document/product/248/6843) +数据库Redis(内存版)|QCE/REDIS_MEM|[指标详情](https://cloud.tencent.com/document/product/248/49729) +云服务器CVM|QCE/CVM|[指标详情](https://cloud.tencent.com/document/product/248/6843) COS|QCE/COS|[指标详情](https://cloud.tencent.com/document/product/248/45140) CDN|QCE/CDN|[指标详情](https://cloud.tencent.com/document/product/248/45138) -CLB(公网)|QCE/LB_PUBLIC|[指标详情](https://cloud.tencent.com/document/product/248/45047) -CLB(7层)|QCE/LOADBALANCE|[指标详情](https://cloud.tencent.com/document/product/248/45045) -NAT|QCE/NAT_GATEWAY|[指标详情](https://cloud.tencent.com/document/product/248/45069) +负载均衡CLB(公网)|QCE/LB_PUBLIC|[指标详情](https://cloud.tencent.com/document/product/248/45047) +负载均衡CLB(7层)|QCE/LOADBALANCE|[指标详情](https://cloud.tencent.com/document/product/248/45045) +NAT网关|QCE/NAT_GATEWAY|[指标详情](https://cloud.tencent.com/document/product/248/45069) 物理专线|QCE/DC|[指标详情](https://cloud.tencent.com/document/product/248/45102) 专用通道|QCE/DCX|[指标详情](https://cloud.tencent.com/document/product/248/45101) 云硬盘|QCE/CBS|[指标详情](https://cloud.tencent.com/document/product/248/45411) -SqlServer|QCE/SQLSERVER|[指标详情](https://cloud.tencent.com/document/product/248/45146) -MariaDB|QCE/MARIADB|[指标详情](https://cloud.tencent.com/document/product/248/54397) +数据库SQL Server|QCE/SQLSERVER|[指标详情](https://cloud.tencent.com/document/product/248/45146) +数据库MariaDB|QCE/MARIADB|[指标详情](https://cloud.tencent.com/document/product/248/54397) Elasticsearch|QCE/CES|[指标详情](https://cloud.tencent.com/document/product/248/45129) CMQ 队列服务|QCE/CMQ(即将下线,不推荐)|[指标详情](https://cloud.tencent.com/document/product/248/45114) CMQ 主题订阅|QCE/CMQTOPIC(即将下线,不推荐)|[指标详情](https://cloud.tencent.com/document/product/248/45113) -PostgreSQL|QCE/POSTGRES|[指标详情](https://cloud.tencent.com/document/product/248/45105) +数据库PostgreSQL|QCE/POSTGRES|[指标详情](https://cloud.tencent.com/document/product/248/45105) CKafka 实例|QCE/CKAFKA|[指标详情](https://cloud.tencent.com/document/product/248/45121) Memcached |QCE/MEMCACHED|指标详情说明文档(待上线) -Lighthouse |QCE/LIGHTHOUSE|[指标详情](https://cloud.tencent.com/document/product/248/60127) -分布式数据库 TDSQL MySQL 实例|QCE/TDMYSQL|[指标详情](https://cloud.tencent.com/document/product/248/54401) +轻量应用服务器Lighthouse |QCE/LIGHTHOUSE|[指标详情](https://cloud.tencent.com/document/product/248/60127) +分布式数据库 TDSQL MySQL|QCE/TDMYSQL|[指标详情](https://cloud.tencent.com/document/product/248/54401) 弹性公网 IP|QCE/LB|[指标详情](https://cloud.tencent.com/document/product/248/45099) -TDMQ RocketMQ 版|QCE/TDMQ|[指标详情](https://cloud.tencent.com/document/product/248/51450#tdmq-rocketmq-.E7.89.88) +消息队列RocketMQ版|QCE/TDMQ|[指标详情](https://cloud.tencent.com/document/product/248/51450#tdmq-rocketmq-.E7.89.88) VPN 网关|QCE/VPNGW|[指标详情](https://cloud.tencent.com/document/product/248/45070) VPN 通道|QCE/VPNX|[指标详情](https://cloud.tencent.com/document/product/248/45071) CYNOSDB_MYSQL|QCE/CYNOSDB_MYSQL|[指标详情](https://cloud.tencent.com/document/product/248/45106) 云联网|QCE/VBC|[指标详情](https://cloud.tencent.com/document/product/248/75629) -数据传输 |QCE/DTS|指标详情说明文档(待上线) +数据传输 |QCE/DTS|[指标详情](https://cloud.tencent.com/document/product/248/82251) 专线网关 |QCE/DCG|指标详情说明文档(待上线) 全球应用加速|QCE/QAAP|[指标详情](https://cloud.tencent.com/document/product/248/45062) - +Web应用防火墙 |QCE/WAF|[指标详情](https://cloud.tencent.com/document/product/248/48124) +负载均衡CLB(内网)|QCE/LB_PRIVATE|[指标详情](https://cloud.tencent.com/document/product/248/51899) `后续会有更多的产品支持` ## 二、快速开始 From ad2f4276351819874144f96b37e7643a78cfdc59 Mon Sep 17 00:00:00 2001 From: zianazhao <53551082+zianazhao@users.noreply.github.com> Date: Tue, 7 Feb 2023 14:30:52 +0800 Subject: [PATCH 10/11] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index da55589..bc1ce3a 100644 --- a/README.md +++ b/README.md @@ -43,10 +43,11 @@ VPN 通道|QCE/VPNX|[指标详情](https://cloud.tencent.com/document/product/24 CYNOSDB_MYSQL|QCE/CYNOSDB_MYSQL|[指标详情](https://cloud.tencent.com/document/product/248/45106) 云联网|QCE/VBC|[指标详情](https://cloud.tencent.com/document/product/248/75629) 数据传输 |QCE/DTS|[指标详情](https://cloud.tencent.com/document/product/248/82251) -专线网关 |QCE/DCG|指标详情说明文档(待上线) +专线网关 |QCE/DCG|[指标详情](https://cloud.tencent.com/document/product/248/45072) 全球应用加速|QCE/QAAP|[指标详情](https://cloud.tencent.com/document/product/248/45062) Web应用防火墙 |QCE/WAF|[指标详情](https://cloud.tencent.com/document/product/248/48124) 负载均衡CLB(内网)|QCE/LB_PRIVATE|[指标详情](https://cloud.tencent.com/document/product/248/51899) + `后续会有更多的产品支持` ## 二、快速开始 From fc341cfaf674d767dc701668b95def598a8f6090 Mon Sep 17 00:00:00 2001 From: zianazhao <53551082+zianazhao@users.noreply.github.com> Date: Mon, 27 Mar 2023 15:35:23 +0800 Subject: [PATCH 11/11] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bc1ce3a..2a4b171 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Redis集群版|QCE/REDIS_CLUSTER(即将下线,不推荐)|[指标详情](https: 云服务器CVM|QCE/CVM|[指标详情](https://cloud.tencent.com/document/product/248/6843) COS|QCE/COS|[指标详情](https://cloud.tencent.com/document/product/248/45140) CDN|QCE/CDN|[指标详情](https://cloud.tencent.com/document/product/248/45138) -负载均衡CLB(公网)|QCE/LB_PUBLIC|[指标详情](https://cloud.tencent.com/document/product/248/45047) +负载均衡CLB(公网)|QCE/LB_PUBLIC|[指标详情](https://cloud.tencent.com/document/product/248/51898) 负载均衡CLB(7层)|QCE/LOADBALANCE|[指标详情](https://cloud.tencent.com/document/product/248/45045) NAT网关|QCE/NAT_GATEWAY|[指标详情](https://cloud.tencent.com/document/product/248/45069) 物理专线|QCE/DC|[指标详情](https://cloud.tencent.com/document/product/248/45102)