如何在 docker 中启动 collectd?

如何在 docker 中启动 collectd?

我正在尝试在 docker 中启动 collectd,我尝试了所有方法,从运行命令在 dockerfile 中启动 collectd,到使用脚本,再到运行,service collectd start再到使用 supervisord,但仍然不起作用

我的supervisord.conf 文件是

[unix_http_server]
file=/tmp/supervisor.sock   ; (the path to the socket file)

[supervisord]
logfile=/tmp/supervisord.log ; (main log file;default $CWD/supervisord.log)
logfile_maxbytes=50MB        ; (max main logfile bytes b4 rotation;default 50MB)
logfile_backups=10           ; (num of main logfile rotation backups;default 10)
loglevel=info                ; (log level;default info; others: debug,warn,trace)
pidfile=/tmp/supervisord.pid ; (supervisord pidfile;default supervisord.pid)
nodaemon=false               ; (start in foreground if true;default false)
minfds=1024                  ; (min. avail startup file descriptors;default 1024)
minprocs=200                 ; (min. avail process descriptors;default 200)
user=root            ;

; the below section must remain in the config file for RPC
; (supervisorctl/web interface) to work, additional interfaces may be
; added by defining them in separate rpcinterface: sections
[rpcinterface:supervisor]
supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface

[supervisorctl]
serverurl=unix:///tmp/supervisor.sock ; use a unix:// URL  for a unix socket

[program:collectd]
command=/usr/sbin/collectd -C /etc/collectd/collectd.conf -f
autostart=true
autorestart=true
priority=5
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stderr
stderr_logfile_maxbytes=0

我也尝试在我的 Dockerfile 中运行它

RUN service collectd start

通过 Dockerfile 使用的是 Ubuntu 16.04,我安装了 collectd,apt-get install collectd它为我完美安装了 collectd 版本 5.5.1(这正是我想要的)

无论如何,当我运行容器时,ps aux我看到了

USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
root         1  0.6  0.0  18180  2000 ?        Ss   20:27   0:00 bash
root        11  0.0  0.0  34364  1544 ?        R+   20:27   0:00 ps aux

所以基本上 collectd 仍然没有运行

在容器内部我启动它service collectd start并且它工作正常

USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
root         1  0.0  0.0  18180  2008 ?        Ss   20:27   0:00 bash
root        27  0.0  0.0   4300   320 ?        Ss   20:27   0:00 /usr/sbin/collectdmon -P /var/run/collectd.pid -- -C /etc/collectd
root        30  0.0  0.0 799820  2368 ?        Sl   20:27   0:00 collectd -C /etc/collectd/collectd.conf -f
root        42  0.0  0.0  34364  1544 ?        R+   20:30   0:00 ps aux

那么基本上,当 docker 镜像运行时,我该如何自动运行 collectd?

PS 即使我不必使用 supervisrod,我也只是想在运行容器时让 collectd 运行

谢谢

collectd更新:在容器内运行的单个命令也会启动 collectd

USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
root         1  0.0  0.0  18180  2020 ?        Ss   21:09   0:00 bash
root        36  0.0  0.0 799820  1680 ?        Ssl  21:10   0:00 collectd
root        47  0.0  0.0  34364  1544 ?        R+   21:10   0:00 ps aux

答案1

您不需要使用 collectd 来管理容器。

例如,您已经创建了名为“my_collectd:latest”的图像,那么您需要运行以下命令:

docker run -d --name my_test my_collectd:latest collectd -f

这将以守护进程模式创建名为“my_test”的容器。它应该在里面运行 collectd -f 命令。

相关内容