Tobias von Dewitz 75fda08e43 added periodic reconnect to nats | vor 6 Jahren | |
---|---|---|
.. | ||
ratelimiter | vor 6 Jahren | |
util | vor 6 Jahren | |
watch | vor 6 Jahren | |
winfile | vor 6 Jahren | |
CHANGES.md | vor 6 Jahren | |
Dockerfile | vor 6 Jahren | |
LICENSE.txt | vor 6 Jahren | |
Makefile | vor 6 Jahren | |
README.md | vor 6 Jahren | |
appveyor.yml | vor 6 Jahren | |
tail.go | vor 6 Jahren | |
tail_posix.go | vor 6 Jahren | |
tail_windows.go | vor 6 Jahren |
A Go package striving to emulate the features of the BSD tail
program.
t, err := tail.TailFile("/var/log/nginx.log", tail.Config{Follow: true})
for line := range t.Lines {
fmt.Println(line.Text)
}
See API documentation.
Tail comes with full support for truncation/move detection as it is designed to work with log rotation tools.
go get github.com/hpcloud/tail/...
This package needs assistance for full Windows support.