操作テールに移動

操作テールに移動


目次

  1. 操作テールに移動

1.操作テールに移動

1.しっぽ

  1. HPチームが作成したテールライブラリは、ログ収集によく使用されます

2.ダウンロードしてインストールします

go get github.com/hpcloud/tail

3.操作テールに移動します

package main

import (
	"fmt"
	"time"

	"github.com/hpcloud/tail"
)

// tailf的用法示例

func main() {
    
    
	fileName := "./my.log"
	config := tail.Config{
    
    
		ReOpen:    true,                                 // 重新打开
		Follow:    true,                                 // 是否跟随
		Location:  &tail.SeekInfo{
    
    Offset: 0, Whence: 2}, // 从文件的哪个地方开始读
		MustExist: false,                                // 文件不存在不报错
		Poll:      true,
	}
	tails, err := tail.TailFile(fileName, config) //开始跟踪文件。输出流是Tail.Lines的通道
	if err != nil {
    
    
		fmt.Println("tail file failed, err:", err)
		return
	}
	var (
		line *tail.Line
		ok   bool
	)
	for {
    
    
		line, ok = <-tails.Lines
		if !ok {
    
    
			fmt.Printf("tail file close reopen, filename:%s\n", tails.Filename)
			time.Sleep(time.Second)
			continue
		}
		fmt.Println("line:", line.Text)
	}
}

おすすめ

転載: blog.csdn.net/weixin_41910694/article/details/106764363