Skip to content

Commit

Permalink
Drop k6/experimental/tracing
Browse files Browse the repository at this point in the history
  • Loading branch information
mstoykov committed Nov 8, 2024
1 parent 0411e28 commit 385cb59
Show file tree
Hide file tree
Showing 17 changed files with 4 additions and 2,205 deletions.
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.

10 changes: 4 additions & 6 deletions js/jsmodules.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ import (
"go.k6.io/k6/js/modules/k6/experimental/csv"
"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,11 +45,10 @@ func getInternalJSModules() map[string]interface{} {
"k6/experimental/websockets": &expws.RootModule{},
"k6/experimental/timers": newRemovedModule(
"k6/experimental/timers has been graduated, please use k6/timers instead."),
"k6/experimental/tracing": newWarnExperimentalModule(tracing.New(),
"k6/experimental/tracing is now deprecated. All of its 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"+
" The module will be removed after November 11th, 2024 (v0.55.0). Ensure your scripts are migrated by then."),
"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

0 comments on commit 385cb59

Please sign in to comment.