Tobias von Dewitz 75fda08e43 added periodic reconnect to nats | há 6 anos atrás | |
---|---|---|
.. | ||
ratelimiter | há 6 anos atrás | |
util | há 6 anos atrás | |
watch | há 6 anos atrás | |
winfile | há 6 anos atrás | |
CHANGES.md | há 6 anos atrás | |
Dockerfile | há 6 anos atrás | |
LICENSE.txt | há 6 anos atrás | |
Makefile | há 6 anos atrás | |
README.md | há 6 anos atrás | |
appveyor.yml | há 6 anos atrás | |
tail.go | há 6 anos atrás | |
tail_posix.go | há 6 anos atrás | |
tail_windows.go | há 6 anos atrás |
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.