Skip to content

Commit

Permalink
added docker-compose and explanation regarding its usage to the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
de-robat committed Aug 3, 2017
1 parent 87b6a3b commit 13ac03e
Show file tree
Hide file tree
Showing 2 changed files with 75 additions and 0 deletions.
73 changes: 73 additions & 0 deletions cmd/jaeger-stack/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
version: '2'
services:
cassandra:
image: cassandra:3.11
networks:
- jaeger
ports:
- "7000:7000"
- "7001:7001"
- "7199:7199"
- "9042:9042"
- "9160:9160"
restart: unless-stopped
volumes:
- cassandra-data:/var/lib/cassandra
- cassandra-logs:/var/log/cassandra
logging:
options:
max-size: 5m
environment:
MAX_HEAP_SIZE: 512M
HEAP_NEWSIZE: 100M
CASSANDRA_CLUSTER_NAME: "jaeger"
CASSANDRA_DC: "dc1"
CASSANDRA_RACK: "rack1"
CASSANDRA_ENDPOINT_SNITCH: "GossipingPropertyFileSnitch"
CASSANDRA_START_RPC: "true"
cassandra-scheme:
image: jaegertracing/jaeger-cassandra-schema:0.5
networks:
- jaeger
depends_on:
- cassandra
jaeger-collector:
image: jaegertracing/jaeger-collector:0.5
networks:
- jaeger
ports:
- "14267:14267"
- "14268:14268"
depends_on:
- cassandra-scheme
restart: unless-stopped
command: /go/bin/collector-linux -cassandra.servers=cassandra -cassandra.keyspace=jaeger_v1_dc1 -cassandra.connections-per-host 2
jaeger-agent:
image: jaegertracing/jaeger-agent:0.5
networks:
- jaeger
ports:
- "5775:5775/udp"
- "5778:5778"
- "6831:6831/udp"
- "6832:6832/udp"
depends_on:
- cassandra-scheme
restart: unless-stopped
command: /go/bin/agent-linux -collector.host-port=jaeger-collector:14267
jaeger-query:
image: jaegertracing/jaeger-query:0.5
networks:
- jaeger
ports:
- "16686:16686"
depends_on:
- cassandra-scheme
restart: unless-stopped
command: /go/bin/query-linux -cassandra.servers=cassandra -cassandra.keyspace=jaeger_v1_dc1 --query.static-files=/go/jaeger-ui/
networks:
jaeger: #defaultnetwork
volumes:
cassandra-data: {}
cassandra-logs: {}

2 changes: 2 additions & 0 deletions docs/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ There are orchestration templates for running Jaeger with:
* Kubernetes: [github.com/jaegertracing/jaeger-kubernetes](https://github.com/jaegertracing/jaeger-kubernetes),
* OpenShift: [github.com/jaegertracing/jaeger-openshift](https://github.com/jaegertracing/jaeger-openshift).

As well as a [docker-compose.yml](./../cmd/jaeger-stack) for your convenience to start up the whole stack including the query interface, a Cassandra database, an agent and the collector on one machine. The compose-file will kick start the database (Cassandra) and a container that establishes the database-structure as soon as Cassandra is available. After Cassandras successful configuration, the collector and the query interface will become stable as well (while the schema setup is in progress you may see the collector and the query restart until eventually all their needs are satisfied).

## Agent

Jaeger client libraries expect **jaeger-agent** process to run locally on each host.
Expand Down

0 comments on commit 13ac03e

Please sign in to comment.