allows to send container logs to Graylog or Logstash. Signed-off-by: Marius Sturm <marius@graylog.com> Upstream-commit: 96d06e106fb9e35e5a526054d3aa0152152a9cc4 Component: engine
11 lines
372 B
Go
11 lines
372 B
Go
package daemon
|
|
|
|
// Importing packages here only to make sure their init gets called and
|
|
// therefore they register themselves to the logdriver factory.
|
|
import (
|
|
_ "github.com/docker/docker/daemon/logger/gelf"
|
|
_ "github.com/docker/docker/daemon/logger/journald"
|
|
_ "github.com/docker/docker/daemon/logger/jsonfilelog"
|
|
_ "github.com/docker/docker/daemon/logger/syslog"
|
|
)
|