mirror of
https://github.com/ansible/awx.git
synced 2026-02-15 18:20:00 -03:30
Logging Integration, ELK docker-compose as update file
This commit is contained in:
4
tools/elastic/logstash/Dockerfile
Normal file
4
tools/elastic/logstash/Dockerfile
Normal file
@@ -0,0 +1,4 @@
|
||||
FROM logstash:5
|
||||
|
||||
# Add your logstash plugins setup here
|
||||
# Example: RUN logstash-plugin install logstash-filter-json
|
||||
19
tools/elastic/logstash/config/logstash.conf
Normal file
19
tools/elastic/logstash/config/logstash.conf
Normal file
@@ -0,0 +1,19 @@
|
||||
input {
|
||||
http {
|
||||
port => 8085
|
||||
}
|
||||
}
|
||||
|
||||
## Add your filters / logstash plugins configuration here
|
||||
|
||||
filter {
|
||||
json {
|
||||
source => "message"
|
||||
}
|
||||
}
|
||||
|
||||
output {
|
||||
elasticsearch {
|
||||
hosts => "elasticsearch:9200"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user