Use hexadecimal ids and lowercase names in zipkin input (#3488)

This commit is contained in:
Chris Goller
2017-11-20 16:19:32 -06:00
committed by Daniel Nelson
parent 9422cca2cc
commit afe05fcfef
8 changed files with 120 additions and 110 deletions

View File

@@ -199,5 +199,5 @@ func (s *span) Duration() time.Duration {
}
func formatID(id int64) string {
return strconv.FormatInt(id, 10)
return strconv.FormatInt(id, 16)
}