Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update messaging around replay command [PC-14729] #258

Merged
merged 4 commits into from
Dec 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions internal/replay.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ func (r *RootCmd) NewReplayCmd() *cobra.Command {
Long: "`sloctl replay` creates Replays to retrieve historical data for SLOs. " +
"Use it to replay SLOs one-by-one or in bulk. Historical data retrieval is time-consuming: " +
"replaying a single SLO can take up to an hour. Considering the number of ongoing Replays is limited, " +
"`sloctl` queues Replays if the limit is exceeded. Replay queues is an experimental feature, currently " +
"unavailable to all organizations. We're working on improving and expanding its availability.",
"`sloctl` queues Replays if the limit is exceeded.",
Example: replayExample,
Args: replay.arguments,
PersistentPreRun: func(cmd *cobra.Command, args []string) {
Expand Down Expand Up @@ -95,7 +94,7 @@ func (r *ReplayCmd) RunReplays(cmd *cobra.Command, replays []ReplayConfig) (fail
if r.playlistsAvailable {
cmd.Println(colorstring.Color("[yellow]- Your organization has access to Replay queues!"))
cmd.Println(colorstring.Color("[yellow]- To learn more about Replay queues, follow this link: " +
"https://docs.nobl9.com/replay-canary/ [reset]"))
"https://docs.nobl9.com/replay/replay-sloctl [reset]"))
}

failedIndexes := make([]int, 0)
Expand Down
Loading