mirror of
https://github.com/weaveworks/scope.git
synced 2026-07-17 20:41:51 +00:00
Add Control plumbing.
This commit is contained in:
@@ -60,8 +60,13 @@ func TestAPITopologyContainers(t *testing.T) {
|
||||
if err := json.Unmarshal(body, &topo); err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
want := expected.RenderedContainers.Copy()
|
||||
for id, node := range want {
|
||||
node.ControlNode = ""
|
||||
want[id] = node
|
||||
}
|
||||
|
||||
if want, have := expected.RenderedContainers, topo.Nodes.Prune(); !reflect.DeepEqual(want, have) {
|
||||
if have := topo.Nodes.Prune(); !reflect.DeepEqual(want, have) {
|
||||
t.Error(test.Diff(want, have))
|
||||
}
|
||||
}
|
||||
|
||||
121
app/controls.go
Normal file
121
app/controls.go
Normal file
@@ -0,0 +1,121 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"log"
|
||||
"math/rand"
|
||||
"net/http"
|
||||
"net/rpc"
|
||||
"sync"
|
||||
|
||||
"github.com/gorilla/mux"
|
||||
|
||||
"github.com/weaveworks/scope/xfer"
|
||||
)
|
||||
|
||||
func registerControlRoutes(router *mux.Router) {
|
||||
controlRouter := &controlRouter{
|
||||
probes: map[string]controlHandler{},
|
||||
}
|
||||
router.Methods("GET").Path("/api/control/ws").HandlerFunc(controlRouter.handleProbeWS)
|
||||
router.Methods("POST").MatcherFunc(URLMatcher("/api/control/{probeID}/{nodeID}/{control}")).HandlerFunc(controlRouter.handleControl)
|
||||
}
|
||||
|
||||
type controlHandler struct {
|
||||
id int64
|
||||
client *rpc.Client
|
||||
}
|
||||
|
||||
func (ch *controlHandler) handle(req xfer.Request) xfer.Response {
|
||||
var res xfer.Response
|
||||
if err := ch.client.Call("control.Handle", req, &res); err != nil {
|
||||
return xfer.ResponseError(err)
|
||||
}
|
||||
return res
|
||||
}
|
||||
|
||||
type controlRouter struct {
|
||||
sync.Mutex
|
||||
probes map[string]controlHandler
|
||||
}
|
||||
|
||||
func (cr *controlRouter) get(probeID string) (controlHandler, bool) {
|
||||
cr.Lock()
|
||||
defer cr.Unlock()
|
||||
handler, ok := cr.probes[probeID]
|
||||
return handler, ok
|
||||
}
|
||||
|
||||
func (cr *controlRouter) set(probeID string, handler controlHandler) {
|
||||
cr.Lock()
|
||||
defer cr.Unlock()
|
||||
cr.probes[probeID] = handler
|
||||
}
|
||||
|
||||
func (cr *controlRouter) rm(probeID string, handler controlHandler) {
|
||||
cr.Lock()
|
||||
defer cr.Unlock()
|
||||
// NB probe might have reconnected in the mean time, need to ensure we do not
|
||||
// delete new connection! Also, it might have connected then deleted itself!
|
||||
if cr.probes[probeID].id == handler.id {
|
||||
delete(cr.probes, probeID)
|
||||
}
|
||||
}
|
||||
|
||||
// handleControl routes control requests from the client to the appropriate
|
||||
// probe. Its is blocking.
|
||||
func (cr *controlRouter) handleControl(w http.ResponseWriter, r *http.Request) {
|
||||
var (
|
||||
vars = mux.Vars(r)
|
||||
probeID = vars["probeID"]
|
||||
nodeID = vars["nodeID"]
|
||||
control = vars["control"]
|
||||
)
|
||||
handler, ok := cr.get(probeID)
|
||||
if !ok {
|
||||
log.Printf("Probe %s is not connected right now...", probeID)
|
||||
http.NotFound(w, r)
|
||||
return
|
||||
}
|
||||
|
||||
result := handler.handle(xfer.Request{
|
||||
ID: rand.Int63(),
|
||||
NodeID: nodeID,
|
||||
Control: control,
|
||||
})
|
||||
if result.Error != "" {
|
||||
respondWith(w, http.StatusBadRequest, result.Error)
|
||||
return
|
||||
}
|
||||
respondWith(w, http.StatusOK, result.Value)
|
||||
}
|
||||
|
||||
// handleProbeWS accepts websocket connections from the probe and registers
|
||||
// them in the control router, such that HandleControl calls can find them.
|
||||
func (cr *controlRouter) handleProbeWS(w http.ResponseWriter, r *http.Request) {
|
||||
probeID := r.Header.Get(xfer.ScopeProbeIDHeader)
|
||||
if probeID == "" {
|
||||
respondWith(w, http.StatusBadRequest, xfer.ScopeProbeIDHeader)
|
||||
return
|
||||
}
|
||||
|
||||
conn, err := upgrader.Upgrade(w, r, nil)
|
||||
if err != nil {
|
||||
log.Printf("Error upgrading to websocket: %v", err)
|
||||
return
|
||||
}
|
||||
defer conn.Close()
|
||||
|
||||
codec := xfer.NewJSONWebsocketCodec(conn)
|
||||
client := rpc.NewClientWithCodec(codec)
|
||||
handler := controlHandler{
|
||||
id: rand.Int63(),
|
||||
client: client,
|
||||
}
|
||||
|
||||
cr.set(probeID, handler)
|
||||
|
||||
codec.WaitForReadError()
|
||||
|
||||
cr.rm(probeID, handler)
|
||||
client.Close()
|
||||
}
|
||||
69
app/controls_test.go
Normal file
69
app/controls_test.go
Normal file
@@ -0,0 +1,69 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"net"
|
||||
"net/http"
|
||||
"net/http/httptest"
|
||||
"strings"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/weaveworks/scope/xfer"
|
||||
|
||||
"github.com/gorilla/mux"
|
||||
)
|
||||
|
||||
func TestControl(t *testing.T) {
|
||||
router := mux.NewRouter()
|
||||
registerControlRoutes(router)
|
||||
server := httptest.NewServer(router)
|
||||
defer server.Close()
|
||||
|
||||
ip, port, err := net.SplitHostPort(strings.TrimPrefix(server.URL, "http://"))
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
probeConfig := xfer.ProbeConfig{
|
||||
ProbeID: "foo",
|
||||
}
|
||||
client, err := xfer.NewAppClient(probeConfig, ip+":"+port, ip+":"+port)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
defer client.Stop()
|
||||
|
||||
client.ControlConnection(xfer.ControlHandlerFunc(func(req xfer.Request) xfer.Response {
|
||||
if req.NodeID != "nodeid" {
|
||||
t.Fatalf("'%s' != 'nodeid'", req.NodeID)
|
||||
}
|
||||
|
||||
if req.Control != "control" {
|
||||
t.Fatalf("'%s' != 'control'", req.Control)
|
||||
}
|
||||
|
||||
return xfer.Response{
|
||||
Value: "foo",
|
||||
}
|
||||
}))
|
||||
|
||||
time.Sleep(100 * time.Millisecond)
|
||||
|
||||
httpClient := http.Client{
|
||||
Timeout: 1 * time.Second,
|
||||
}
|
||||
resp, err := httpClient.Post(server.URL+"/api/control/foo/nodeid/control", "", nil)
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
var response string
|
||||
if err := json.NewDecoder(resp.Body).Decode(&response); err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
|
||||
if response != "foo" {
|
||||
t.Fatalf("'%s' != 'foo'", response)
|
||||
}
|
||||
}
|
||||
15
app/main.go
15
app/main.go
@@ -14,6 +14,8 @@ import (
|
||||
"syscall"
|
||||
"time"
|
||||
|
||||
"github.com/gorilla/mux"
|
||||
|
||||
"github.com/weaveworks/scope/xfer"
|
||||
)
|
||||
|
||||
@@ -25,6 +27,19 @@ var (
|
||||
uniqueID = "0"
|
||||
)
|
||||
|
||||
func registerStatic(router *mux.Router) {
|
||||
router.Methods("GET").PathPrefix("/").Handler(http.FileServer(FS(false)))
|
||||
}
|
||||
|
||||
// Router creates the mux for all the various app components.
|
||||
func Router(c collector) *mux.Router {
|
||||
router := mux.NewRouter()
|
||||
registerTopologyRoutes(c, router)
|
||||
registerControlRoutes(router)
|
||||
registerStatic(router)
|
||||
return router
|
||||
}
|
||||
|
||||
func main() {
|
||||
var (
|
||||
window = flag.Duration("window", 15*time.Second, "window")
|
||||
|
||||
@@ -11,6 +11,7 @@ import (
|
||||
"github.com/gorilla/mux"
|
||||
|
||||
"github.com/weaveworks/scope/report"
|
||||
"github.com/weaveworks/scope/xfer"
|
||||
)
|
||||
|
||||
// URLMatcher uses request.RequestURI (the raw, unparsed request) to attempt
|
||||
@@ -53,13 +54,7 @@ func gzipHandler(h http.HandlerFunc) http.HandlerFunc {
|
||||
return handlers.GZIPHandlerFunc(h, nil)
|
||||
}
|
||||
|
||||
// Router returns the HTTP dispatcher, managing API and UI requests, and
|
||||
// accepting reports from probes.. It will always use the embedded HTML
|
||||
// resources for the UI.
|
||||
func Router(c collector) *mux.Router {
|
||||
router := mux.NewRouter()
|
||||
router.HandleFunc("/api/report", makeReportPostHandler(c)).Methods("POST")
|
||||
|
||||
func registerTopologyRoutes(c collector, router *mux.Router) {
|
||||
get := router.Methods("GET").Subrouter()
|
||||
get.HandleFunc("/api", gzipHandler(apiHandler))
|
||||
get.HandleFunc("/api/topology", gzipHandler(topologyRegistry.makeTopologyList(c)))
|
||||
@@ -74,9 +69,9 @@ func Router(c collector) *mux.Router {
|
||||
get.MatcherFunc(URLMatcher("/api/origin/host/{id}")).HandlerFunc(
|
||||
gzipHandler(makeOriginHostHandler(c)))
|
||||
get.HandleFunc("/api/report", gzipHandler(makeRawReportHandler(c)))
|
||||
get.PathPrefix("/").Handler(http.FileServer(FS(false))) // everything else is static
|
||||
|
||||
return router
|
||||
post := router.Methods("POST").Subrouter()
|
||||
post.HandleFunc("/api/report", makeReportPostHandler(c)).Methods("POST")
|
||||
}
|
||||
|
||||
func makeReportPostHandler(a Adder) http.HandlerFunc {
|
||||
@@ -106,12 +101,6 @@ func makeReportPostHandler(a Adder) http.HandlerFunc {
|
||||
}
|
||||
}
|
||||
|
||||
// APIDetails are some generic details that can be fetched from /api
|
||||
type APIDetails struct {
|
||||
ID string `json:"id"`
|
||||
Version string `json:"version"`
|
||||
}
|
||||
|
||||
func apiHandler(w http.ResponseWriter, r *http.Request) {
|
||||
respondWith(w, http.StatusOK, APIDetails{ID: uniqueID, Version: version})
|
||||
respondWith(w, http.StatusOK, xfer.Details{ID: uniqueID, Version: version})
|
||||
}
|
||||
|
||||
@@ -4,11 +4,15 @@ package main
|
||||
import (
|
||||
"net/http/httptest"
|
||||
"testing"
|
||||
|
||||
"github.com/gorilla/mux"
|
||||
)
|
||||
|
||||
// Test site
|
||||
func TestSite(t *testing.T) {
|
||||
ts := httptest.NewServer(Router(StaticReport{}))
|
||||
router := mux.NewRouter()
|
||||
registerStatic(router)
|
||||
ts := httptest.NewServer(router)
|
||||
defer ts.Close()
|
||||
|
||||
is200(t, ts, "/")
|
||||
|
||||
44
probe/controls/controls.go
Normal file
44
probe/controls/controls.go
Normal file
@@ -0,0 +1,44 @@
|
||||
package controls
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"sync"
|
||||
|
||||
"github.com/weaveworks/scope/xfer"
|
||||
)
|
||||
|
||||
var (
|
||||
mtx = sync.Mutex{}
|
||||
handlers = map[string]xfer.ControlHandlerFunc{}
|
||||
)
|
||||
|
||||
// HandleControlRequest performs a control request.
|
||||
func HandleControlRequest(req xfer.Request) xfer.Response {
|
||||
mtx.Lock()
|
||||
handler, ok := handlers[req.Control]
|
||||
mtx.Unlock()
|
||||
if !ok {
|
||||
return xfer.Response{
|
||||
ID: req.ID,
|
||||
Error: fmt.Sprintf("Control '%s' not recognised", req.Control),
|
||||
}
|
||||
}
|
||||
|
||||
response := handler(req)
|
||||
response.ID = req.ID
|
||||
return response
|
||||
}
|
||||
|
||||
// Register a new control handler under a given id.
|
||||
func Register(control string, f xfer.ControlHandlerFunc) {
|
||||
mtx.Lock()
|
||||
defer mtx.Unlock()
|
||||
handlers[control] = f
|
||||
}
|
||||
|
||||
// Rm deletes the handler for a given name
|
||||
func Rm(control string) {
|
||||
mtx.Lock()
|
||||
defer mtx.Unlock()
|
||||
delete(handlers, control)
|
||||
}
|
||||
45
probe/controls/controls_test.go
Normal file
45
probe/controls/controls_test.go
Normal file
@@ -0,0 +1,45 @@
|
||||
package controls_test
|
||||
|
||||
import (
|
||||
"reflect"
|
||||
"testing"
|
||||
|
||||
"github.com/weaveworks/scope/probe/controls"
|
||||
"github.com/weaveworks/scope/test"
|
||||
"github.com/weaveworks/scope/xfer"
|
||||
)
|
||||
|
||||
func TestControls(t *testing.T) {
|
||||
controls.Register("foo", func(req xfer.Request) xfer.Response {
|
||||
return xfer.Response{
|
||||
Value: "bar",
|
||||
}
|
||||
})
|
||||
defer controls.Rm("foo")
|
||||
|
||||
want := xfer.Response{
|
||||
ID: 1234,
|
||||
Value: "bar",
|
||||
}
|
||||
have := controls.HandleControlRequest(xfer.Request{
|
||||
ID: 1234,
|
||||
Control: "foo",
|
||||
})
|
||||
if !reflect.DeepEqual(want, have) {
|
||||
t.Fatal(test.Diff(want, have))
|
||||
}
|
||||
}
|
||||
|
||||
func TestControlsNotFound(t *testing.T) {
|
||||
want := xfer.Response{
|
||||
ID: 3456,
|
||||
Error: "Control 'baz' not recognised",
|
||||
}
|
||||
have := controls.HandleControlRequest(xfer.Request{
|
||||
ID: 3456,
|
||||
Control: "baz",
|
||||
})
|
||||
if !reflect.DeepEqual(want, have) {
|
||||
t.Fatal(test.Diff(want, have))
|
||||
}
|
||||
}
|
||||
@@ -7,17 +7,26 @@ import (
|
||||
// Tagger tags each node in each topology of a report with the origin host
|
||||
// node ID of this (probe) host. Effectively, a foreign key linking every node
|
||||
// in every topology to an origin host node in the host topology.
|
||||
type Tagger struct{ hostNodeID string }
|
||||
type Tagger struct {
|
||||
hostNodeID string
|
||||
probeID string
|
||||
}
|
||||
|
||||
// NewTagger tags each node with a foreign key linking it to its origin host
|
||||
// in the host topology.
|
||||
func NewTagger(hostID string) Tagger {
|
||||
return Tagger{hostNodeID: report.MakeHostNodeID(hostID)}
|
||||
func NewTagger(hostID, probeID string) Tagger {
|
||||
return Tagger{
|
||||
hostNodeID: report.MakeHostNodeID(hostID),
|
||||
probeID: probeID,
|
||||
}
|
||||
}
|
||||
|
||||
// Tag implements Tagger.
|
||||
func (t Tagger) Tag(r report.Report) (report.Report, error) {
|
||||
other := report.MakeNodeWith(map[string]string{report.HostNodeID: t.hostNodeID})
|
||||
other := report.MakeNodeWith(map[string]string{
|
||||
report.HostNodeID: t.hostNodeID,
|
||||
report.ProbeID: t.probeID,
|
||||
})
|
||||
|
||||
// Explicity don't tag Endpoints and Addresses - These topologies include pseudo nodes,
|
||||
// and as such do their own host tagging
|
||||
|
||||
@@ -12,6 +12,7 @@ import (
|
||||
func TestTagger(t *testing.T) {
|
||||
var (
|
||||
hostID = "foo"
|
||||
probeID = "a1b2c3d4"
|
||||
endpointNodeID = report.MakeEndpointNodeID(hostID, "1.2.3.4", "56789") // hostID ignored
|
||||
nodeMetadata = report.MakeNodeWith(map[string]string{"foo": "bar"})
|
||||
)
|
||||
@@ -20,8 +21,9 @@ func TestTagger(t *testing.T) {
|
||||
r.Process.AddNode(endpointNodeID, nodeMetadata)
|
||||
want := nodeMetadata.Merge(report.MakeNodeWith(map[string]string{
|
||||
report.HostNodeID: report.MakeHostNodeID(hostID),
|
||||
report.ProbeID: probeID,
|
||||
}))
|
||||
rpt, _ := host.NewTagger(hostID).Tag(r)
|
||||
rpt, _ := host.NewTagger(hostID, probeID).Tag(r)
|
||||
have := rpt.Process.Nodes[endpointNodeID].Copy()
|
||||
if !reflect.DeepEqual(want, have) {
|
||||
t.Error(test.Diff(want, have))
|
||||
|
||||
@@ -111,36 +111,27 @@ func TestReporter(t *testing.T) {
|
||||
want := report.MakeReport()
|
||||
pod1ID := report.MakePodNodeID("ping", "pong-a")
|
||||
pod2ID := report.MakePodNodeID("ping", "pong-b")
|
||||
want.Pod = report.Topology{
|
||||
Nodes: report.Nodes{
|
||||
pod1ID: report.MakeNodeWith(map[string]string{
|
||||
kubernetes.PodID: "ping/pong-a",
|
||||
kubernetes.PodName: "pong-a",
|
||||
kubernetes.Namespace: "ping",
|
||||
kubernetes.PodCreated: pod1.Created(),
|
||||
kubernetes.PodContainerIDs: "container1 container2",
|
||||
kubernetes.ServiceIDs: "ping/pongservice",
|
||||
}),
|
||||
pod2ID: report.MakeNodeWith(map[string]string{
|
||||
kubernetes.PodID: "ping/pong-b",
|
||||
kubernetes.PodName: "pong-b",
|
||||
kubernetes.Namespace: "ping",
|
||||
kubernetes.PodCreated: pod1.Created(),
|
||||
kubernetes.PodContainerIDs: "container3 container4",
|
||||
kubernetes.ServiceIDs: "ping/pongservice",
|
||||
}),
|
||||
},
|
||||
}
|
||||
want.Service = report.Topology{
|
||||
Nodes: report.Nodes{
|
||||
report.MakeServiceNodeID("ping", "pongservice"): report.MakeNodeWith(map[string]string{
|
||||
kubernetes.ServiceID: "ping/pongservice",
|
||||
kubernetes.ServiceName: "pongservice",
|
||||
kubernetes.Namespace: "ping",
|
||||
kubernetes.ServiceCreated: pod1.Created(),
|
||||
}),
|
||||
},
|
||||
}
|
||||
want.Pod = report.MakeTopology().AddNode(pod1ID, report.MakeNodeWith(map[string]string{
|
||||
kubernetes.PodID: "ping/pong-a",
|
||||
kubernetes.PodName: "pong-a",
|
||||
kubernetes.Namespace: "ping",
|
||||
kubernetes.PodCreated: pod1.Created(),
|
||||
kubernetes.PodContainerIDs: "container1 container2",
|
||||
kubernetes.ServiceIDs: "ping/pongservice",
|
||||
})).AddNode(pod2ID, report.MakeNodeWith(map[string]string{
|
||||
kubernetes.PodID: "ping/pong-b",
|
||||
kubernetes.PodName: "pong-b",
|
||||
kubernetes.Namespace: "ping",
|
||||
kubernetes.PodCreated: pod1.Created(),
|
||||
kubernetes.PodContainerIDs: "container3 container4",
|
||||
kubernetes.ServiceIDs: "ping/pongservice",
|
||||
}))
|
||||
want.Service = report.MakeTopology().AddNode(report.MakeServiceNodeID("ping", "pongservice"), report.MakeNodeWith(map[string]string{
|
||||
kubernetes.ServiceID: "ping/pongservice",
|
||||
kubernetes.ServiceName: "pongservice",
|
||||
kubernetes.Namespace: "ping",
|
||||
kubernetes.ServiceCreated: pod1.Created(),
|
||||
}))
|
||||
|
||||
reporter := kubernetes.NewReporter(mockClientInstance)
|
||||
have, _ := reporter.Report()
|
||||
|
||||
@@ -4,16 +4,19 @@ import (
|
||||
"flag"
|
||||
"fmt"
|
||||
"log"
|
||||
"math/rand"
|
||||
"net"
|
||||
"net/http"
|
||||
_ "net/http/pprof"
|
||||
"os"
|
||||
"os/signal"
|
||||
"strconv"
|
||||
"strings"
|
||||
"sync"
|
||||
"syscall"
|
||||
"time"
|
||||
|
||||
"github.com/weaveworks/scope/probe/controls"
|
||||
"github.com/weaveworks/scope/probe/docker"
|
||||
"github.com/weaveworks/scope/probe/endpoint"
|
||||
"github.com/weaveworks/scope/probe/host"
|
||||
@@ -66,10 +69,11 @@ func main() {
|
||||
log.Printf("warning: -process=true, but that requires root to find everything")
|
||||
}
|
||||
|
||||
rand.Seed(time.Now().UnixNano())
|
||||
probeID := strconv.FormatInt(rand.Int63(), 16)
|
||||
var (
|
||||
hostName = hostname()
|
||||
hostID = hostName // TODO(pb): we should sanitize the hostname
|
||||
probeID = hostName // TODO(pb): does this need to be a random string instead?
|
||||
)
|
||||
log.Printf("probe starting, version %s, ID %s", version, probeID)
|
||||
|
||||
@@ -101,7 +105,14 @@ func main() {
|
||||
publishers := xfer.NewMultiPublisher(factory)
|
||||
defer publishers.Stop()
|
||||
|
||||
resolver := newStaticResolver(targets, publishers.Set)
|
||||
clients := xfer.NewMultiAppClient(xfer.ProbeConfig{
|
||||
Token: *token,
|
||||
ProbeID: probeID,
|
||||
Insecure: *insecure,
|
||||
}, xfer.ControlHandlerFunc(controls.HandleControlRequest), xfer.NewAppClient)
|
||||
defer clients.Stop()
|
||||
|
||||
resolver := newStaticResolver(targets, publishers.Set, clients.Set)
|
||||
defer resolver.Stop()
|
||||
|
||||
endpointReporter := endpoint.NewReporter(hostID, hostName, *spyProcs, *useConntrack)
|
||||
@@ -112,7 +123,7 @@ func main() {
|
||||
var (
|
||||
tickers = []Ticker{processCache}
|
||||
reporters = []Reporter{endpointReporter, host.NewReporter(hostID, hostName, localNets), process.NewReporter(processCache, hostID)}
|
||||
taggers = []Tagger{newTopologyTagger(), host.NewTagger(hostID)}
|
||||
taggers = []Tagger{newTopologyTagger(), host.NewTagger(hostID, probeID)}
|
||||
)
|
||||
|
||||
dockerTagger, dockerReporter, dockerRegistry := func() (*docker.Tagger, *docker.Reporter, docker.Registry) {
|
||||
|
||||
@@ -33,14 +33,13 @@ func TestWeaveTaggerOverlayTopology(t *testing.T) {
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
if want, have := (report.Topology{
|
||||
Nodes: report.Nodes{
|
||||
report.MakeOverlayNodeID(mockWeavePeerName): report.MakeNodeWith(map[string]string{
|
||||
overlay.WeavePeerName: mockWeavePeerName,
|
||||
overlay.WeavePeerNickName: mockWeavePeerNickName,
|
||||
}),
|
||||
},
|
||||
}), have.Overlay; !reflect.DeepEqual(want, have) {
|
||||
if want, have := report.MakeTopology().AddNode(
|
||||
report.MakeOverlayNodeID(mockWeavePeerName),
|
||||
report.MakeNodeWith(map[string]string{
|
||||
overlay.WeavePeerName: mockWeavePeerName,
|
||||
overlay.WeavePeerNickName: mockWeavePeerNickName,
|
||||
}),
|
||||
), have.Overlay; !reflect.DeepEqual(want, have) {
|
||||
t.Error(test.Diff(want, have))
|
||||
}
|
||||
}
|
||||
@@ -48,27 +47,19 @@ func TestWeaveTaggerOverlayTopology(t *testing.T) {
|
||||
{
|
||||
nodeID := report.MakeContainerNodeID(mockHostID, mockContainerID)
|
||||
want := report.Report{
|
||||
Container: report.Topology{
|
||||
Nodes: report.Nodes{
|
||||
nodeID: report.MakeNodeWith(map[string]string{
|
||||
docker.ContainerID: mockContainerID,
|
||||
overlay.WeaveDNSHostname: mockHostname,
|
||||
overlay.WeaveMACAddress: mockContainerMAC,
|
||||
}).WithSets(report.Sets{
|
||||
docker.ContainerIPs: report.MakeStringSet(mockContainerIP),
|
||||
docker.ContainerIPsWithScopes: report.MakeStringSet(mockContainerIPWithScope),
|
||||
}),
|
||||
},
|
||||
},
|
||||
Container: report.MakeTopology().AddNode(nodeID, report.MakeNodeWith(map[string]string{
|
||||
docker.ContainerID: mockContainerID,
|
||||
overlay.WeaveDNSHostname: mockHostname,
|
||||
overlay.WeaveMACAddress: mockContainerMAC,
|
||||
}).WithSets(report.Sets{
|
||||
docker.ContainerIPs: report.MakeStringSet(mockContainerIP),
|
||||
docker.ContainerIPsWithScopes: report.MakeStringSet(mockContainerIPWithScope),
|
||||
})),
|
||||
}
|
||||
have, err := w.Tag(report.Report{
|
||||
Container: report.Topology{
|
||||
Nodes: report.Nodes{
|
||||
nodeID: report.MakeNodeWith(map[string]string{
|
||||
docker.ContainerID: mockContainerID,
|
||||
}),
|
||||
},
|
||||
},
|
||||
Container: report.MakeTopology().AddNode(nodeID, report.MakeNodeWith(map[string]string{
|
||||
docker.ContainerID: mockContainerID,
|
||||
})),
|
||||
})
|
||||
if err != nil {
|
||||
t.Fatal(err)
|
||||
|
||||
@@ -33,40 +33,42 @@ func TestReporter(t *testing.T) {
|
||||
|
||||
reporter := process.NewReporter(walker, "")
|
||||
want := report.MakeReport()
|
||||
want.Process = report.Topology{
|
||||
Nodes: report.Nodes{
|
||||
report.MakeProcessNodeID("", "1"): report.MakeNodeWith(map[string]string{
|
||||
process.PID: "1",
|
||||
process.Comm: "init",
|
||||
process.Threads: "0",
|
||||
}),
|
||||
report.MakeProcessNodeID("", "2"): report.MakeNodeWith(map[string]string{
|
||||
process.PID: "2",
|
||||
process.Comm: "bash",
|
||||
process.PPID: "1",
|
||||
process.Threads: "0",
|
||||
}),
|
||||
report.MakeProcessNodeID("", "3"): report.MakeNodeWith(map[string]string{
|
||||
process.PID: "3",
|
||||
process.Comm: "apache",
|
||||
process.PPID: "1",
|
||||
process.Threads: "2",
|
||||
}),
|
||||
report.MakeProcessNodeID("", "4"): report.MakeNodeWith(map[string]string{
|
||||
process.PID: "4",
|
||||
process.Comm: "ping",
|
||||
process.PPID: "2",
|
||||
process.Cmdline: "ping foo.bar.local",
|
||||
process.Threads: "0",
|
||||
}),
|
||||
report.MakeProcessNodeID("", "5"): report.MakeNodeWith(map[string]string{
|
||||
process.PID: "5",
|
||||
process.PPID: "1",
|
||||
process.Cmdline: "tail -f /var/log/syslog",
|
||||
process.Threads: "0",
|
||||
}),
|
||||
},
|
||||
}
|
||||
want.Process = report.MakeTopology().AddNode(
|
||||
report.MakeProcessNodeID("", "1"), report.MakeNodeWith(map[string]string{
|
||||
process.PID: "1",
|
||||
process.Comm: "init",
|
||||
process.Threads: "0",
|
||||
}),
|
||||
).AddNode(
|
||||
report.MakeProcessNodeID("", "2"), report.MakeNodeWith(map[string]string{
|
||||
process.PID: "2",
|
||||
process.Comm: "bash",
|
||||
process.PPID: "1",
|
||||
process.Threads: "0",
|
||||
}),
|
||||
).AddNode(
|
||||
report.MakeProcessNodeID("", "3"), report.MakeNodeWith(map[string]string{
|
||||
process.PID: "3",
|
||||
process.Comm: "apache",
|
||||
process.PPID: "1",
|
||||
process.Threads: "2",
|
||||
}),
|
||||
).AddNode(
|
||||
report.MakeProcessNodeID("", "4"), report.MakeNodeWith(map[string]string{
|
||||
process.PID: "4",
|
||||
process.Comm: "ping",
|
||||
process.PPID: "2",
|
||||
process.Cmdline: "ping foo.bar.local",
|
||||
process.Threads: "0",
|
||||
}),
|
||||
).AddNode(
|
||||
report.MakeProcessNodeID("", "5"), report.MakeNodeWith(map[string]string{
|
||||
process.PID: "5",
|
||||
process.PPID: "1",
|
||||
process.Cmdline: "tail -f /var/log/syslog",
|
||||
process.Threads: "0",
|
||||
}),
|
||||
)
|
||||
|
||||
have, err := reporter.Report()
|
||||
if err != nil || !reflect.DeepEqual(want, have) {
|
||||
|
||||
@@ -19,8 +19,10 @@ var (
|
||||
lookupIP = net.LookupIP
|
||||
)
|
||||
|
||||
type setter func(string, []string)
|
||||
|
||||
type staticResolver struct {
|
||||
set func(string, []string)
|
||||
setters []setter
|
||||
targets []target
|
||||
quit chan struct{}
|
||||
}
|
||||
@@ -32,10 +34,10 @@ func (t target) String() string { return net.JoinHostPort(t.host, t.port) }
|
||||
// newStaticResolver periodically resolves the targets, and calls the set
|
||||
// function with all the resolved IPs. It explictiy supports targets which
|
||||
// resolve to multiple IPs.
|
||||
func newStaticResolver(targets []string, set func(target string, endpoints []string)) staticResolver {
|
||||
func newStaticResolver(targets []string, setters ...setter) staticResolver {
|
||||
r := staticResolver{
|
||||
targets: prepare(targets),
|
||||
set: set,
|
||||
setters: setters,
|
||||
quit: make(chan struct{}),
|
||||
}
|
||||
go r.loop()
|
||||
@@ -80,7 +82,9 @@ func prepare(strs []string) []target {
|
||||
|
||||
func (r staticResolver) resolve() {
|
||||
for t, endpoints := range resolveMany(r.targets) {
|
||||
r.set(t.String(), endpoints)
|
||||
for _, setter := range r.setters {
|
||||
setter(t.String(), endpoints)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -5,6 +5,7 @@ import (
|
||||
"testing"
|
||||
|
||||
"github.com/weaveworks/scope/report"
|
||||
"github.com/weaveworks/scope/test"
|
||||
)
|
||||
|
||||
func TestApply(t *testing.T) {
|
||||
@@ -41,6 +42,7 @@ func TestTagMissingID(t *testing.T) {
|
||||
rpt, _ := newTopologyTagger().Tag(r)
|
||||
have := rpt.Endpoint.Nodes[nodeID].Copy()
|
||||
if !reflect.DeepEqual(want, have) {
|
||||
t.Error(test.Diff(want, have))
|
||||
t.Error("TopologyTagger erroneously tagged a missing node ID")
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,11 +24,12 @@ const (
|
||||
// DetailedNode is the data type that's yielded to the JavaScript layer when
|
||||
// we want deep information about an individual node.
|
||||
type DetailedNode struct {
|
||||
ID string `json:"id"`
|
||||
LabelMajor string `json:"label_major"`
|
||||
LabelMinor string `json:"label_minor,omitempty"`
|
||||
Pseudo bool `json:"pseudo,omitempty"`
|
||||
Tables []Table `json:"tables"`
|
||||
ID string `json:"id"`
|
||||
LabelMajor string `json:"label_major"`
|
||||
LabelMinor string `json:"label_minor,omitempty"`
|
||||
Pseudo bool `json:"pseudo,omitempty"`
|
||||
Tables []Table `json:"tables"`
|
||||
Controls []ControlInstance `json:"controls"`
|
||||
}
|
||||
|
||||
// Table is a dataset associated with a node. It will be displayed in the
|
||||
@@ -48,6 +49,14 @@ type Row struct {
|
||||
Expandable bool `json:"expandable,omitempty"` // Whether it can be expanded (hidden by default)
|
||||
}
|
||||
|
||||
// ControlInstance contains a control description, and all the info
|
||||
// needed to execute it.
|
||||
type ControlInstance struct {
|
||||
ProbeID string `json:"probeId"`
|
||||
NodeID string `json:"nodeId"`
|
||||
report.Control
|
||||
}
|
||||
|
||||
type sortableRows []Row
|
||||
|
||||
func (r sortableRows) Len() int { return len(r) }
|
||||
@@ -107,6 +116,7 @@ func MakeDetailedNode(r report.Report, n RenderableNode) DetailedNode {
|
||||
LabelMinor: n.LabelMinor,
|
||||
Pseudo: n.Pseudo,
|
||||
Tables: tables,
|
||||
Controls: controls(r, n),
|
||||
}
|
||||
}
|
||||
|
||||
@@ -190,22 +200,55 @@ func connectionsTable(connections []Row, r report.Report, n RenderableNode) (Tab
|
||||
return Table{}, false
|
||||
}
|
||||
|
||||
func controlsFor(topology report.Topology, nodeID string) []ControlInstance {
|
||||
result := []ControlInstance{}
|
||||
node, ok := topology.Nodes[nodeID]
|
||||
if !ok {
|
||||
return result
|
||||
}
|
||||
|
||||
for _, id := range node.Controls {
|
||||
if control, ok := topology.Controls[id]; ok {
|
||||
result = append(result, ControlInstance{
|
||||
ProbeID: node.Metadata[report.ProbeID],
|
||||
NodeID: nodeID,
|
||||
Control: control,
|
||||
})
|
||||
}
|
||||
}
|
||||
return result
|
||||
}
|
||||
|
||||
func controls(r report.Report, n RenderableNode) []ControlInstance {
|
||||
if _, ok := r.Process.Nodes[n.ControlNode]; ok {
|
||||
return controlsFor(r.Process, n.ControlNode)
|
||||
} else if _, ok := r.Container.Nodes[n.ControlNode]; ok {
|
||||
return controlsFor(r.Container, n.ControlNode)
|
||||
} else if _, ok := r.ContainerImage.Nodes[n.ControlNode]; ok {
|
||||
return controlsFor(r.ContainerImage, n.ControlNode)
|
||||
} else if _, ok := r.Host.Nodes[n.ControlNode]; ok {
|
||||
return controlsFor(r.Host, n.ControlNode)
|
||||
}
|
||||
return []ControlInstance{}
|
||||
}
|
||||
|
||||
// OriginTable produces a table (to be consumed directly by the UI) based on
|
||||
// an origin ID, which is (optimistically) a node ID in one of our topologies.
|
||||
func OriginTable(r report.Report, originID string, addHostTags bool, addContainerTags bool) (Table, bool) {
|
||||
result, show := Table{}, false
|
||||
if nmd, ok := r.Process.Nodes[originID]; ok {
|
||||
return processOriginTable(nmd, addHostTags, addContainerTags)
|
||||
result, show = processOriginTable(nmd, addHostTags, addContainerTags)
|
||||
}
|
||||
if nmd, ok := r.Container.Nodes[originID]; ok {
|
||||
return containerOriginTable(nmd, addHostTags)
|
||||
result, show = containerOriginTable(nmd, addHostTags)
|
||||
}
|
||||
if nmd, ok := r.ContainerImage.Nodes[originID]; ok {
|
||||
return containerImageOriginTable(nmd)
|
||||
result, show = containerImageOriginTable(nmd)
|
||||
}
|
||||
if nmd, ok := r.Host.Nodes[originID]; ok {
|
||||
return hostOriginTable(nmd)
|
||||
result, show = hostOriginTable(nmd)
|
||||
}
|
||||
return Table{}, false
|
||||
return result, show
|
||||
}
|
||||
|
||||
func connectionDetailsRows(topology report.Topology, originID string) []Row {
|
||||
|
||||
@@ -14,12 +14,13 @@ func TestOriginTable(t *testing.T) {
|
||||
if _, ok := render.OriginTable(fixture.Report, "not-found", false, false); ok {
|
||||
t.Errorf("unknown origin ID gave unexpected success")
|
||||
}
|
||||
for originID, want := range map[string]render.Table{fixture.ServerProcessNodeID: {
|
||||
Title: fmt.Sprintf(`Process "apache" (%s)`, fixture.ServerPID),
|
||||
Numeric: false,
|
||||
Rank: 2,
|
||||
Rows: []render.Row{},
|
||||
},
|
||||
for originID, want := range map[string]render.Table{
|
||||
fixture.ServerProcessNodeID: {
|
||||
Title: fmt.Sprintf(`Process "apache" (%s)`, fixture.ServerPID),
|
||||
Numeric: false,
|
||||
Rank: 2,
|
||||
Rows: []render.Row{},
|
||||
},
|
||||
fixture.ServerHostNodeID: {
|
||||
Title: fmt.Sprintf("Host %q", fixture.ServerHostName),
|
||||
Numeric: false,
|
||||
@@ -75,7 +76,6 @@ func TestOriginTable(t *testing.T) {
|
||||
t.Errorf("%q: %s", originID, test.Diff(want, have))
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
func TestMakeDetailedHostNode(t *testing.T) {
|
||||
@@ -86,6 +86,7 @@ func TestMakeDetailedHostNode(t *testing.T) {
|
||||
LabelMajor: "client",
|
||||
LabelMinor: "hostname.com",
|
||||
Pseudo: false,
|
||||
Controls: []render.ControlInstance{},
|
||||
Tables: []render.Table{
|
||||
{
|
||||
Title: fmt.Sprintf("Host %q", fixture.ClientHostName),
|
||||
@@ -143,6 +144,7 @@ func TestMakeDetailedContainerNode(t *testing.T) {
|
||||
LabelMajor: "server",
|
||||
LabelMinor: fixture.ServerHostName,
|
||||
Pseudo: false,
|
||||
Controls: []render.ControlInstance{},
|
||||
Tables: []render.Table{
|
||||
{
|
||||
Title: `Container Image "image/server"`,
|
||||
|
||||
@@ -213,6 +213,7 @@ var (
|
||||
EgressPacketCount: newu64(30),
|
||||
EgressByteCount: newu64(300),
|
||||
},
|
||||
ControlNode: fixture.ClientContainerNodeID,
|
||||
},
|
||||
fixture.ServerContainerID: {
|
||||
ID: fixture.ServerContainerID,
|
||||
@@ -232,6 +233,7 @@ var (
|
||||
IngressPacketCount: newu64(210),
|
||||
IngressByteCount: newu64(2100),
|
||||
},
|
||||
ControlNode: fixture.ServerContainerNodeID,
|
||||
},
|
||||
uncontainedServerID: {
|
||||
ID: uncontainedServerID,
|
||||
|
||||
@@ -134,6 +134,7 @@ func MapContainerIdentity(m RenderableNode, _ report.Networks) RenderableNodes {
|
||||
)
|
||||
|
||||
node := NewRenderableNodeWith(id, major, minor, rank, m)
|
||||
node.ControlNode = m.ID
|
||||
if imageID, ok := m.Metadata[docker.ImageID]; ok {
|
||||
hostID, _, _ := report.ParseContainerNodeID(m.ID)
|
||||
node.Origins = node.Origins.Add(report.MakeContainerNodeID(hostID, imageID))
|
||||
|
||||
@@ -8,12 +8,13 @@ import (
|
||||
// an element of a topology. It should contain information that's relevant
|
||||
// to rendering a node when there are many nodes visible at once.
|
||||
type RenderableNode struct {
|
||||
ID string `json:"id"` //
|
||||
LabelMajor string `json:"label_major"` // e.g. "process", human-readable
|
||||
LabelMinor string `json:"label_minor,omitempty"` // e.g. "hostname", human-readable, optional
|
||||
Rank string `json:"rank"` // to help the layout engine
|
||||
Pseudo bool `json:"pseudo,omitempty"` // sort-of a placeholder node, for rendering purposes
|
||||
Origins report.IDList `json:"origins,omitempty"` // Core node IDs that contributed information
|
||||
ID string `json:"id"` //
|
||||
LabelMajor string `json:"label_major"` // e.g. "process", human-readable
|
||||
LabelMinor string `json:"label_minor,omitempty"` // e.g. "hostname", human-readable, optional
|
||||
Rank string `json:"rank"` // to help the layout engine
|
||||
Pseudo bool `json:"pseudo,omitempty"` // sort-of a placeholder node, for rendering purposes
|
||||
Origins report.IDList `json:"origins,omitempty"` // Core node IDs that contributed information
|
||||
ControlNode string `json:"-"` // ID of node from which to show the controls in the UI
|
||||
|
||||
report.EdgeMetadata `json:"metadata"` // Numeric sums
|
||||
report.Node
|
||||
@@ -58,6 +59,7 @@ func NewDerivedNode(id string, node RenderableNode) RenderableNode {
|
||||
Origins: node.Origins.Copy(),
|
||||
EdgeMetadata: node.EdgeMetadata.Copy(),
|
||||
Node: node.Node.Copy(),
|
||||
ControlNode: "", // Do not propagate ControlNode when making a derived node!
|
||||
}
|
||||
}
|
||||
|
||||
@@ -97,6 +99,10 @@ func (rn RenderableNode) Merge(other RenderableNode) RenderableNode {
|
||||
result.Rank = other.Rank
|
||||
}
|
||||
|
||||
if result.ControlNode == "" {
|
||||
result.ControlNode = other.ControlNode
|
||||
}
|
||||
|
||||
if result.Pseudo != other.Pseudo {
|
||||
panic(result.ID)
|
||||
}
|
||||
@@ -119,6 +125,7 @@ func (rn RenderableNode) Copy() RenderableNode {
|
||||
Origins: rn.Origins.Copy(),
|
||||
EdgeMetadata: rn.EdgeMetadata.Copy(),
|
||||
Node: rn.Node.Copy(),
|
||||
ControlNode: rn.ControlNode,
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -78,13 +78,14 @@ var (
|
||||
Origins: report.MakeIDList(randomEndpointNodeID),
|
||||
},
|
||||
containerID: {
|
||||
ID: containerID,
|
||||
LabelMajor: containerName,
|
||||
LabelMinor: serverHostID,
|
||||
Rank: "",
|
||||
Pseudo: false,
|
||||
Origins: report.MakeIDList(containerNodeID, serverEndpointNodeID, serverHostNodeID),
|
||||
Node: report.MakeNode(),
|
||||
ID: containerID,
|
||||
LabelMajor: containerName,
|
||||
LabelMinor: serverHostID,
|
||||
Rank: "",
|
||||
Pseudo: false,
|
||||
Origins: report.MakeIDList(containerNodeID, serverEndpointNodeID, serverHostNodeID),
|
||||
Node: report.MakeNode(),
|
||||
ControlNode: containerNodeID,
|
||||
},
|
||||
}).Prune()
|
||||
)
|
||||
|
||||
34
report/controls.go
Normal file
34
report/controls.go
Normal file
@@ -0,0 +1,34 @@
|
||||
package report
|
||||
|
||||
// Controls describe the control tags within the Nodes
|
||||
type Controls map[string]Control
|
||||
|
||||
// A Control basically describes an RPC
|
||||
type Control struct {
|
||||
ID string `json:"id"`
|
||||
Human string `json:"human"`
|
||||
Icon string `json:"icon"` // from https://fortawesome.github.io/Font-Awesome/cheatsheet/ please
|
||||
}
|
||||
|
||||
// Merge merges other with cs, returning a fresh Controls.
|
||||
func (cs Controls) Merge(other Controls) Controls {
|
||||
result := cs.Copy()
|
||||
for k, v := range other {
|
||||
result[k] = v
|
||||
}
|
||||
return result
|
||||
}
|
||||
|
||||
// Copy produces a copy of cs.
|
||||
func (cs Controls) Copy() Controls {
|
||||
result := Controls{}
|
||||
for k, v := range cs {
|
||||
result[k] = v
|
||||
}
|
||||
return result
|
||||
}
|
||||
|
||||
// AddControl returns a fresh Controls, c added to cs.
|
||||
func (cs Controls) AddControl(c Control) {
|
||||
cs[c.ID] = c
|
||||
}
|
||||
@@ -181,4 +181,6 @@ const (
|
||||
// a node in the host topology. That host node is the origin host, where
|
||||
// the node was originally detected.
|
||||
HostNodeID = "host_node_id"
|
||||
// ProbeID is the random ID of the probe which generated the specific node.
|
||||
ProbeID = "probe_id"
|
||||
)
|
||||
|
||||
@@ -12,12 +12,14 @@ import (
|
||||
// in the Node struct.
|
||||
type Topology struct {
|
||||
Nodes // TODO(pb): remove Nodes intermediate type
|
||||
Controls
|
||||
}
|
||||
|
||||
// MakeTopology gives you a Topology.
|
||||
func MakeTopology() Topology {
|
||||
return Topology{
|
||||
Nodes: map[string]Node{},
|
||||
Nodes: map[string]Node{},
|
||||
Controls: Controls{},
|
||||
}
|
||||
}
|
||||
|
||||
@@ -37,7 +39,8 @@ func (t Topology) AddNode(nodeID string, nmd Node) Topology {
|
||||
// Copy returns a value copy of the Topology.
|
||||
func (t Topology) Copy() Topology {
|
||||
return Topology{
|
||||
Nodes: t.Nodes.Copy(),
|
||||
Nodes: t.Nodes.Copy(),
|
||||
Controls: t.Controls.Copy(),
|
||||
}
|
||||
}
|
||||
|
||||
@@ -45,7 +48,8 @@ func (t Topology) Copy() Topology {
|
||||
// The original is not modified.
|
||||
func (t Topology) Merge(other Topology) Topology {
|
||||
return Topology{
|
||||
Nodes: t.Nodes.Merge(other.Nodes),
|
||||
Nodes: t.Nodes.Merge(other.Nodes),
|
||||
Controls: t.Controls.Merge(other.Controls),
|
||||
}
|
||||
}
|
||||
|
||||
@@ -84,6 +88,7 @@ type Node struct {
|
||||
Sets Sets `json:"sets,omitempty"`
|
||||
Adjacency IDList `json:"adjacency"`
|
||||
Edges EdgeMetadatas `json:"edges,omitempty"`
|
||||
Controls IDList `json:"controls,omitempty"`
|
||||
}
|
||||
|
||||
// MakeNode creates a new Node with no initial metadata.
|
||||
@@ -94,6 +99,7 @@ func MakeNode() Node {
|
||||
Sets: Sets{},
|
||||
Adjacency: MakeIDList(),
|
||||
Edges: EdgeMetadatas{},
|
||||
Controls: MakeIDList(),
|
||||
}
|
||||
}
|
||||
|
||||
@@ -147,6 +153,13 @@ func (n Node) WithEdge(dst string, md EdgeMetadata) Node {
|
||||
return result
|
||||
}
|
||||
|
||||
// WithControls returns a fresh copy of n, with cs added to Controls.
|
||||
func (n Node) WithControls(cs ...string) Node {
|
||||
result := n.Copy()
|
||||
result.Controls = result.Controls.Add(cs...)
|
||||
return result
|
||||
}
|
||||
|
||||
// Copy returns a value copy of the Node.
|
||||
func (n Node) Copy() Node {
|
||||
cp := MakeNode()
|
||||
@@ -155,6 +168,7 @@ func (n Node) Copy() Node {
|
||||
cp.Sets = n.Sets.Copy()
|
||||
cp.Adjacency = n.Adjacency.Copy()
|
||||
cp.Edges = n.Edges.Copy()
|
||||
cp.Controls = n.Controls.Copy()
|
||||
return cp
|
||||
}
|
||||
|
||||
@@ -167,6 +181,7 @@ func (n Node) Merge(other Node) Node {
|
||||
cp.Sets = cp.Sets.Merge(other.Sets)
|
||||
cp.Adjacency = cp.Adjacency.Merge(other.Adjacency)
|
||||
cp.Edges = cp.Edges.Merge(other.Edges)
|
||||
cp.Controls = cp.Controls.Merge(other.Controls)
|
||||
return cp
|
||||
}
|
||||
|
||||
|
||||
151
xfer/app_client.go
Normal file
151
xfer/app_client.go
Normal file
@@ -0,0 +1,151 @@
|
||||
package xfer
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"log"
|
||||
"net/http"
|
||||
"net/rpc"
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"github.com/gorilla/websocket"
|
||||
|
||||
"github.com/weaveworks/scope/common/sanitize"
|
||||
)
|
||||
|
||||
// Details are some generic details that can be fetched from /api
|
||||
type Details struct {
|
||||
ID string `json:"id"`
|
||||
Version string `json:"version"`
|
||||
}
|
||||
|
||||
// AppClient is a client to an app for dealing with controls.
|
||||
type AppClient interface {
|
||||
Details() (Details, error)
|
||||
ControlConnection(handler ControlHandler)
|
||||
Stop()
|
||||
}
|
||||
|
||||
type appClient struct {
|
||||
ProbeConfig
|
||||
|
||||
quit chan struct{}
|
||||
target string
|
||||
insecure bool
|
||||
client http.Client
|
||||
|
||||
controlServerCodecMtx sync.Mutex
|
||||
controlServerCodec rpc.ServerCodec
|
||||
}
|
||||
|
||||
// NewAppClient makes a new AppClient.
|
||||
func NewAppClient(pc ProbeConfig, hostname, target string) (AppClient, error) {
|
||||
httpTransport, err := pc.getHTTPTransport(hostname)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return &appClient{
|
||||
ProbeConfig: pc,
|
||||
quit: make(chan struct{}),
|
||||
target: target,
|
||||
client: http.Client{
|
||||
Transport: httpTransport,
|
||||
},
|
||||
}, nil
|
||||
}
|
||||
|
||||
// Stop stops the appClient.
|
||||
func (c *appClient) Stop() {
|
||||
c.controlServerCodecMtx.Lock()
|
||||
defer c.controlServerCodecMtx.Unlock()
|
||||
close(c.quit)
|
||||
if c.controlServerCodec != nil {
|
||||
c.controlServerCodec.Close()
|
||||
}
|
||||
c.client.Transport.(*http.Transport).CloseIdleConnections()
|
||||
}
|
||||
|
||||
// Details fetches the details (version, id) of the app.
|
||||
func (c *appClient) Details() (Details, error) {
|
||||
result := Details{}
|
||||
req, err := c.ProbeConfig.authorizedRequest("GET", sanitize.URL("", 0, "/api")(c.target), nil)
|
||||
if err != nil {
|
||||
return result, err
|
||||
}
|
||||
resp, err := c.client.Do(req)
|
||||
if err != nil {
|
||||
return result, err
|
||||
}
|
||||
defer resp.Body.Close()
|
||||
return result, json.NewDecoder(resp.Body).Decode(&result)
|
||||
}
|
||||
|
||||
func (c *appClient) controlConnection(handler ControlHandler) error {
|
||||
dialer := websocket.Dialer{}
|
||||
headers := http.Header{}
|
||||
c.ProbeConfig.authorizeHeaders(headers)
|
||||
// TODO(twilkie) need to update sanitize to work with wss
|
||||
url := sanitize.URL("ws://", 0, "/api/control/ws")(c.target)
|
||||
conn, _, err := dialer.Dial(url, headers)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
defer func() {
|
||||
log.Printf("Closing control connection to %s", c.target)
|
||||
conn.Close()
|
||||
}()
|
||||
|
||||
codec := NewJSONWebsocketCodec(conn)
|
||||
server := rpc.NewServer()
|
||||
if err := server.RegisterName("control", handler); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
c.controlServerCodecMtx.Lock()
|
||||
c.controlServerCodec = codec
|
||||
// At this point we may have tried to quit earlier, so check to see if the
|
||||
// quit channel has been closed, non-blocking.
|
||||
select {
|
||||
default:
|
||||
case <-c.quit:
|
||||
codec.Close()
|
||||
return nil
|
||||
}
|
||||
c.controlServerCodecMtx.Unlock()
|
||||
|
||||
server.ServeCodec(codec)
|
||||
|
||||
c.controlServerCodecMtx.Lock()
|
||||
c.controlServerCodec = nil
|
||||
c.controlServerCodecMtx.Unlock()
|
||||
return nil
|
||||
}
|
||||
|
||||
func (c *appClient) controlConnectionLoop(handler ControlHandler) {
|
||||
defer log.Printf("Control connection to %s exiting", c.target)
|
||||
backoff := initialBackoff
|
||||
|
||||
for {
|
||||
err := c.controlConnection(handler)
|
||||
if err == nil {
|
||||
backoff = initialBackoff
|
||||
continue
|
||||
}
|
||||
|
||||
log.Printf("Error doing controls for %s, backing off %s: %v", c.target, backoff, err)
|
||||
select {
|
||||
case <-time.After(backoff):
|
||||
case <-c.quit:
|
||||
return
|
||||
}
|
||||
backoff *= 2
|
||||
if backoff > maxBackoff {
|
||||
backoff = maxBackoff
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func (c *appClient) ControlConnection(handler ControlHandler) {
|
||||
go c.controlConnectionLoop(handler)
|
||||
}
|
||||
141
xfer/controls.go
Normal file
141
xfer/controls.go
Normal file
@@ -0,0 +1,141 @@
|
||||
package xfer
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"net/rpc"
|
||||
"sync"
|
||||
|
||||
"github.com/gorilla/websocket"
|
||||
)
|
||||
|
||||
// Request is the UI -> App -> Probe message type for control RPCs
|
||||
type Request struct {
|
||||
ID int64
|
||||
NodeID string
|
||||
Control string
|
||||
}
|
||||
|
||||
// Response is the Probe -> App -> UI message type for the control RPCs.
|
||||
type Response struct {
|
||||
ID int64
|
||||
Value interface{}
|
||||
Error string
|
||||
}
|
||||
|
||||
// ControlHandler is interface used in the app and the probe to represent
|
||||
// a control RPC.
|
||||
type ControlHandler interface {
|
||||
Handle(req Request, res *Response) error
|
||||
}
|
||||
|
||||
// ControlHandlerFunc is a adapter (ala golang's http RequestHandlerFunc)
|
||||
// for ControlHandler
|
||||
type ControlHandlerFunc func(Request) Response
|
||||
|
||||
// Handle is an adapter method to make ControlHandlers exposable via golang rpc
|
||||
func (c ControlHandlerFunc) Handle(req Request, res *Response) error {
|
||||
*res = c(req)
|
||||
return nil
|
||||
}
|
||||
|
||||
// ResponseErrorf creates a new Response with the given formatted error string.
|
||||
func ResponseErrorf(format string, a ...interface{}) Response {
|
||||
return Response{
|
||||
Error: fmt.Sprintf(format, a...),
|
||||
}
|
||||
}
|
||||
|
||||
// ResponseError creates a new Response with the given error.
|
||||
func ResponseError(err error) Response {
|
||||
if err != nil {
|
||||
return Response{
|
||||
Error: err.Error(),
|
||||
}
|
||||
}
|
||||
return Response{}
|
||||
}
|
||||
|
||||
// JSONWebsocketCodec is golang rpc compatible Server and Client Codec
|
||||
// that transmits and receives RPC messages over a websocker, as JSON.
|
||||
type JSONWebsocketCodec struct {
|
||||
sync.Mutex
|
||||
conn *websocket.Conn
|
||||
err chan struct{}
|
||||
}
|
||||
|
||||
// NewJSONWebsocketCodec makes a new JSONWebsocketCodec
|
||||
func NewJSONWebsocketCodec(conn *websocket.Conn) *JSONWebsocketCodec {
|
||||
return &JSONWebsocketCodec{
|
||||
conn: conn,
|
||||
err: make(chan struct{}),
|
||||
}
|
||||
}
|
||||
|
||||
// WaitForReadError blocks until any read on this codec returns an error.
|
||||
// This is useful to know when the server has disconnected from the client.
|
||||
func (j *JSONWebsocketCodec) WaitForReadError() {
|
||||
<-j.err
|
||||
}
|
||||
|
||||
// WriteRequest implements rpc.ClientCodec
|
||||
func (j *JSONWebsocketCodec) WriteRequest(r *rpc.Request, v interface{}) error {
|
||||
j.Lock()
|
||||
defer j.Unlock()
|
||||
|
||||
if err := j.conn.WriteJSON(r); err != nil {
|
||||
return err
|
||||
}
|
||||
return j.conn.WriteJSON(v)
|
||||
}
|
||||
|
||||
// ReadResponseHeader implements rpc.ClientCodec
|
||||
func (j *JSONWebsocketCodec) ReadResponseHeader(r *rpc.Response) error {
|
||||
err := j.conn.ReadJSON(r)
|
||||
if err != nil {
|
||||
close(j.err)
|
||||
}
|
||||
return err
|
||||
}
|
||||
|
||||
// ReadResponseBody implements rpc.ClientCodec
|
||||
func (j *JSONWebsocketCodec) ReadResponseBody(v interface{}) error {
|
||||
err := j.conn.ReadJSON(v)
|
||||
if err != nil {
|
||||
close(j.err)
|
||||
}
|
||||
return err
|
||||
}
|
||||
|
||||
// Close implements rpc.ClientCodec and rpc.ServerCodec
|
||||
func (j *JSONWebsocketCodec) Close() error {
|
||||
return j.conn.Close()
|
||||
}
|
||||
|
||||
// ReadRequestHeader implements rpc.ServerCodec
|
||||
func (j *JSONWebsocketCodec) ReadRequestHeader(r *rpc.Request) error {
|
||||
err := j.conn.ReadJSON(r)
|
||||
if err != nil {
|
||||
close(j.err)
|
||||
}
|
||||
return err
|
||||
}
|
||||
|
||||
// ReadRequestBody implements rpc.ServerCodec
|
||||
func (j *JSONWebsocketCodec) ReadRequestBody(v interface{}) error {
|
||||
err := j.conn.ReadJSON(v)
|
||||
if err != nil {
|
||||
close(j.err)
|
||||
}
|
||||
return err
|
||||
}
|
||||
|
||||
// WriteResponse implements rpc.ServerCodec
|
||||
func (j *JSONWebsocketCodec) WriteResponse(r *rpc.Response, v interface{}) error {
|
||||
j.Lock()
|
||||
defer j.Unlock()
|
||||
|
||||
if err := j.conn.WriteJSON(r); err != nil {
|
||||
return err
|
||||
}
|
||||
return j.conn.WriteJSON(v)
|
||||
}
|
||||
@@ -1,62 +1,39 @@
|
||||
package xfer
|
||||
|
||||
import (
|
||||
"crypto/tls"
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"io"
|
||||
"net"
|
||||
"net/http"
|
||||
"time"
|
||||
|
||||
"github.com/certifi/gocertifi"
|
||||
|
||||
"github.com/weaveworks/scope/common/sanitize"
|
||||
)
|
||||
|
||||
// HTTPPublisher publishes buffers by POST to a fixed endpoint.
|
||||
type HTTPPublisher struct {
|
||||
url string
|
||||
token string
|
||||
probeID string
|
||||
client *http.Client
|
||||
}
|
||||
ProbeConfig
|
||||
|
||||
func getHTTPTransport(hostname string, insecure bool) (*http.Transport, error) {
|
||||
if insecure {
|
||||
return &http.Transport{
|
||||
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
|
||||
}, nil
|
||||
}
|
||||
|
||||
host, _, err := net.SplitHostPort(hostname)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
certPool, err := gocertifi.CACerts()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return &http.Transport{
|
||||
TLSClientConfig: &tls.Config{
|
||||
RootCAs: certPool,
|
||||
ServerName: host,
|
||||
},
|
||||
}, nil
|
||||
url string
|
||||
client *http.Client
|
||||
}
|
||||
|
||||
// NewHTTPPublisher returns an HTTPPublisher ready for use.
|
||||
func NewHTTPPublisher(hostname, target, token, probeID string, insecure bool) (string, *HTTPPublisher, error) {
|
||||
httpTransport, err := getHTTPTransport(hostname, insecure)
|
||||
pc := ProbeConfig{
|
||||
Token: token,
|
||||
ProbeID: probeID,
|
||||
Insecure: insecure,
|
||||
}
|
||||
|
||||
httpTransport, err := pc.getHTTPTransport(hostname)
|
||||
if err != nil {
|
||||
return "", nil, err
|
||||
}
|
||||
|
||||
p := &HTTPPublisher{
|
||||
url: sanitize.URL("", 0, "/api/report")(target),
|
||||
token: token,
|
||||
probeID: probeID,
|
||||
ProbeConfig: pc,
|
||||
url: sanitize.URL("", 0, "/api/report")(target),
|
||||
client: &http.Client{
|
||||
Transport: httpTransport,
|
||||
},
|
||||
@@ -66,7 +43,7 @@ func NewHTTPPublisher(hostname, target, token, probeID string, insecure bool) (s
|
||||
Timeout: 5 * time.Second,
|
||||
Transport: httpTransport,
|
||||
}
|
||||
req, err := p.authorizedRequest("GET", sanitize.URL("", 0, "/api")(target), nil)
|
||||
req, err := pc.authorizedRequest("GET", sanitize.URL("", 0, "/api")(target), nil)
|
||||
if err != nil {
|
||||
return "", nil, err
|
||||
}
|
||||
@@ -84,22 +61,13 @@ func NewHTTPPublisher(hostname, target, token, probeID string, insecure bool) (s
|
||||
return apiResponse.ID, p, nil
|
||||
}
|
||||
|
||||
func (p HTTPPublisher) authorizedRequest(method string, urlStr string, body io.Reader) (*http.Request, error) {
|
||||
req, err := http.NewRequest(method, urlStr, body)
|
||||
if err == nil {
|
||||
req.Header.Set("Authorization", AuthorizationHeader(p.token))
|
||||
req.Header.Set(ScopeProbeIDHeader, p.probeID)
|
||||
}
|
||||
return req, err
|
||||
}
|
||||
|
||||
func (p HTTPPublisher) String() string {
|
||||
return p.url
|
||||
}
|
||||
|
||||
// Publish publishes the report to the URL.
|
||||
func (p HTTPPublisher) Publish(r io.Reader) error {
|
||||
req, err := p.authorizedRequest("POST", p.url, r)
|
||||
req, err := p.ProbeConfig.authorizedRequest("POST", p.url, r)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
@@ -125,15 +93,3 @@ func (p *HTTPPublisher) Stop() {
|
||||
// goroutines on the server (see #604)
|
||||
p.client.Transport.(*http.Transport).CloseIdleConnections()
|
||||
}
|
||||
|
||||
// AuthorizationHeader returns a value suitable for an HTTP Authorization
|
||||
// header, based on the passed token string.
|
||||
func AuthorizationHeader(token string) string {
|
||||
return fmt.Sprintf("Scope-Probe token=%s", token)
|
||||
}
|
||||
|
||||
// ScopeProbeIDHeader is the header we use to carry the probe's unique ID. The
|
||||
// ID is currently set to the probe's hostname. It's designed to deduplicate
|
||||
// reports from the same probe to the same receiver, in case the probe is
|
||||
// configured to publish to multiple receivers that resolve to the same app.
|
||||
const ScopeProbeIDHeader = "X-Scope-Probe-ID"
|
||||
|
||||
@@ -4,6 +4,7 @@ import (
|
||||
"compress/gzip"
|
||||
"encoding/gob"
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"net/http"
|
||||
"net/http/httptest"
|
||||
"net/url"
|
||||
@@ -27,7 +28,7 @@ func TestHTTPPublisher(t *testing.T) {
|
||||
)
|
||||
|
||||
handler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
if want, have := xfer.AuthorizationHeader(token), r.Header.Get("Authorization"); want != have {
|
||||
if want, have := fmt.Sprintf("Scope-Probe token=%s", token), r.Header.Get("Authorization"); want != have {
|
||||
t.Errorf("want %q, have %q", want, have)
|
||||
}
|
||||
|
||||
|
||||
118
xfer/multi_client.go
Normal file
118
xfer/multi_client.go
Normal file
@@ -0,0 +1,118 @@
|
||||
package xfer
|
||||
|
||||
import (
|
||||
"log"
|
||||
"sync"
|
||||
|
||||
"github.com/weaveworks/scope/report"
|
||||
)
|
||||
|
||||
// ClientFactory is a thing thats makes AppClients
|
||||
type ClientFactory func(ProbeConfig, string, string) (AppClient, error)
|
||||
|
||||
type multiClient struct {
|
||||
ProbeConfig
|
||||
|
||||
clientFactory ClientFactory
|
||||
handler ControlHandler
|
||||
|
||||
mtx sync.Mutex
|
||||
sema semaphore
|
||||
clients map[string]AppClient // holds map from app id -> client
|
||||
ids map[string]report.IDList // holds map from hostname -> app ids
|
||||
quit chan struct{}
|
||||
}
|
||||
|
||||
type clientTuple struct {
|
||||
Details
|
||||
AppClient
|
||||
}
|
||||
|
||||
// MultiAppClient maintains a set of upstream apps, and ensures we have an
|
||||
// AppClient for each one.
|
||||
type MultiAppClient interface {
|
||||
Set(hostname string, endpoints []string)
|
||||
Stop()
|
||||
}
|
||||
|
||||
// NewMultiAppClient creates a new MultiAppClient.
|
||||
func NewMultiAppClient(pc ProbeConfig, handler ControlHandler, clientFactory ClientFactory) MultiAppClient {
|
||||
return &multiClient{
|
||||
ProbeConfig: pc,
|
||||
clientFactory: clientFactory,
|
||||
handler: handler,
|
||||
|
||||
sema: newSemaphore(maxConcurrentGET),
|
||||
clients: map[string]AppClient{},
|
||||
ids: map[string]report.IDList{},
|
||||
quit: make(chan struct{}),
|
||||
}
|
||||
}
|
||||
|
||||
// Set the list of endpoints for the given hostname.
|
||||
func (c *multiClient) Set(hostname string, endpoints []string) {
|
||||
wg := sync.WaitGroup{}
|
||||
wg.Add(len(endpoints))
|
||||
clients := make(chan clientTuple, len(endpoints))
|
||||
for _, endpoint := range endpoints {
|
||||
go func(endpoint string) {
|
||||
c.sema.acquire()
|
||||
defer c.sema.release()
|
||||
|
||||
client, err := c.clientFactory(c.ProbeConfig, hostname, endpoint)
|
||||
if err != nil {
|
||||
log.Printf("Error creating new app client: %v", err)
|
||||
return
|
||||
}
|
||||
|
||||
details, err := client.Details()
|
||||
if err != nil {
|
||||
log.Printf("Error fetching app details: %v", err)
|
||||
}
|
||||
|
||||
clients <- clientTuple{details, client}
|
||||
wg.Done()
|
||||
}(endpoint)
|
||||
}
|
||||
|
||||
wg.Wait()
|
||||
close(clients)
|
||||
c.mtx.Lock()
|
||||
defer c.mtx.Unlock()
|
||||
|
||||
// Start any new apps, and replace the list of app ids for this hostname
|
||||
hostIDs := report.MakeIDList()
|
||||
for tuple := range clients {
|
||||
hostIDs = hostIDs.Add(tuple.ID)
|
||||
|
||||
_, ok := c.clients[tuple.ID]
|
||||
if !ok {
|
||||
c.clients[tuple.ID] = tuple.AppClient
|
||||
tuple.AppClient.ControlConnection(c.handler)
|
||||
}
|
||||
}
|
||||
c.ids[hostname] = hostIDs
|
||||
|
||||
// Remove apps that are no longer referenced (by id) from any hostname
|
||||
allReferencedIDs := report.MakeIDList()
|
||||
for _, ids := range c.ids {
|
||||
allReferencedIDs = allReferencedIDs.Add(ids...)
|
||||
}
|
||||
for id, client := range c.clients {
|
||||
if !allReferencedIDs.Contains(id) {
|
||||
client.Stop()
|
||||
delete(c.clients, id)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Stop the MultiAppClient.
|
||||
func (c *multiClient) Stop() {
|
||||
c.mtx.Lock()
|
||||
defer c.mtx.Unlock()
|
||||
for _, c := range c.clients {
|
||||
c.Stop()
|
||||
}
|
||||
c.clients = map[string]AppClient{}
|
||||
close(c.quit)
|
||||
}
|
||||
78
xfer/multi_client_test.go
Normal file
78
xfer/multi_client_test.go
Normal file
@@ -0,0 +1,78 @@
|
||||
package xfer_test
|
||||
|
||||
import (
|
||||
"runtime"
|
||||
"testing"
|
||||
|
||||
"github.com/weaveworks/scope/xfer"
|
||||
)
|
||||
|
||||
type mockClient struct {
|
||||
id string
|
||||
count int
|
||||
stopped int
|
||||
}
|
||||
|
||||
func (c *mockClient) Details() (xfer.Details, error) {
|
||||
return xfer.Details{ID: c.id}, nil
|
||||
}
|
||||
|
||||
func (c *mockClient) ControlConnection(handler xfer.ControlHandler) {
|
||||
c.count++
|
||||
}
|
||||
|
||||
func (c *mockClient) Stop() {
|
||||
c.stopped++
|
||||
}
|
||||
|
||||
func TestMultiClient(t *testing.T) {
|
||||
var (
|
||||
a1 = &mockClient{id: "1"} // hostname a, app id 1
|
||||
a2 = &mockClient{id: "2"} // hostname a, app id 2
|
||||
b2 = &mockClient{id: "2"} // hostname b, app id 2 (duplicate)
|
||||
b3 = &mockClient{id: "3"} // hostname b, app id 3
|
||||
factory = func(_ xfer.ProbeConfig, hostname, target string) (xfer.AppClient, error) {
|
||||
switch target {
|
||||
case "a1":
|
||||
return a1, nil
|
||||
case "a2":
|
||||
return a2, nil
|
||||
case "b2":
|
||||
return b2, nil
|
||||
case "b3":
|
||||
return b3, nil
|
||||
}
|
||||
t.Fatal(target)
|
||||
return a1, nil
|
||||
}
|
||||
controlHandler = xfer.ControlHandlerFunc(func(_ xfer.Request) xfer.Response {
|
||||
return xfer.Response{}
|
||||
})
|
||||
expect = func(i, j int) {
|
||||
if i != j {
|
||||
_, file, line, _ := runtime.Caller(1)
|
||||
t.Fatalf("%s:%d: %d != %d", file, line, i, j)
|
||||
}
|
||||
}
|
||||
)
|
||||
|
||||
mp := xfer.NewMultiAppClient(xfer.ProbeConfig{}, controlHandler, factory)
|
||||
defer mp.Stop()
|
||||
|
||||
// Add two hostnames with overlapping apps, check we don't add the same app twice
|
||||
mp.Set("a", []string{"a1", "a2"})
|
||||
mp.Set("b", []string{"b2", "b3"})
|
||||
expect(a1.count, 1)
|
||||
expect(a2.count+b2.count, 1)
|
||||
expect(b3.count, 1)
|
||||
|
||||
// Now drop the overlap, check we don't remove the app
|
||||
mp.Set("b", []string{"b3"})
|
||||
expect(a1.count, 1)
|
||||
expect(a2.count+b2.count, 1)
|
||||
expect(b3.count, 1)
|
||||
|
||||
// Now check we remove apps
|
||||
mp.Set("b", []string{})
|
||||
expect(b3.stopped, 1)
|
||||
}
|
||||
59
xfer/probe_config.go
Normal file
59
xfer/probe_config.go
Normal file
@@ -0,0 +1,59 @@
|
||||
package xfer
|
||||
|
||||
import (
|
||||
"crypto/tls"
|
||||
"fmt"
|
||||
"io"
|
||||
"net"
|
||||
"net/http"
|
||||
|
||||
"github.com/certifi/gocertifi"
|
||||
)
|
||||
|
||||
// ScopeProbeIDHeader is the header we use to carry the probe's unique ID. The
|
||||
// ID is currently set to the a random string on probe startup.
|
||||
const ScopeProbeIDHeader = "X-Scope-Probe-ID"
|
||||
|
||||
// ProbeConfig contains all the info needed for a probe to do HTTP requests
|
||||
type ProbeConfig struct {
|
||||
Token string
|
||||
ProbeID string
|
||||
Insecure bool
|
||||
}
|
||||
|
||||
func (pc ProbeConfig) authorizeHeaders(headers http.Header) {
|
||||
headers.Set("Authorization", fmt.Sprintf("Scope-Probe token=%s", pc.Token))
|
||||
headers.Set(ScopeProbeIDHeader, pc.ProbeID)
|
||||
}
|
||||
|
||||
func (pc ProbeConfig) authorizedRequest(method string, urlStr string, body io.Reader) (*http.Request, error) {
|
||||
req, err := http.NewRequest(method, urlStr, body)
|
||||
if err == nil {
|
||||
pc.authorizeHeaders(req.Header)
|
||||
}
|
||||
return req, err
|
||||
}
|
||||
|
||||
func (pc ProbeConfig) getHTTPTransport(hostname string) (*http.Transport, error) {
|
||||
if pc.Insecure {
|
||||
return &http.Transport{
|
||||
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
|
||||
}, nil
|
||||
}
|
||||
|
||||
host, _, err := net.SplitHostPort(hostname)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
certPool, err := gocertifi.CACerts()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return &http.Transport{
|
||||
TLSClientConfig: &tls.Config{
|
||||
RootCAs: certPool,
|
||||
ServerName: host,
|
||||
},
|
||||
}, nil
|
||||
}
|
||||
Reference in New Issue
Block a user