mirror of
https://github.com/elastic/logstash.git
synced 2025-04-23 14:17:58 -04:00
introduces two rake tasks: `rake artifact:docker_oss` and `rake artifact:docker`, which will create the docker images of the OSS and non OSS packages. These tasks depend on the tar artifacts being built. Also `rake artifact:all` has been modified to also call these two tasks. most code was moved from https://github.com/elastic/logstash-docker/
14 lines
212 B
Text
14 lines
212 B
Text
input {
|
|
heartbeat {
|
|
interval => 5
|
|
message => 'Hello from Logstash 💓'
|
|
}
|
|
}
|
|
|
|
output {
|
|
elasticsearch {
|
|
hosts => [ 'elasticsearch' ]
|
|
user => 'elastic'
|
|
password => 'changeme'
|
|
}
|
|
}
|