Skip to content

basvanbeek/opencensus-gokit-example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

opencensus-gokit-example

Example of using OpenCensus with Go kit

Go Report Card

notable dependencies

  • Go kit
  • OpenCensus
  • gRPC
  • Twirp
  • Zipkin

build services

Services can be built by running go generate in the root of the project:

$ go generate ./...

running the services

Get a Zipkin instance running by following the directions as found here. This will allow the services instrumented with OpenCensus to export tracing details to a Zipkin backend.

Get etcd running for service discovery. Instructions to get it up and running can be found here.

Now you can start the various services included in this demo.

Example:

#!/bin/sh
nohup ./ocg-qrgenerator &>qrgenerator.log &
nohup ./ocg-device      &>device.log      &
nohup ./ocg-event       &>event.log       &
nohup ./ocg-frontend    &>frontend.log    &

Each service will dynamically select available ports to listen on and advertise these on etcd. It is possible to run multiple instances for each service on a single machine. The clients can automatically load balance and retry on the available services.

About

Example of using OpenCensus with Go kit

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages