|
@@ -8,4 +8,7 @@ |
|
@@ -8,4 +8,7 @@ |
8
|
shell: nohup /usr/share/filebeat/bin/filebeat -c /etc/filebeat/filebeat-"{{ group }}".yml &
|
8
|
shell: nohup /usr/share/filebeat/bin/filebeat -c /etc/filebeat/filebeat-"{{ group }}".yml &
|
9
|
|
9
|
|
10
|
- name: restart filebeat
|
10
|
- name: restart filebeat
|
11
|
- shell: ps aux|grep filebeat-"{{ group }}".yml|grep -v grep|head -n1|awk '{print $2}'|xargs -i kill -9 {} ; nohup /usr/share/filebeat/bin/filebeat -c /etc/filebeat/filebeat-"{{ group }}".yml & |
11
|
+ shell: service filebeat stop;ps aux|grep filebeat-"{{ group }}".yml|grep -v grep|head -n1|awk '{print $2}'|xargs -i kill -9 {} ; nohup /usr/share/filebeat/bin/filebeat -c /etc/filebeat/filebeat-"{{ group }}".yml &
|
|
|
12
|
+
|
|
|
13
|
+- name: restart filebeat
|
|
|
14
|
+ shell: service filebeat stop;ps aux|grep filebeat-base.yml|grep -v grep|head -n1|awk '{print $2}'|xargs -i kill -9 {} ; nohup /usr/share/filebeat/bin/filebeat -c /etc/filebeat/filebeat-base.yml & |