2015-12-29 04:08:03 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2016-02-25 21:06:37 +01:00
|
|
|
"encoding/json"
|
2016-02-19 11:30:42 +01:00
|
|
|
"flag"
|
2015-12-29 04:08:03 +01:00
|
|
|
"log"
|
2016-02-25 22:06:15 +01:00
|
|
|
"net"
|
2016-02-19 11:13:30 +01:00
|
|
|
"net/http"
|
2016-02-25 21:06:37 +01:00
|
|
|
"os"
|
|
|
|
"os/signal"
|
|
|
|
"syscall"
|
|
|
|
"time"
|
|
|
|
|
2016-03-07 01:37:38 +01:00
|
|
|
"github.com/ffdo/node-informant/gluon-collector/data"
|
2016-02-25 21:06:37 +01:00
|
|
|
"github.com/monitormap/micro-daemon/models"
|
2016-02-26 09:28:31 +01:00
|
|
|
"github.com/monitormap/micro-daemon/respond"
|
2016-02-25 21:06:37 +01:00
|
|
|
"github.com/monitormap/micro-daemon/websocketserver"
|
2015-12-29 14:05:47 +01:00
|
|
|
)
|
2016-02-25 21:06:37 +01:00
|
|
|
|
2016-02-19 11:30:42 +01:00
|
|
|
var (
|
2016-03-07 09:52:52 +01:00
|
|
|
configFile string
|
|
|
|
config *models.Config
|
|
|
|
wsserverForNodes *websocketserver.Server
|
|
|
|
respondDaemon *respond.Daemon
|
|
|
|
nodes = models.NewNodes()
|
2016-03-07 02:29:31 +01:00
|
|
|
//aliases = models.NewNodes()
|
2016-02-19 11:30:42 +01:00
|
|
|
)
|
2016-02-25 21:06:37 +01:00
|
|
|
|
|
|
|
func main() {
|
2016-03-07 09:52:52 +01:00
|
|
|
flag.StringVar(&configFile, "c", "config.yml", "path of configuration file (default:config.yaml)")
|
2016-02-19 11:30:42 +01:00
|
|
|
flag.Parse()
|
2016-03-07 09:52:52 +01:00
|
|
|
config = models.ConfigReadFile(configFile)
|
2015-12-29 14:05:47 +01:00
|
|
|
|
2016-03-07 09:52:52 +01:00
|
|
|
collectInterval := time.Second * time.Duration(config.Responedd.CollectInterval)
|
|
|
|
saveInterval := time.Second * time.Duration(config.Nodes.SaveInterval)
|
2016-02-19 11:30:42 +01:00
|
|
|
|
2016-03-07 09:52:52 +01:00
|
|
|
if config.Nodes.Enable {
|
2016-03-07 02:29:31 +01:00
|
|
|
go nodes.Saver(config.Nodes.NodesPath, config.Nodes.GraphsPath, saveInterval)
|
2016-03-07 09:52:52 +01:00
|
|
|
}
|
|
|
|
if config.Nodes.AliasesEnable {
|
2016-03-07 02:29:31 +01:00
|
|
|
// FIXME what does this do?
|
|
|
|
//go aliases.Saver(config.Nodes.AliasesPath, saveInterval)
|
2016-03-07 09:52:52 +01:00
|
|
|
}
|
2016-02-19 11:30:42 +01:00
|
|
|
|
2016-03-07 09:52:52 +01:00
|
|
|
if config.Webserver.Enable {
|
|
|
|
if config.Webserver.WebsocketNode {
|
|
|
|
wsserverForNodes = websocketserver.NewServer("/nodes")
|
|
|
|
go wsserverForNodes.Listen()
|
2016-02-25 21:06:37 +01:00
|
|
|
}
|
2016-03-07 09:52:52 +01:00
|
|
|
http.Handle("/", http.FileServer(http.Dir(config.Webserver.Webroot)))
|
|
|
|
}
|
2016-02-25 21:06:37 +01:00
|
|
|
|
2016-03-07 09:52:52 +01:00
|
|
|
if config.Responedd.Enable {
|
|
|
|
respondDaemon = respond.NewDaemon(func(coll *respond.Collector, res *respond.Response) {
|
|
|
|
|
|
|
|
switch coll.CollectType {
|
|
|
|
case "neighbours":
|
|
|
|
result := &data.NeighbourStruct{}
|
|
|
|
if json.Unmarshal(res.Raw, result) == nil {
|
|
|
|
node := nodes.Get(result.NodeId)
|
|
|
|
node.Neighbours = result
|
|
|
|
}
|
|
|
|
case "nodeinfo":
|
|
|
|
result := &data.NodeInfo{}
|
|
|
|
if json.Unmarshal(res.Raw, result) == nil {
|
|
|
|
node := nodes.Get(result.NodeId)
|
|
|
|
node.Nodeinfo = result
|
|
|
|
}
|
|
|
|
case "statistics":
|
|
|
|
result := &data.StatisticsStruct{}
|
|
|
|
if json.Unmarshal(res.Raw, result) == nil {
|
|
|
|
node := nodes.Get(result.NodeId)
|
|
|
|
node.Statistics = result
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
log.Println("unknown CollectType:", coll.CollectType)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
go respondDaemon.ListenAndSend(collectInterval)
|
|
|
|
}
|
2016-02-25 21:06:37 +01:00
|
|
|
|
2016-03-07 09:52:52 +01:00
|
|
|
//TODO bad
|
|
|
|
if config.Webserver.Enable {
|
|
|
|
log.Fatal(http.ListenAndServe(net.JoinHostPort(config.Webserver.Address, config.Webserver.Port), nil))
|
|
|
|
}
|
2016-02-25 21:06:37 +01:00
|
|
|
// Wait for End
|
|
|
|
sigs := make(chan os.Signal, 1)
|
|
|
|
signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)
|
|
|
|
sig := <-sigs
|
|
|
|
log.Println("received", sig)
|
|
|
|
|
|
|
|
// Close everything at the end
|
|
|
|
wsserverForNodes.Close()
|
2016-02-26 09:28:31 +01:00
|
|
|
respondDaemon.Close()
|
2015-12-29 04:08:03 +01:00
|
|
|
}
|