-
Notifications
You must be signed in to change notification settings - Fork 671
Closed
jacobdr/logspout
#1Description
Hey, have been using logspout for about a week now and am running into some pretty serious duplicate log issues. The simple script I am running is having its logs duplicated over 1000 times. I have verified that its not log stash or the application causing it. I have installed to logstash plugin for it, and I'm not sure if thats somehow messing it up.
Here is my Dockerfile:
FROM gliderlabs/logspout:master
ENV SYSLOG_FORMAT rfc3164
and heres is my modules.go
package main
import (
_ "github.com/gliderlabs/logspout/adapters/syslog"
_ "github.com/gliderlabs/logspout/transports/tcp"
_ "github.com/looplab/logspout-logstash"
_ "github.com/gliderlabs/logspout/transports/udp"
)
I am using the latest image off of docker hub. Any idea what could be happening here.