Skip to content

aviau/docker-zipkin-gcp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status zipkin-gcp

docker-zipkin-gcp

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.

About

Docker build for zipkin-gcp

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 83.4%
  • Dockerfile 16.6%