aboutsummaryrefslogtreecommitdiff
path: root/internal/pushgateway/client.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/pushgateway/client.go')
-rw-r--r--internal/pushgateway/client.go6
1 files changed, 2 insertions, 4 deletions
diff --git a/internal/pushgateway/client.go b/internal/pushgateway/client.go
index 259239b8..d5671be3 100644
--- a/internal/pushgateway/client.go
+++ b/internal/pushgateway/client.go
@@ -10,8 +10,6 @@ import (
"time"
"github.com/matrix-org/dendrite/internal"
-
- "github.com/opentracing/opentracing-go"
)
type httpClient struct {
@@ -34,8 +32,8 @@ func NewHTTPClient(disableTLSValidation bool) Client {
}
func (h *httpClient) Notify(ctx context.Context, url string, req *NotifyRequest, resp *NotifyResponse) error {
- span, ctx := opentracing.StartSpanFromContext(ctx, "Notify")
- defer span.Finish()
+ trace, ctx := internal.StartRegion(ctx, "Notify")
+ defer trace.EndRegion()
body, err := json.Marshal(req)
if err != nil {