1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-02 01:21:21 +03:00
awx/tools/docker-compose/logstash.conf

29 lines
317 B
Plaintext
Raw Normal View History

input {
http {
port => 8085
user => awx_logger
password => "workflows"
}
udp {
port => 8086
}
tcp {
port => 8087
}
}
## Add your filters / logstash plugins configuration here
filter {
json {
source => "message"
}
}
output {
stdout { codec => rubydebug }
file {
path => "/logstash.log"
}
}