| 1234567891011121314151617181920 | package metricsimport (	"github.com/gravitl/netmaker/cli/functions"	"github.com/spf13/cobra")var metricsAllCmd = &cobra.Command{	Use:   "all",	Args:  cobra.NoArgs,	Short: "Retrieve all metrics",	Long:  `Retrieve all metrics`,	Run: func(cmd *cobra.Command, args []string) {		functions.PrettyPrint(functions.GetAllMetrics())	},}func init() {	rootCmd.AddCommand(metricsAllCmd)}
 |