mirror of
https://github.com/deviantony/docker-elk.git
synced 2026-01-03 11:38:05 +01:00
10 lines
290 B
Go
10 lines
290 B
Go
package main
|
|
|
|
// installs the Logstash adapter for Logspout, and required dependencies
|
|
// https://github.com/looplab/logspout-logstash
|
|
import (
|
|
_ "github.com/looplab/logspout-logstash"
|
|
_ "github.com/gliderlabs/logspout/transports/udp"
|
|
_ "github.com/gliderlabs/logspout/transports/tcp"
|
|
)
|