diff --git a/node/modules/tracer/elasticsearch_transport.go b/node/modules/tracer/elasticsearch_transport.go index dbacf5823..621b1d437 100644 --- a/node/modules/tracer/elasticsearch_transport.go +++ b/node/modules/tracer/elasticsearch_transport.go @@ -26,7 +26,7 @@ func NewElasticSearchTransport(connectionString string) (TracerTransport, error) password, _ := conUrl.User.Password() cfg := elasticsearch.Config{ Addresses: []string{ - conUrl.Scheme + conUrl.Host, + conUrl.Scheme + "://" + conUrl.Host, }, Username: username, Password: password,