我是数据狗的新手。我关注了这篇文章,并在我的 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 的模块
对此的任何提示/建议都会有很大帮助!