mirror of
https://github.com/ansible/awx.git
synced 2026-03-02 17:28:51 -03:30
Logging Integration, ELK docker-compose as update file
This commit is contained in:
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