lotus/node/modules/tracer/elasticsearch_transport.go

93 lines
1.9 KiB
Go
Raw Normal View History

2021-09-15 12:50:27 +00:00
package tracer
import (
"context"
"encoding/json"
"fmt"
"net/url"
2021-09-17 12:22:57 +00:00
"os"
2021-09-15 12:50:27 +00:00
"strings"
"github.com/elastic/go-elasticsearch/v7"
"github.com/elastic/go-elasticsearch/v7/esapi"
2021-09-17 12:22:57 +00:00
"github.com/elastic/go-elasticsearch/v7/estransport"
2021-09-15 12:50:27 +00:00
)
2021-09-15 13:11:34 +00:00
const (
2021-09-17 12:22:57 +00:00
ElasticSearch_INDEX = "lotus2"
ElasticSearch_DOC_LOTUS = "doc_lotus"
ElasticSearch_DOC_PUBSUB = "doc_pubsub"
2021-09-15 13:11:34 +00:00
)
2021-09-15 12:50:27 +00:00
func NewElasticSearchTransport(connectionString string) (TracerTransport, error) {
conUrl, err := url.Parse(connectionString)
username := conUrl.User.Username()
password, _ := conUrl.User.Password()
cfg := elasticsearch.Config{
Addresses: []string{
"https://" + conUrl.Host,
},
Username: username,
Password: password,
2021-09-17 12:22:57 +00:00
Logger: &estransport.CurlLogger{
Output: os.Stdout,
EnableRequestBody: true,
EnableResponseBody: true,
},
}
es, err := elasticsearch.NewClient(cfg)
2021-09-15 12:50:27 +00:00
if err != nil {
2021-09-15 12:58:36 +00:00
return nil, err
2021-09-15 12:50:27 +00:00
}
return &elasticSearchTransport{
cl: es,
2021-09-15 12:58:36 +00:00
}, nil
2021-09-15 12:50:27 +00:00
}
type elasticSearchTransport struct {
cl *elasticsearch.Client
}
2021-09-15 14:16:12 +00:00
func (est *elasticSearchTransport) Transport(evt TracerTransportEvent) error {
var e interface{}
var docId string
2021-09-15 14:16:12 +00:00
if evt.lotusTraceEvent != nil {
e = *evt.lotusTraceEvent
2021-09-16 14:49:47 +00:00
docId = ElasticSearch_DOC_PUBSUB
2021-09-15 14:16:12 +00:00
} else if evt.pubsubTraceEvent != nil {
e = *evt.pubsubTraceEvent
2021-09-16 14:49:47 +00:00
docId = ElasticSearch_DOC_PUBSUB
} else {
return nil
}
2021-09-15 14:16:12 +00:00
jsonEvt, err := json.Marshal(e)
if err != nil {
2021-09-15 14:05:44 +00:00
return fmt.Errorf("error while marshaling event: %s", err)
}
2021-09-15 12:50:27 +00:00
req := esapi.IndexRequest{
2021-09-15 13:11:34 +00:00
Index: ElasticSearch_INDEX,
DocumentID: docId,
2021-09-15 14:16:12 +00:00
Body: strings.NewReader(string(jsonEvt)),
2021-09-15 12:50:27 +00:00
Refresh: "true",
}
// Perform the request with the client.
res, err := req.Do(context.Background(), est.cl)
if err != nil {
return err
}
defer res.Body.Close()
if res.IsError() {
return fmt.Errorf("[%s] Error indexing document ID=%s", res.Status(), req.DocumentID)
}
return nil
}