Skip to content

Commit

Permalink
Rephrasing configuration wizard Traces question (aws#381)
Browse files Browse the repository at this point in the history
  • Loading branch information
Paramadon authored Aug 4, 2023
1 parent 06f162b commit c1285ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tool/processors/tracesconfig/tracesconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func (p *processor) Process(ctx *runtime.Context, cfg *data.Config) {
}

if !ctx.TracesOnly {
yes := util.Yes("Do you want to add traces to your configuration?")
yes := util.Yes("Do you want the CloudWatch agent to also retrieve X-ray traces?")
if !yes {
return
}
Expand All @@ -57,7 +57,7 @@ func (p *processor) NextProcessor(ctx *runtime.Context, config *data.Config) int
var DefaultTracesConfigFile []byte

const (
anyExistingDaemonConfiguration = "Do you have any existing X-Ray Daemon configuration file to import for migration?"
anyExistingDaemonConfiguration = "Do you have an existing X-Ray Daemon configuration file to import for migration?"
filePathXrayConfigQuestion = "What is the file path for the existing X-Ray Daemon configuration file?"
)

Expand Down Expand Up @@ -183,7 +183,7 @@ func updateUserConfig(tracesConfig *config.Traces) *config.Traces {
// array of fields
func generateFieldOptions() []string {
options := []string{
"0: Exit",
"0: Keep this configuration and exit",
"1: UDP BindAddress",
"2: TCP BindAddress",
"3: concurrency",
Expand Down

0 comments on commit c1285ea

Please sign in to comment.