Skip to content

Commit ef87fcd

Browse files
committed
Drop k6/experimental/tracing
1 parent 0411e28 commit ef87fcd

17 files changed

+4
-2205
lines changed

cmd/tests/tracing_module_test.go

-523
This file was deleted.

examples/experimental/tracing/tracing-client.js

-46
This file was deleted.

examples/experimental/tracing/tracing-instrumentHTTP.js

-24
This file was deleted.

examples/experimental/tracing/tracing-sampling.js

-31
This file was deleted.

js/jsmodules.go

+4-6
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ import (
1616
"go.k6.io/k6/js/modules/k6/experimental/csv"
1717
"go.k6.io/k6/js/modules/k6/experimental/fs"
1818
"go.k6.io/k6/js/modules/k6/experimental/streams"
19-
"go.k6.io/k6/js/modules/k6/experimental/tracing"
2019
"go.k6.io/k6/js/modules/k6/grpc"
2120
"go.k6.io/k6/js/modules/k6/html"
2221
"go.k6.io/k6/js/modules/k6/http"
@@ -46,11 +45,10 @@ func getInternalJSModules() map[string]interface{} {
4645
"k6/experimental/websockets": &expws.RootModule{},
4746
"k6/experimental/timers": newRemovedModule(
4847
"k6/experimental/timers has been graduated, please use k6/timers instead."),
49-
"k6/experimental/tracing": newWarnExperimentalModule(tracing.New(),
50-
"k6/experimental/tracing is now deprecated. All of its functionality is available as pure javascript module."+
51-
" More info available at the docs:"+
52-
" https://grafana.com/docs/k6/latest/javascript-api/jslib/http-instrumentation-tempo"+
53-
" The module will be removed after November 11th, 2024 (v0.55.0). Ensure your scripts are migrated by then."),
48+
"k6/experimental/tracing": newRemovedModule(
49+
"k6/experimental/tracing has been removed. All of it functionality is available as pure javascript module." +
50+
" More info available at the docs:" +
51+
" https://grafana.com/docs/k6/latest/javascript-api/jslib/http-instrumentation-tempo"),
5452
"k6/experimental/browser": newWarnExperimentalModule(browser.NewSync(),
5553
"Please update your imports to use k6/browser instead of k6/experimental/browser,"+
5654
" which will be removed after September 23rd, 2024 (v0.54.0). Ensure your scripts are migrated by then."+

0 commit comments

Comments
 (0)