Tobias von Dewitz 362fdc9fb2 go modified | 5 år sedan | |
---|---|---|
.. | ||
ratelimiter | 5 år sedan | |
util | 6 år sedan | |
watch | 5 år sedan | |
winfile | 6 år sedan | |
.gitignore | 5 år sedan | |
.travis.yml | 5 år sedan | |
CHANGES.md | 6 år sedan | |
Dockerfile | 6 år sedan | |
LICENSE.txt | 6 år sedan | |
Makefile | 6 år sedan | |
README.md | 5 år sedan | |
appveyor.yml | 6 år sedan | |
tail.go | 5 år sedan | |
tail_posix.go | 6 år sedan | |
tail_windows.go | 6 år sedan |
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.