Skip to content
This repository has been archived by the owner on Nov 5, 2019. It is now read-only.

openzipkin-attic/docker-zipkin-gcp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

docker-zipkin-gcp

Archived

This repository is archived as it has been folded into https://github.com/openzipkin/zipkin-gcp/tree/master/docker

Overview

This repository contains the Docker build definition and release process for openzipkin/zipkin-gcp.

This layers Google Cloud Platform support on the base zipkin docker image.

Currently, this adds Stackdriver Trace storage

Running

By default, this image will search for credentials in a json file at $GOOGLE_APPLICATION_CREDENTIALS

If you want to try Zipkin against Stackdriver, the easiest start is to share your credentials with Zipkin's docker image.

$ docker run -d -p 9411:9411 \
  -e STORAGE_TYPE=stackdriver \
  -e GOOGLE_APPLICATION_CREDENTIALS=/root/.gcp/credentials.json \
  -e STACKDRIVER_PROJECT_ID=your_project \
  -v $HOME/.gcp:/root/.gcp:ro \
  openzipkin/zipkin-gcp

Configuration

Configuration is via environment variables, defined by zipkin-gcp.

In docker, the following can also be set:

* `JAVA_OPTS`: Use to set java arguments, such as heap size or trust store location.

Stackdriver

Stackdriver Configuration variables are detailed here.