103 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			103 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package es
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"encoding/json"
 | 
						|
	"errors"
 | 
						|
	"fmt"
 | 
						|
	"net/url"
 | 
						|
	"strings"
 | 
						|
	"time"
 | 
						|
 | 
						|
	"github.com/elastic/go-elasticsearch/v6"
 | 
						|
	"github.com/elastic/go-elasticsearch/v6/esapi"
 | 
						|
 | 
						|
	"github.com/astaxie/beego/pkg/logs"
 | 
						|
)
 | 
						|
 | 
						|
// NewES returns a LoggerInterface
 | 
						|
func NewES() logs.Logger {
 | 
						|
	cw := &esLogger{
 | 
						|
		Level: logs.LevelDebug,
 | 
						|
	}
 | 
						|
	return cw
 | 
						|
}
 | 
						|
 | 
						|
// esLogger will log msg into ES
 | 
						|
// before you using this implementation,
 | 
						|
// please import this package
 | 
						|
// usually means that you can import this package in your main package
 | 
						|
// for example, anonymous:
 | 
						|
// import _ "github.com/astaxie/beego/logs/es"
 | 
						|
type esLogger struct {
 | 
						|
	*elasticsearch.Client
 | 
						|
	DSN   string `json:"dsn"`
 | 
						|
	Level int    `json:"level"`
 | 
						|
}
 | 
						|
 | 
						|
// {"dsn":"http://localhost:9200/","level":1}
 | 
						|
func (el *esLogger) Init(jsonconfig string) error {
 | 
						|
	err := json.Unmarshal([]byte(jsonconfig), el)
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
	if el.DSN == "" {
 | 
						|
		return errors.New("empty dsn")
 | 
						|
	} else if u, err := url.Parse(el.DSN); err != nil {
 | 
						|
		return err
 | 
						|
	} else if u.Path == "" {
 | 
						|
		return errors.New("missing prefix")
 | 
						|
	} else {
 | 
						|
		conn, err := elasticsearch.NewClient(elasticsearch.Config{
 | 
						|
			Addresses: []string{el.DSN},
 | 
						|
		})
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
		el.Client = conn
 | 
						|
	}
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
// WriteMsg writes the msg and level into es
 | 
						|
func (el *esLogger) WriteMsg(when time.Time, msg string, level int) error {
 | 
						|
	if level > el.Level {
 | 
						|
		return nil
 | 
						|
	}
 | 
						|
 | 
						|
	idx := LogDocument{
 | 
						|
		Timestamp: when.Format(time.RFC3339),
 | 
						|
		Msg:       msg,
 | 
						|
	}
 | 
						|
 | 
						|
	body, err := json.Marshal(idx)
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
	req := esapi.IndexRequest{
 | 
						|
		Index:        fmt.Sprintf("%04d.%02d.%02d", when.Year(), when.Month(), when.Day()),
 | 
						|
		DocumentType: "logs",
 | 
						|
		Body:         strings.NewReader(string(body)),
 | 
						|
	}
 | 
						|
	_, err = req.Do(context.Background(), el.Client)
 | 
						|
	return err
 | 
						|
}
 | 
						|
 | 
						|
// Destroy is a empty method
 | 
						|
func (el *esLogger) Destroy() {
 | 
						|
}
 | 
						|
 | 
						|
// Flush is a empty method
 | 
						|
func (el *esLogger) Flush() {
 | 
						|
 | 
						|
}
 | 
						|
 | 
						|
type LogDocument struct {
 | 
						|
	Timestamp string `json:"timestamp"`
 | 
						|
	Msg       string `json:"msg"`
 | 
						|
}
 | 
						|
 | 
						|
func init() {
 | 
						|
	logs.Register(logs.AdapterEs, NewES)
 | 
						|
}
 |