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

Commit

Permalink
Merge pull request #30 from gfads/enhancement/zipkin-tracing
Browse files Browse the repository at this point in the history
Add local IP address to Zipkin tracing
  • Loading branch information
vlal authored Nov 1, 2017
2 parents 923c8b0 + a440cf6 commit 791d88d
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion cmd/paymentsvc/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ package main
import (
"flag"
"fmt"
"net"
"net/http"
"os"
"os/signal"
"strings"
"syscall"

"github.com/go-kit/kit/log"
Expand Down Expand Up @@ -35,6 +37,15 @@ func main() {
logger = log.NewContext(logger).With("ts", log.DefaultTimestampUTC)
logger = log.NewContext(logger).With("caller", log.DefaultCaller)
}
// Find service local IP.
conn, err := net.Dial("udp", "8.8.8.8:80")
if err != nil {
logger.Log("err", err)
os.Exit(1)
}
localAddr := conn.LocalAddr().(*net.UDPAddr)
host := strings.Split(localAddr.String(), ":")[0]
defer conn.Close()
if *zip == "" {
tracer = stdopentracing.NoopTracer{}
} else {
Expand All @@ -49,7 +60,7 @@ func main() {
os.Exit(1)
}
tracer, err = zipkin.NewTracer(
zipkin.NewRecorder(collector, false, fmt.Sprintf("localhost:%v", port), ServiceName),
zipkin.NewRecorder(collector, false, fmt.Sprintf("%v:%v", host, port), ServiceName),
)
if err != nil {
logger.Log("err", err)
Expand Down

0 comments on commit 791d88d

Please sign in to comment.