mirror of
https://github.com/ansible/awx.git
synced 2024-10-31 23:51:09 +03:00
23 lines
267 B
Plaintext
23 lines
267 B
Plaintext
input {
|
|
http {
|
|
port => 8085
|
|
user => awx_logger
|
|
password => "workflows"
|
|
}
|
|
}
|
|
|
|
## Add your filters / logstash plugins configuration here
|
|
|
|
filter {
|
|
json {
|
|
source => "message"
|
|
}
|
|
}
|
|
|
|
output {
|
|
stdout { codec => rubydebug }
|
|
file {
|
|
path => "/logstash.log"
|
|
}
|
|
}
|