docker.images/ansible.awx/awx-17.1.0/tools/elastic/logstash/config/logstash.conf

22 lines
251 B
Plaintext

input {
http {
port => 8085
user => awx_logger
password => "workflows"
}
}
## Add your filters / logstash plugins configuration here
filter {
json {
source => "message"
}
}
output {
elasticsearch {
hosts => "elasticsearch:9200"
}
}