AWS X-Ray is a tool for tracking segment information about requests through services. The typical way to run this locally is to run the X-Ray daemon provided by Amazon. One flaw here is that the daemon requires real credentials to connect to AWS and expects to send data back even locally.
This service is for
- If you've ever wanted to see what the X-Ray segment data looks like locally before it's sent to amazon's servers
- You just want to have a local daemon available that doesn't send data to AWS when you're doing testing or running local services
go get -u github.com/jesseobrien/x-ray-echo-server
$ x-ray-echo-server
docker pull jesseobrien/x-ray-echo-server:latest
docker run -d --name xray-echo-server -p 2000:2000/udp -p 2000:2000/tcp jesseobrien/x-ray-echo-server