Closed rdempsey closed 7 years ago
Figured this one out - apparently the compiled plugin file was sitting in my /app directory and needed to be copied to the root directory to work.
The dogstatsd_plugin.so
must be placed at the directory where the app starts. In my case it was the Dockerfile's WORKDIR
.
I'm having an issue running the plugin. My setup is the following:
Docker Container 1
Docker Container 2
I have application metrics from Container 1 successfully being sent to dogstatsd in Container 2, and metrics appear in DD.
The plugin appears to install correctly during the Docker build process and I see the following lines confirming it:
When I add the following lines to my uwsgi.ini file:
and then rebuild the container and attempt to start it, I receive the following error:
Am I required to have dogstatsd installed on the same container in which I'm running my uwsgi application in order to use this plugin?
Thank you for your help!