github.com/nsqio/nsq@v1.3.0/internal/statsd/host.go (about)

     1  package statsd
     2  
     3  import (
     4  	"strings"
     5  )
     6  
     7  func HostKey(h string) string {
     8  	return strings.Replace(strings.Replace(h, ".", "_", -1), ":", "_", -1)
     9  }