1 Star 0 Fork 0

zhangjungang/beats

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
mongodb.go 2.33 KB
一键复制 编辑 原始数据 按行查看 历史
package mongodb
import (
"fmt"
"net/url"
"strings"
"github.com/elastic/beats/libbeat/logp"
"github.com/elastic/beats/metricbeat/mb"
"github.com/elastic/beats/metricbeat/mb/parse"
mgo "gopkg.in/mgo.v2"
)
func init() {
// Register the ModuleFactory function for the "mongodb" module.
if err := mb.Registry.AddModule("mongodb", NewModule); err != nil {
panic(err)
}
}
// NewModule creates a new mb.Module instance and validates that at least one host has been
// specified
func NewModule(base mb.BaseModule) (mb.Module, error) {
// Validate that at least one host has been specified.
config := struct {
Hosts []string `config:"hosts" validate:"nonzero,required"`
}{}
if err := base.UnpackConfig(&config); err != nil {
return nil, err
}
return &base, nil
}
// ParseURL parses valid MongoDB URL strings into an mb.HostData instance
func ParseURL(module mb.Module, host string) (mb.HostData, error) {
c := struct {
Username string `config:"username"`
Password string `config:"password"`
}{}
if err := module.UnpackConfig(&c); err != nil {
return mb.HostData{}, err
}
if parts := strings.SplitN(host, "://", 2); len(parts) != 2 {
// Add scheme.
host = fmt.Sprintf("mongodb://%s", host)
}
// This doesn't use URLHostParserBuilder because MongoDB URLs can contain
// multiple hosts separated by commas (mongodb://host1,host2,host3?options).
u, err := url.Parse(host)
if err != nil {
return mb.HostData{}, fmt.Errorf("error parsing URL: %v", err)
}
parse.SetURLUser(u, c.Username, c.Password)
// https://docs.mongodb.com/manual/reference/connection-string/
_, err = mgo.ParseURL(u.String())
if err != nil {
return mb.HostData{}, err
}
return parse.NewHostDataFromURL(u), nil
}
// NewDirectSession estbalishes direct connections with a list of hosts. It uses the supplied
// dialInfo parameter as a template for establishing more direct connections
func NewDirectSession(dialInfo *mgo.DialInfo) (*mgo.Session, error) {
// make a copy
nodeDialInfo := *dialInfo
nodeDialInfo.Direct = true
nodeDialInfo.FailFast = true
logp.Info("Connecting to MongoDB node at %v", nodeDialInfo.Addrs)
session, err := mgo.DialWithInfo(&nodeDialInfo)
if err != nil {
logp.Err("Error establishing direct connection to mongo node at %v. Error output: %s", nodeDialInfo.Addrs, err.Error())
return nil, err
}
return session, nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhangjungang/beats.git
git@gitee.com:zhangjungang/beats.git
zhangjungang
beats
beats
v5.6.3

搜索帮助

344bd9b3 5694891 D2dac590 5694891