Documentation
¶
Overview ¶
Copyright © 2023 NAME HERE <EMAIL ADDRESS>
Copyright © 2023 NAME HERE <EMAIL ADDRESS>
Copyright © 2023 NAME HERE <EMAIL ADDRESS>
Copyright © 2023 NAME HERE <EMAIL ADDRESS>
Copyright © 2023 NAME HERE <EMAIL ADDRESS>
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var GetConfigDataCmd = &cobra.Command{ Use: "getConfigData", Short: "A brief description of your command", Long: ``, Run: func(cmd *cobra.Command, args []string) { authFlag := authenticater.ChildCommandAuth(cmd) function, _ := cmd.Flags().GetString("function") if authFlag { controllers.LambdaDetails(function, authenticater.ClientAuth) } }, }
GetConfigDataCmd represents the getConfigData command
View Source
var GetDetailOfErrorCmd = &cobra.Command{ Use: "errorDetail", Short: "to get details of error in lambda", Long: ``, Run: func(cmd *cobra.Command, args []string) { authFlag := authenticater.ChildCommandAuth(cmd) function, _ := cmd.Flags().GetString("function") if authFlag { controllers.LambdaDetailsErrorController(function, authenticater.ClientAuth) } }, }
getConfigDataCmd represents the getConfigData command
View Source
var GetLatencyCmd = &cobra.Command{ Use: "latency", Short: "to get latency of lambda function", Long: ``, Run: func(cmd *cobra.Command, args []string) { authFlag := authenticater.ChildCommandAuth(cmd) function, _ := cmd.Flags().GetString("function") startTime, _ := cmd.Flags().GetString("startTime") endTime, _ := cmd.Flags().GetString("endTime") if authFlag { controllers.GetLambadaLatencyTimeController(function, startTime, endTime, authenticater.ClientAuth) } }, }
getConfigDataCmd represents the getConfigData command
View Source
var GetNumberOfErrorCmd = &cobra.Command{ Use: "errorCount", Short: "to total number of errors", Long: ``, Run: func(cmd *cobra.Command, args []string) { authFlag := authenticater.ChildCommandAuth(cmd) function, _ := cmd.Flags().GetString("function") if authFlag { controllers.LambdaGetNumberOfErrorController(function, authenticater.ClientAuth) } }, }
getConfigDataCmd represents the getConfigData command
View Source
var GetTotalNumberOfLambdaCmd = &cobra.Command{ Use: "totalCount", Short: "gets total number of lambdas present in aws account", Long: ``, Run: func(cmd *cobra.Command, args []string) { authFlag := authenticater.ChildCommandAuth(cmd) if authFlag { controllers.LambdaGetTotalNumberOfLambda(authenticater.ClientAuth) } }, }
GetTotalNumberOfLambdaCmd represents the number command
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.