mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 08:21:15 +03:00
22 lines
251 B
Plaintext
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"
|
|
}
|
|
}
|