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"
|
|
|
|
"reflect"
|
|
|
|
"strings"
|
|
|
|
"syscall"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"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-02-25 21:42:58 +01:00
|
|
|
wsserverForNodes = websocketserver.NewServer("/nodes")
|
2016-02-26 09:28:31 +01:00
|
|
|
respondDaemon *respond.Daemon
|
2016-02-25 21:42:58 +01:00
|
|
|
nodes = models.NewNodes()
|
|
|
|
aliases = models.NewNodes()
|
|
|
|
outputNodesFile string
|
|
|
|
outputAliasesFile string
|
|
|
|
collectInterval time.Duration
|
|
|
|
saveInterval time.Duration
|
2016-02-25 22:06:15 +01:00
|
|
|
listenPort string
|
|
|
|
listenAddr string
|
2016-02-19 11:30:42 +01:00
|
|
|
)
|
2016-02-25 21:06:37 +01:00
|
|
|
|
|
|
|
func main() {
|
2016-02-19 11:30:42 +01:00
|
|
|
var collectSeconds, saveSeconds int
|
|
|
|
|
2016-02-25 21:42:58 +01:00
|
|
|
flag.StringVar(&outputNodesFile, "output", "webroot/nodes.json", "path nodes.json file")
|
|
|
|
flag.StringVar(&outputAliasesFile, "aliases", "webroot/aliases.json", "path aliases.json file")
|
2016-02-25 22:06:15 +01:00
|
|
|
flag.StringVar(&listenPort, "p", "8080", "path aliases.json file")
|
|
|
|
flag.StringVar(&listenAddr, "h", "", "path aliases.json file")
|
2016-02-25 21:44:50 +01:00
|
|
|
flag.IntVar(&saveSeconds, "saveInterval", 60, "interval for data saving")
|
2016-02-25 21:42:58 +01:00
|
|
|
flag.IntVar(&collectSeconds, "collectInterval", 15, "interval for data collections")
|
2016-02-19 11:30:42 +01:00
|
|
|
flag.Parse()
|
2015-12-29 14:05:47 +01:00
|
|
|
|
2016-02-19 11:30:42 +01:00
|
|
|
collectInterval = time.Second * time.Duration(collectSeconds)
|
|
|
|
saveInterval = time.Second * time.Duration(saveSeconds)
|
|
|
|
|
2016-02-25 21:06:37 +01:00
|
|
|
go wsserverForNodes.Listen()
|
2016-02-25 21:42:58 +01:00
|
|
|
go nodes.Saver(outputNodesFile, saveInterval)
|
|
|
|
go aliases.Saver(outputAliasesFile, saveInterval)
|
2016-02-26 09:28:31 +01:00
|
|
|
respondDaemon = respond.NewDaemon(func(coll *respond.Collector, res *respond.Response) {
|
2016-02-25 21:06:37 +01:00
|
|
|
var result map[string]interface{}
|
|
|
|
json.Unmarshal(res.Raw, &result)
|
2016-02-19 11:30:42 +01:00
|
|
|
|
2016-02-25 21:06:37 +01:00
|
|
|
nodeID, _ := result["node_id"].(string)
|
|
|
|
|
|
|
|
if nodeID == "" {
|
|
|
|
log.Println("unable to parse node_id")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
node := nodes.Get(nodeID)
|
2015-12-29 14:05:47 +01:00
|
|
|
|
2016-02-25 21:06:37 +01:00
|
|
|
// Set result
|
|
|
|
elem := reflect.ValueOf(node).Elem()
|
|
|
|
field := elem.FieldByName(strings.Title(coll.CollectType))
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(field, result) {
|
|
|
|
wsserverForNodes.SendAll(node)
|
|
|
|
}
|
|
|
|
|
|
|
|
field.Set(reflect.ValueOf(result))
|
|
|
|
})
|
2016-02-26 09:28:31 +01:00
|
|
|
go respondDaemon.ListenAndSend(collectInterval)
|
2016-02-25 21:06:37 +01:00
|
|
|
|
|
|
|
http.Handle("/", http.FileServer(http.Dir("webroot")))
|
|
|
|
//TODO bad
|
2016-02-25 22:06:15 +01:00
|
|
|
log.Fatal(http.ListenAndServe(net.JoinHostPort(listenAddr, listenPort), 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
|
|
|
}
|