31 lines
		
	
	
		
			701 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			701 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package mongodb
 | |
| 
 | |
| import (
 | |
| 	cnsmm "git.loafle.net/commons/service_matcher-go/mongodb"
 | |
| 	ocsm "git.loafle.net/overflow/commons-go/sensorconfig/model"
 | |
| 	"git.loafle.net/overflow/container_network/crawler/health"
 | |
| 	crawler "git.loafle.net/overflow/crawler-go"
 | |
| )
 | |
| 
 | |
| type MongoDBHealthCrawler struct {
 | |
| 	health.SocketHeahthCrawler
 | |
| }
 | |
| 
 | |
| func (c *MongoDBHealthCrawler) Name() string {
 | |
| 	return "MONGODB_HEALTH_CRAWLER"
 | |
| }
 | |
| 
 | |
| func (c *MongoDBHealthCrawler) Get(config *ocsm.SensorConfig) (map[string]string, error) {
 | |
| 	rss, err := c.CheckHeahth(config)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return rss, nil
 | |
| }
 | |
| 
 | |
| func NewCrawler() crawler.Crawler {
 | |
| 	c := &MongoDBHealthCrawler{}
 | |
| 	c.SetMatcher(cnsmm.NewMatcher())
 | |
| 	return c
 | |
| }
 |