Skip to content

Commit

Permalink
Set K6_CLOUD_TRACES_ENABLED to true by default
Browse files Browse the repository at this point in the history
This commit updates the default value of the `tracesEnabled` option, enabling it by default. We hope this change can help drive ease of use of the Distributed Tracing in Grafana Cloud k6 feature.
  • Loading branch information
Blinkuu authored and olegbespalov committed Oct 16, 2023
1 parent 43f10a0 commit 9d394ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloudapi/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ func NewConfig() Config {
MetricPushInterval: types.NewNullDuration(1*time.Second, false),
MetricPushConcurrency: null.NewInt(1, false),

TracesEnabled: null.NewBool(false, false),
TracesEnabled: null.NewBool(true, false),
TracesHost: null.NewString("insights.k6.io:4443", false),
TracesPushInterval: types.NewNullDuration(1*time.Second, false),
TracesPushConcurrency: null.NewInt(1, false),
Expand Down

0 comments on commit 9d394ca

Please sign in to comment.