@@ -16,7 +16,6 @@ import (
16
16
"go.k6.io/k6/js/modules/k6/experimental/csv"
17
17
"go.k6.io/k6/js/modules/k6/experimental/fs"
18
18
"go.k6.io/k6/js/modules/k6/experimental/streams"
19
- "go.k6.io/k6/js/modules/k6/experimental/tracing"
20
19
"go.k6.io/k6/js/modules/k6/grpc"
21
20
"go.k6.io/k6/js/modules/k6/html"
22
21
"go.k6.io/k6/js/modules/k6/http"
@@ -46,11 +45,10 @@ func getInternalJSModules() map[string]interface{} {
46
45
"k6/experimental/websockets" : & expws.RootModule {},
47
46
"k6/experimental/timers" : newRemovedModule (
48
47
"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" ),
54
52
"k6/experimental/browser" : newWarnExperimentalModule (browser .NewSync (),
55
53
"Please update your imports to use k6/browser instead of k6/experimental/browser," +
56
54
" which will be removed after September 23rd, 2024 (v0.54.0). Ensure your scripts are migrated by then." +
0 commit comments