pythonpython-2.7datadog

Datadog python api error INFO No agent or invalid configuration file found


I'm trying to use the datadog api but the initialize method keeps giving the error 'INFO No agent or invalid configuration file found'.

The datadog agent is running:

(PYTHON) daphnepaparis@Daphnes-MBP-2 ~ $ /usr/local/bin/datadog-agent status
Datadog Agent (supervisor) is running all child processes

And the configuration file permissions look alright:

(PYTHON) daphnepaparis@Daphnes-MBP-2 ~ $ ls -l ~/.datadog-agent/datadog.conf
lrwxr-xr-x  1 daphnepaparis  staff  35 Mar 22 12:58 /Users/daphnepaparis/.datadog-agent/datadog.conf -> /opt/datadog-agent/etc/datadog.conf

Original commands I'm running:

In [1]: from datadog import initialize, api
In [2]: options = {'api_key': '***'}
In [3]: initialize(**options)

2017-03-22 13:24:20 INFO No agent or invalid configuration file found

Anyone able to help?


Solution

  • So from that log line, it appears as though this try is excepting in the library's hostname.py. So either...

    So if I were you, and if all this seemed right, I'd try adding a hostname in the datadog.conf to see if that helped, and if it didn't, then I'd try making a ~/.datadog-agent/agent/ directory and copying your datadog.conf file there as well, just to see if that got things working.

    This answer assumes you are working in an OSX / mac environment, and will likely not be correct otherwise.

    If either (A) or (B) are the case, then that's a problem with the library and should be updated--it would be kind of you to open an issue on the library itself to bring this up so the Datadog team that supports that library can be made aware. I suspect not many people end up this library in OSX / mac environments to begin with, so that could explain all this.