Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop k6/experimental/tracing #3855

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
523 changes: 0 additions & 523 deletions cmd/tests/tracing_module_test.go

This file was deleted.

46 changes: 0 additions & 46 deletions examples/experimental/tracing/tracing-client.js

This file was deleted.

24 changes: 0 additions & 24 deletions examples/experimental/tracing/tracing-instrumentHTTP.js

This file was deleted.

31 changes: 0 additions & 31 deletions examples/experimental/tracing/tracing-sampling.js

This file was deleted.

6 changes: 4 additions & 2 deletions js/jsmodules.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import (
"go.k6.io/k6/js/modules/k6/execution"
"go.k6.io/k6/js/modules/k6/experimental/fs"
"go.k6.io/k6/js/modules/k6/experimental/streams"
"go.k6.io/k6/js/modules/k6/experimental/tracing"
"go.k6.io/k6/js/modules/k6/grpc"
"go.k6.io/k6/js/modules/k6/html"
"go.k6.io/k6/js/modules/k6/http"
Expand Down Expand Up @@ -46,7 +45,10 @@ func getInternalJSModules() map[string]interface{} {
"The exports of `k6/experimental/timers` are globally available, so no need to import them."+
" The module will be removed after September 23rd, 2024 (v0.54.0). Ensure your scripts are migrated by then."+
" There are no API changes, so this is a drop-in replacement and is also available under `k6/timers`."),
"k6/experimental/tracing": tracing.New(),
"k6/experimental/tracing": newRemovedModule(
"k6/experimental/tracing has been removed. All of it functionality is available as pure javascript module." +
" More info available at the docs:" +
" https://grafana.com/docs/k6/latest/javascript-api/jslib/http-instrumentation-tempo"),
"k6/experimental/browser": newWarnExperimentalModule(browser.NewSync(),
"Please update your imports to use k6/browser instead of k6/experimental/browser,"+
" which will be removed after September 23rd, 2024 (v0.54.0). Ensure your scripts are migrated by then."+
Expand Down
Loading
Loading