JesseObrien / x-ray-echo-server

A small server that will echo responses from the AWS xray daemon instead of trying to forward them on. Used for local testing.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AWS X-Ray Echo Server

What?

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

Install

go get -u github.com/jesseobrien/x-ray-echo-server

Running

$ x-ray-echo-server

Docker

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

About

A small server that will echo responses from the AWS xray daemon instead of trying to forward them on. Used for local testing.


Languages

Language:Go 92.7%Language:Dockerfile 6.4%Language:Makefile 1.0%