mirror of
https://github.com/ansible/awx.git
synced 2026-02-18 11:40:05 -03:30
20 lines
204 B
Plaintext
20 lines
204 B
Plaintext
input {
|
|
http {
|
|
port => 8085
|
|
}
|
|
}
|
|
|
|
## Add your filters / logstash plugins configuration here
|
|
|
|
filter {
|
|
json {
|
|
source => "message"
|
|
}
|
|
}
|
|
|
|
output {
|
|
elasticsearch {
|
|
hosts => "elasticsearch:9200"
|
|
}
|
|
}
|