mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-02-24 13:48:02 +07:00
11 lines
338 B
Go
11 lines
338 B
Go
package main
|
|
|
|
// installs the Logstash adapter for Logspout, and required dependencies
|
|
// https://github.com/looplab/logspout-logstash
|
|
import (
|
|
_ "github.com/gliderlabs/logspout/healthcheck"
|
|
_ "github.com/gliderlabs/logspout/transports/tcp"
|
|
_ "github.com/gliderlabs/logspout/transports/udp"
|
|
_ "github.com/looplab/logspout-logstash"
|
|
)
|