forked from vitessio/vitess
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cp 12973 14007 14113 (vitessio#3255)
* metrics: change vtbackup_duration_by_phase to binary-valued vtbackup_phase (vitessio#12973) Signed-off-by: Max Englander <max@planetscale.com> Signed-off-by: Andrew Mason <andrew@planetscale.com> * [CLI] cobra lots of things (vitessio#14007) Signed-off-by: Andrew Mason <andrew@planetscale.com> * go/cmd/vtbackup: wait for plugins to finish initializing (vitessio#14113) Signed-off-by: Max Englander <max@planetscale.com> --------- Signed-off-by: Max Englander <max@planetscale.com> Signed-off-by: Andrew Mason <andrew@planetscale.com> Co-authored-by: Max Englander <max@planetscale.com>
- Loading branch information
1 parent
0c7fff0
commit 49c21c7
Showing
57 changed files
with
3,222 additions
and
2,002 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
Copyright 2023 The Vitess Authors | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package cli | ||
|
||
import ( | ||
"github.com/spf13/cobra" | ||
|
||
"vitess.io/vitess/go/acl" | ||
"vitess.io/vitess/go/vt/logutil" | ||
"vitess.io/vitess/go/vt/servenv" | ||
"vitess.io/vitess/go/vt/vtaclcheck" | ||
) | ||
|
||
var ( | ||
aclFile string | ||
staticAuthFile string | ||
|
||
Main = &cobra.Command{ | ||
Use: "vtaclcheck", | ||
Short: "vtaclcheck checks that the access-control list (ACL) rules in a given file are valid.", | ||
Args: cobra.NoArgs, | ||
Version: servenv.AppVersion.String(), | ||
PreRunE: servenv.CobraPreRunE, | ||
PostRun: func(cmd *cobra.Command, args []string) { | ||
logutil.Flush() | ||
}, | ||
RunE: run, | ||
} | ||
) | ||
|
||
func run(cmd *cobra.Command, args []string) error { | ||
servenv.Init() | ||
defer servenv.Close() | ||
|
||
opts := &vtaclcheck.Options{ | ||
ACLFile: aclFile, | ||
StaticAuthFile: staticAuthFile, | ||
} | ||
|
||
if err := vtaclcheck.Init(opts); err != nil { | ||
return err | ||
} | ||
|
||
return vtaclcheck.Run() | ||
} | ||
|
||
func init() { | ||
servenv.MoveFlagsToCobraCommand(Main) | ||
|
||
Main.Flags().StringVar(&aclFile, "acl-file", aclFile, "The path of the JSON ACL file to check") | ||
Main.Flags().StringVar(&staticAuthFile, "static-auth-file", staticAuthFile, "The path of the auth_server_static JSON file to check") | ||
|
||
acl.RegisterFlags(Main.Flags()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* | ||
Copyright 2023 The Vitess Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package main | ||
|
||
import ( | ||
"github.com/spf13/cobra" | ||
|
||
"vitess.io/vitess/go/cmd/internal/docgen" | ||
"vitess.io/vitess/go/cmd/vtaclcheck/cli" | ||
) | ||
|
||
func main() { | ||
var dir string | ||
cmd := cobra.Command{ | ||
Use: "docgen [-d <dir>]", | ||
RunE: func(cmd *cobra.Command, args []string) error { | ||
return docgen.GenerateMarkdownTree(cli.Main, dir) | ||
}, | ||
} | ||
|
||
cmd.Flags().StringVarP(&dir, "dir", "d", "doc", "output directory to write documentation") | ||
_ = cmd.Execute() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
Copyright 2023 The Vitess Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package cli | ||
|
||
import "vitess.io/vitess/go/stats/opentsdb" | ||
|
||
// This plugin imports opentsdb to register the opentsdb stats backend. | ||
|
||
func init() { | ||
opentsdb.Init("vtbackup") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.