blob: 7ff5e273caccf915a752c699db8e25d2b3aed839 [file] [log] [blame]
package cmd
import (
"fmt"
"os"
"github.com/spf13/cobra"
)
// rootCmd represents the base command when called without any subcommands
var rootCmd = &cobra.Command{
Use: "perfserver",
Short: "The main Perf application.",
Long: `The main Perf application.
The different parts of Perf are run as sub-commands, for example
to run the ingestion process:
perfserver ingest --config=instance_config.json ...
`,
}
// Execute adds all child commands to the root command and sets flags appropriately.
// This is called by main.main(). It only needs to happen once to the rootCmd.
func Execute() {
if err := initSubCommands(); err != nil {
fmt.Println(err)
os.Exit(1)
}
if err := rootCmd.Execute(); err != nil {
fmt.Println(err)
os.Exit(1)
}
}
func initSubCommands() error {
clusterInit()
if err := ingestInit(); err != nil {
return err
}
frontendInit()
return nil
}