telegraf/services/enterprise/enterprise.go

59 lines
1.2 KiB
Go
Raw Normal View History

2016-02-10 19:54:34 +00:00
package enterprise
import (
2016-02-10 21:05:17 +00:00
"fmt"
2016-02-10 19:54:34 +00:00
"log"
2016-02-10 21:05:17 +00:00
"net/http"
2016-02-10 19:54:34 +00:00
"os"
"github.com/influxdata/enterprise-client/v2"
2016-02-10 21:05:17 +00:00
"github.com/influxdata/enterprise-client/v2/admin"
2016-02-10 19:54:34 +00:00
)
type Config struct {
2016-02-10 21:05:17 +00:00
AdminPort uint16
Hosts []*client.Host
2016-02-10 19:54:34 +00:00
}
type Service struct {
2016-02-10 21:05:17 +00:00
hosts []*client.Host
logger *log.Logger
hostname string
adminPort string
2016-02-10 19:54:34 +00:00
}
2016-02-10 20:42:07 +00:00
func NewEnterprise(c Config, hostname string) *Service {
2016-02-10 19:54:34 +00:00
return &Service{
2016-02-10 21:05:17 +00:00
hosts: c.Hosts,
hostname: hostname,
logger: log.New(os.Stdout, "[enterprise]", log.Ldate|log.Ltime),
adminPort: fmt.Sprintf(":%d", c.AdminPort),
2016-02-10 19:54:34 +00:00
}
}
func (s *Service) Open() {
cl, err := client.New(s.hosts)
if err != nil {
s.logger.Printf("Unable to contact one or more Enterprise hosts. err: %s", err.Error())
return
}
go s.registerProduct(cl)
2016-02-10 21:05:17 +00:00
go s.startAdminInterface()
2016-02-10 19:54:34 +00:00
}
func (s *Service) registerProduct(cl *client.Client) {
p := client.Product{
ProductID: "telegraf",
2016-02-10 20:42:07 +00:00
Host: s.hostname,
2016-02-10 19:54:34 +00:00
}
_, err := cl.Register(&p)
if err != nil {
s.logger.Println("Unable to register Telegraf with Enterprise")
}
}
2016-02-10 21:05:17 +00:00
func (s *Service) startAdminInterface() {
go http.ListenAndServe(s.adminPort, admin.App("foo", []byte("bar")))
}