mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
96d06e106f
allows to send container logs to Graylog or Logstash. Signed-off-by: Marius Sturm <marius@graylog.com>
10 lines
372 B
Go
10 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"
|
|
)
|