• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..08-Jun-2019-

.gitignoreH A D08-Jun-20199 21

README.mdH A D08-Jun-2019338 2215

run-tracer.shH A D08-Jun-2019248 1210

tracing.goH A D08-Jun-20194.6 KiB194137

README.md

1# Illustrate Elastic OpenTracing
2
3Run Jaeger (any other supported tracers work of course):
4
5```
6$ ./run-tracer.sh
7```
8
9Then open the web UI:
10
11```
12$ open http://localhost:16686
13```
14
15Then run the example, e.g.:
16
17```
18$ dep ensure # not necessary for Go 1.11 or later
19$ go build
20$ ./tracing -index=test -type=doc -n=100000 -bulk-size=100
21```
22