@@ -14,7 +14,6 @@ import (
14
14
"go.k6.io/k6/output/csv"
15
15
"go.k6.io/k6/output/influxdb"
16
16
"go.k6.io/k6/output/json"
17
- "go.k6.io/k6/output/statsd"
18
17
19
18
"github.com/grafana/xk6-dashboard/dashboard"
20
19
"github.com/grafana/xk6-output-opentelemetry/pkg/opentelemetry"
@@ -52,12 +51,11 @@ func getAllOutputConstructors() (map[string]output.Constructor, error) {
52
51
return nil , errors .New ("the kafka output was deprecated in k6 v0.32.0 and removed in k6 v0.34.0, " +
53
52
"please use the new xk6 kafka output extension instead - https://github.com/k6io/xk6-output-kafka" )
54
53
},
55
- builtinOutputStatsd .String (): func (params output.Params ) (output.Output , error ) {
56
- params . Logger . Warn ( "The statsd output is deprecated, and will be removed in k6 v0.55.0 " +
57
- "Please use the new xk6 statsd output extension instead. " +
54
+ builtinOutputStatsd .String (): func (_ output.Params ) (output.Output , error ) {
55
+ return nil , errors . New ( "the statsd output was deprecated in k6 v0.47.0 and removed in in k6 v0.55.0, " +
56
+ "please use the new xk6 statsd output extension instead. " +
58
57
"It can be found at https://github.com/LeonAdato/xk6-output-statsd and " +
59
- "more info at https://github.com/grafana/k6/issues/2982." )
60
- return statsd .New (params )
58
+ "more info at https://github.com/grafana/k6/issues/2982" )
61
59
},
62
60
builtinOutputDatadog .String (): func (_ output.Params ) (output.Output , error ) {
63
61
return nil , errors .New ("the datadog output was deprecated in k6 v0.32.0 and removed in k6 v0.34.0, " +
0 commit comments