Add stream sample and docs for how to run it

This commit is contained in:
Dave Syer
2015-12-22 12:23:39 +00:00
parent c11e530560
commit 08f79397ab
10 changed files with 414 additions and 17 deletions

View File

@@ -0,0 +1,39 @@
mysql:
image: openzipkin/zipkin-mysql:1.26.0
ports:
- 3306:3306
collector:
image: openzipkin/zipkin-collector:1.26.0
environment:
- TRANSPORT_TYPE=scribe
- STORAGE_TYPE=mysql
expose:
- 9410
ports:
- 9410:9410
- 9900:9900
links:
- mysql:storage
query:
image: openzipkin/zipkin-query:1.26.0
environment:
# Remove TRANSPORT_TYPE to disable tracing
- TRANSPORT_TYPE=http
- STORAGE_TYPE=mysql
expose:
- 9411
ports:
- 9411:9411
- 9901:9901
links:
- mysql:storage
web:
image: openzipkin/zipkin-web:1.26.0
environment:
# Remove TRANSPORT_TYPE to disable tracing
- TRANSPORT_TYPE=http
ports:
- 8080:8080
- 9990:9990
links:
- query