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

STAC-21827: Deprecate graph commands #89

Merged
merged 1 commit into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion cmd/graph/graph_delete_expired_data.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func DeleteExpiredDataCommand(deps *di.Deps) *cobra.Command {
args := &DeleteExpiredDataArgs{}
cmd := &cobra.Command{
Use: "delete-expired-data",
Short: "Delete expired data from StackState",
Short: "Delete expired data from StackState (DEPRECATED !! FUNCTIONALITY IS REMOVED IN LATEST VERSION OF PLATFORM)",
Long: "Schedule deletion of expired data from StackState.\n" +
"If --immediate is specified, removes data immediately and restarts StackState.",
RunE: deps.CmdRunEWithAdminApi(RunDeleteExpiredDataCommand(args)),
Expand Down
2 changes: 1 addition & 1 deletion cmd/graph/graph_retention.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func RetentionCommand(deps *di.Deps) *cobra.Command {
args := &RetentionArgs{}
cmd := &cobra.Command{
Use: "retention",
Short: "Manage the StackState Graph data retention",
Short: "Manage the StackState Graph data retention (DEPRECATED !! FUNCTIONALITY IS REMOVED IN LATEST VERSION OF PLATFORM)",
Long: "View and configure how long the StackState data graph retains data.\n" +
"More info can ben found at http://docs.stackstate.com/setup/retention/.",
RunE: deps.CmdRunEWithAdminApi(RunRetentionCommand(args)),
Expand Down
Loading