diff --git a/README.md b/README.md index c70cba6..1fa179e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ # Get microservice callgraph +$ go get github.com/mic92/clusterssh $ go build . $ wget http://selenium-release.storage.googleapis.com/2.53/selenium-server-standalone-2.53.0.jar $ java -jar selenium-server-standalone-2.53.0.jar diff --git a/main.go b/main.go index d0a2fb0..0442e5d 100644 --- a/main.go +++ b/main.go @@ -9,9 +9,9 @@ import ( "syscall" "time" - "github.com/mic92/callgraph/rancher" - "github.com/mic92/callgraph/sharelatex" - "github.com/mic92/callgraph/sysdig" + "./rancher" + "./sharelatex" + "./sysdig" ) var ( diff --git a/sysdig/graph_test.go b/sysdig/graph_test.go index 0c6084d..060625f 100644 --- a/sysdig/graph_test.go +++ b/sysdig/graph_test.go @@ -10,7 +10,7 @@ import ( "runtime" "testing" - "github.com/mic92/callgraph/sysdig" + "../sysdig" ) func assert(tb testing.TB, condition bool, msg string, v ...interface{}) {