Tobias von Dewitz 362fdc9fb2 go modified 5 年之前
..
ratelimiter 362fdc9fb2 go modified 5 年之前
util 75fda08e43 added periodic reconnect to nats 6 年之前
watch 362fdc9fb2 go modified 5 年之前
winfile 75fda08e43 added periodic reconnect to nats 6 年之前
.gitignore 362fdc9fb2 go modified 5 年之前
.travis.yml 362fdc9fb2 go modified 5 年之前
CHANGES.md 75fda08e43 added periodic reconnect to nats 6 年之前
Dockerfile 75fda08e43 added periodic reconnect to nats 6 年之前
LICENSE.txt 75fda08e43 added periodic reconnect to nats 6 年之前
Makefile 75fda08e43 added periodic reconnect to nats 6 年之前
README.md 362fdc9fb2 go modified 5 年之前
appveyor.yml 75fda08e43 added periodic reconnect to nats 6 年之前
tail.go 362fdc9fb2 go modified 5 年之前
tail_posix.go 75fda08e43 added periodic reconnect to nats 6 年之前
tail_windows.go 75fda08e43 added periodic reconnect to nats 6 年之前

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.