我使用 Pubsub 作为排队机制工具,并想知道驻留在 Pubsub 主题内的消息计数。出于同样的目的,我决定使用 Google API 指标,pubsub.googleapis.com/subscription/num_undelivered_messages但我无法弄清楚如何使用 python 客户端库 monitoring_v3 来实现这一点。
from google.cloud import monitoring_v3
import time,os
os.environ["GOOGLE_APPLICATION_CREDENTIALS"]="/key.json"
client = monitoring_v3.MetricServiceClient()
project = 'project_name'
project_name = client.project_path(project)
metric_type = "pubsub.googleapis.com/subscription/num_undelivered_messages"
你能指导我如何进一步进行并查询这个名为 num_undelivered_messages 的 google api 指标吗?
浮云间
Cats萌萌
相关分类