Google Cloud:自定义堆栈驱动程序指标

时间:2018-05-08 08:03:56

标签: python google-cloud-platform metrics google-cloud-stackdriver

我正在运行自定义Python应用程序。代码中的日志记录被写入Stackdriverm,很好。但对于特定的代码块,我想在Stackdriver中创建自定义指标。但这是我的问题。有一些官方文件:

所有这些都使用如下所示的代码:

from google.cloud import monitoring

client = monitoring.Client()
descriptor = client.metric_descriptor(
    'custom.googleapis.com/my_metric',
    metric_kind=monitoring.MetricKind.GAUGE,
    value_type=monitoring.ValueType.DOUBLE,
    description='This is a simple example of a custom metric.')

我的问题是,我无法重现此代码。我已经安装了以下库:

google-cloud-monitoring

但是当我尝试代码时,它会说Client包中没有google-cloud-monitoring。相反,有一个MetricServiceClient,但我找不到任何关于如何使用它的好文档。

source code

PS:我的IDE是PyCharm。

想法?

1 个答案:

答案 0 :(得分:4)

目前,请使用客户端库的0.28.1版。我将尽快更新官方文档,以便它们工作0.29。

https://github.com/GoogleCloudPlatform/python-docs-samples/blob/master/monitoring/api/v3/cloud-client/requirements.txt