-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsupervisord.conf
45 lines (40 loc) · 929 Bytes
/
supervisord.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[supervisord]
nodaemon=true
user=root
[program:cron]
command=/usr/sbin/cron -f -L 4
autorestart=true
startsecs=5
stdout_logfile=NONE
stderr_logfile=NONE
[program:syslogd]
command=/sbin/syslogd -n -l 6 -O -
autorestart=true
startsecs=5
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=NONE
[program:elasticsearch]
command=/usr/share/elasticsearch/bin/elasticsearch
directory=/usr/share/elasticsearch
autorestart=true
user=elasticsearch
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stdout
stderr_logfile_maxbytes=0
[program:kibana]
command=/launch-kibana.sh
directory=/usr/share/kibana
autorestart=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stdout
stderr_logfile_maxbytes=0
[program:filebeat]
command=/launch-filebeat.sh
autorestart=true
stdout_logfile=/dev/stdout
stdout_logfile_maxbytes=0
stderr_logfile=/dev/stdout
stderr_logfile_maxbytes=0