Adding looser/more logstash sources, and fixing a git error with older versions of ansible
This commit is contained in:
parent
5c2e2417af
commit
ff1daa0173
|
@ -8,13 +8,17 @@ input {
|
||||||
port => 5514
|
port => 5514
|
||||||
type => "linux-syslog"
|
type => "linux-syslog"
|
||||||
}
|
}
|
||||||
}
|
file {
|
||||||
filter {
|
type => "syslog"
|
||||||
grok {
|
path => [ "/var/log/*.log", "/var/log/messages", "/var/log/syslog", "/var/log/nginx/*.log" ]
|
||||||
type => "linux-syslog"
|
|
||||||
pattern => "%{SYSLOGLINE}"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#filter {
|
||||||
|
# grok {
|
||||||
|
# type => "linux-syslog"
|
||||||
|
# pattern => "%{SYSLOGLINE}"
|
||||||
|
# }
|
||||||
|
#}
|
||||||
# Define outputs
|
# Define outputs
|
||||||
output {
|
output {
|
||||||
# send events to stdout for easy debugging
|
# send events to stdout for easy debugging
|
||||||
|
|
|
@ -10,9 +10,11 @@
|
||||||
- nginx
|
- nginx
|
||||||
|
|
||||||
- name: ensure we have the specified logstash release
|
- name: ensure we have the specified logstash release
|
||||||
git: repo=https://github.com/elasticsearch/kibana.git dest=/var/www/kibana update=yes
|
git: repo=https://github.com/elasticsearch/kibana.git dest=/var/www/kibana #update=yes
|
||||||
- name: ensure kibana nginx site is in place
|
- name: ensure kibana nginx site is in place
|
||||||
template: src=../files/kibana/kibana.conf.j2 dest=/etc/nginx/sites-available/kibana mode=0755
|
template: src=../files/kibana/kibana.conf.j2 dest=/etc/nginx/sites-available/kibana mode=0755
|
||||||
|
- name: ensure kibana is secured with a password
|
||||||
|
template: src=../files/kibana/kibana.htpasswd.j2 dest=/etc/nginx/conf.d/kibana.htpasswd mode=0755
|
||||||
- name: ensure default Nginx site is not enabled
|
- name: ensure default Nginx site is not enabled
|
||||||
file: state=absent path=/etc/nginx/sites-enabled/default
|
file: state=absent path=/etc/nginx/sites-enabled/default
|
||||||
- name: ensure kibana nginx site is enabled
|
- name: ensure kibana nginx site is enabled
|
||||||
|
|
Loading…
Reference in New Issue
Block a user