Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var DashboardTypeIds = map[DashboardType][]string{ NoneDashboardType: {"None"}, SpecifiedUser: {"SpecifiedUser"}, LoggedInUser: {"LoggedInUser"}, MyTeamUser: {"MyTeamUser"}, }
View Source
var EditCmd = &cobra.Command{ Use: "edit [flags] [filename]...", Short: "Edit dashboard", Long: "Edit dashboard", Args: cobra.MinimumNArgs(1), Run: func(cmd *cobra.Command, args []string) { for _, file := range args { updateDashboard(file) } }, }
View Source
var ReportsCmd = &cobra.Command{
Use: "reports",
Short: "Manage reports used by dashboard",
}
Functions ¶
This section is empty.
Types ¶
type DashboardType ¶
const ( NoneDashboardType DashboardType = iota SpecifiedUser LoggedInUser MyTeamUser )
Click to show internal directories.
Click to hide internal directories.