Tobias von Dewitz 362fdc9fb2 go modified 5 năm trước cách đây
..
ratelimiter 362fdc9fb2 go modified 5 năm trước cách đây
util 75fda08e43 added periodic reconnect to nats 6 năm trước cách đây
watch 362fdc9fb2 go modified 5 năm trước cách đây
winfile 75fda08e43 added periodic reconnect to nats 6 năm trước cách đây
.gitignore 362fdc9fb2 go modified 5 năm trước cách đây
.travis.yml 362fdc9fb2 go modified 5 năm trước cách đây
CHANGES.md 75fda08e43 added periodic reconnect to nats 6 năm trước cách đây
Dockerfile 75fda08e43 added periodic reconnect to nats 6 năm trước cách đây
LICENSE.txt 75fda08e43 added periodic reconnect to nats 6 năm trước cách đây
Makefile 75fda08e43 added periodic reconnect to nats 6 năm trước cách đây
README.md 362fdc9fb2 go modified 5 năm trước cách đây
appveyor.yml 75fda08e43 added periodic reconnect to nats 6 năm trước cách đây
tail.go 362fdc9fb2 go modified 5 năm trước cách đây
tail_posix.go 75fda08e43 added periodic reconnect to nats 6 năm trước cách đây
tail_windows.go 75fda08e43 added periodic reconnect to nats 6 năm trước cách đây

README.md

Build Status Build status

Go package for tail-ing files

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.

Log rotation

Tail comes with full support for truncation/move detection as it is designed to work with log rotation tools.

Installing

go get github.com/hpcloud/tail/...

Windows support

This package needs assistance for full Windows support.