Coder Social home page Coder Social logo

gotail's Introduction

Gotail

Build Status

Blog: (http://capykoa.com/articles/11)

Background

I needed a simple utility to follow rapidly growing adserver logrotating logs that I can process dynamically and in real time.

Features

  • Default behavior supports logrotating files.
  • Timeout option to wait on new files that hasn't been created yet.
  • Supports high reads. On my 2013 Macbook Pro, I was able benchmark at more than 150,000 lines/second (go test). However, expected performance on production should be much higher.
  • Lightweight and low memory footprint
  • Partly inspired by ActiveState/tail

Usage

package main

import (
	"flag"
	"fmt"
	"log"

	"github.com/dleung/gotail"
)

var fname string

func main() {
	flag.StringVar(&fname, "file", "", "File to tail")
	flag.Parse()

	// Set timeout to 0 to automatically fail if file isn't found
	tail, err := gotail.NewTail(fname, gotail.Config{Timeout: 10})
	if err != nil {
		log.Fatalln(err)
	}

	// lines on the tail.Lines channel for new lines.
	for line := range tail.Lines {
		fmt.Println(line)
	}
}

gotail's People

Contributors

dleung avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

gotail's Issues

Why not use fsnotify to detect writes instead of polling?

I was hoping to use this library for parsing some logs, but in Go 1.5 it eats a full 2 CPU cores smashing its head against bufio.Reader.ReadString when no data is even available. Not too suitable when it is not the lone (nor primary) application on the server.

I only realized this as I went to deploy and saw the load averages on the machines explode, going into strace and seeing millions of syscall.Read.

fsnotify provides a Write event - why not let the system wake you when there is more data to read?

Edit: I have rewritten with fsnotify, and CPU is totally idle, using epoll on Linux, compared to fully loaded with gotail.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.