From 8cb572d1a38f4562dcf31615d8bd1fb4d05a3cd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joan=20L=C3=B3pez=20de=20la=20Franca=20Beltran?= Date: Thu, 12 Sep 2024 08:19:34 +0200 Subject: [PATCH] Use the new usage-stats endpoint --- cmd/report.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/report.go b/cmd/report.go index 8f8e3a454291..d7ff202c2ffa 100644 --- a/cmd/report.go +++ b/cmd/report.go @@ -37,7 +37,7 @@ func reportUsage(ctx context.Context, execScheduler *execution.Scheduler, test * if err != nil { return err } - req, err := http.NewRequestWithContext(ctx, http.MethodPost, "https://reports.k6.io", bytes.NewBuffer(body)) + req, err := http.NewRequestWithContext(ctx, http.MethodPost, "https://stats.grafana.org/k6-usage-report", bytes.NewBuffer(body)) if err != nil { return err }