Skip to content

Commit 389a102

Browse files
adonovangopherbot
authored andcommitted
gopls/internal/telemetry/cmd/stacks: collect from go.dev frontend
The previous storage endpoint is going away soon. Change-Id: If9001604d08ff7cdc1533f449892cf81bc6a17fb Reviewed-on: https://go-review.googlesource.com/c/tools/+/677155 Reviewed-by: Alessandro Arzilli <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Robert Findley <[email protected]> Auto-Submit: Alan Donovan <[email protected]>
1 parent 81de76b commit 389a102

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gopls/internal/telemetry/cmd/stacks/stacks.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ func readReports(pcfg ProgramConfig, days int) (stacks map[string]map[Info]int64
346346
for i := range days {
347347
date := t.Add(-time.Duration(i+1) * 24 * time.Hour).Format(time.DateOnly)
348348

349-
url := fmt.Sprintf("https://storage.googleapis.com/prod-telemetry-merged/%s.json", date)
349+
url := fmt.Sprintf("https://telemetry.go.dev/data/%s", date)
350350
resp, err := http.Get(url)
351351
if err != nil {
352352
return nil, 0, nil, fmt.Errorf("error on GET %s: %v", url, err)

0 commit comments

Comments
 (0)