1

我是数据狗的新手。我关注了这篇文章,并在我的 app/api 密钥中进行了替换。

我有 :nginx_dd.py

# Make sure you replace the API and/or APP key below
# with the ones for your account

from datadog import initialize, api
import time

options = {
    'api_key': '***',
    'app_key': '***'
}

initialize(**options)

now = int(time.time())
query = 'system.cpu.idle{*}by{host}'
print api.Metric.query(start=now - 3600, end=now, query=query)

当我运行它时python nginx_dd.py,我不断得到

ImportError:没有名为 datadog 的模块


对此的任何提示/建议都会有很大帮助!

4

1 回答 1

6

验证您的环境中是否安装了 datadog 软件包。

您可以使用以下命令执行此操作:

$ pip freeze | grep datadog

如果没有安装,可以使用以下命令安装:

$ pip install datadog
于 2016-08-30T19:38:33.953 回答