Popularity
8.6
Declining
Activity
0.0
Stable
2,646
99
504

Description

hpcloud/tail has been completely dormant for 2 years and half. Development continued under nxadm/tail. The maintainer released the library with modules, updates dependencies and fixed a lot of bugs (and merged open PRs). I saw that the lib entered Fedora, Debian and Ubuntu. I am a user that moved from hpcloud to nxadm.

Programming language: Go
License: MIT License
Tags: Logging    
Latest version: v1.0.0

tail alternatives and similar packages

Based on the "Logging" category.
Alternatively, view tail alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of tail or a related project?

Add another 'Logging' Package

README

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.