Skip to content

Commit

Permalink
Remove deprecated outputs datadog and kafka
Browse files Browse the repository at this point in the history
  • Loading branch information
mstoykov committed Jul 1, 2021
1 parent cc0361c commit 5606e3e
Show file tree
Hide file tree
Showing 155 changed files with 23 additions and 21,490 deletions.
11 changes: 5 additions & 6 deletions cmd/outputs.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
package cmd

import (
"errors"
"fmt"
"sort"
"strings"
Expand All @@ -36,8 +37,6 @@ import (
"go.k6.io/k6/output/influxdb"
"go.k6.io/k6/output/json"
"go.k6.io/k6/output/statsd"

"github.com/k6io/xk6-output-kafka/pkg/kafka"
)

// TODO: move this to an output sub-module after we get rid of the old collectors?
Expand All @@ -48,16 +47,16 @@ func getAllOutputConstructors() (map[string]func(output.Params) (output.Output,
"cloud": cloud.New,
"influxdb": influxdb.New,
"kafka": func(params output.Params) (output.Output, error) {
params.Logger.Warn("The kafka output is deprecated, and will be removed in a future k6 version. " +
params.Logger.Error("The kafka output is deprecated, and will be removed in a future k6 version. " +
"Please use the new xk6 kafka output extension instead. " +
"It can be found at https://github.com/k6io/xk6-output-kafka.")
return kafka.New(params)
return nil, errors.New("deprecated kafka output used")
},
"statsd": statsd.New,
"datadog": func(params output.Params) (output.Output, error) {
params.Logger.Warn("The datadog output is deprecated, and will be removed in a future k6 version. " +
params.Logger.Error("The datadog output is deprecated, and will be removed in a future k6 version. " +
"Please use the statsd output with env variable K6_STATSD_ENABLE_TAGS=true instead.")
return statsd.NewDatadog(params)
return nil, errors.New("deprecated datadog output used")
},
"csv": csv.New,
}
Expand Down
8 changes: 7 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ require (
github.com/andybalholm/brotli v1.0.2
github.com/dop251/goja v0.0.0-20210427212725-462d53687b0d
github.com/fatih/color v1.11.0
github.com/gedex/inflector v0.0.0-20170307190818-16278e9db813 // indirect
github.com/golang/protobuf v1.4.2
github.com/google/go-cmp v0.5.1 // indirect
github.com/gorilla/websocket v1.4.2
github.com/influxdata/influxdb1-client v0.0.0-20190402204710-8ff2fc3824fc
github.com/jhump/protoreflect v1.8.2
github.com/k6io/xk6-output-kafka v0.2.0
github.com/kelseyhightower/envconfig v1.4.0
github.com/klauspost/compress v1.12.2
github.com/kubernetes/helm v2.9.0+incompatible
Expand All @@ -25,6 +26,7 @@ require (
github.com/mccutchen/go-httpbin v1.1.2-0.20190116014521-c5cb2f4802fa
github.com/mitchellh/mapstructure v1.1.2
github.com/nu7hatch/gouuid v0.0.0-20131221200532-179d4d0c4d8d
github.com/onsi/ginkgo v1.14.0 // indirect
github.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c
github.com/pmezard/go-difflib v1.0.0
github.com/serenize/snaker v0.0.0-20201027110005-a7ad2135616e
Expand All @@ -37,9 +39,13 @@ require (
github.com/tidwall/pretty v1.1.0
golang.org/x/crypto v0.0.0-20201016220609-9e8e0b390897
golang.org/x/net v0.0.0-20210428185458-6f5299370f2b
golang.org/x/sys v0.0.0-20201204225414-ed752295db88 // indirect
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/genproto v0.0.0-20200903010400-9bfcb5116336 // indirect
google.golang.org/grpc v1.37.1
google.golang.org/protobuf v1.25.1-0.20200805231151-a709e31e5d12
gopkg.in/guregu/null.v2 v2.1.2 // indirect
gopkg.in/guregu/null.v3 v3.3.0
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
)
83 changes: 0 additions & 83 deletions go.sum

Large diffs are not rendered by default.

120 changes: 0 additions & 120 deletions output/statsd/datadog.go

This file was deleted.

79 changes: 0 additions & 79 deletions output/statsd/datadog_test.go

This file was deleted.

26 changes: 0 additions & 26 deletions vendor/github.com/Shopify/sarama/.gitignore

This file was deleted.

Loading

0 comments on commit 5606e3e

Please sign in to comment.