package
Version:
v0.21.1
Opens a new window with list of versions in this module.
Published: Nov 4, 2024
License: Apache-2.0
Opens a new window with license information.
Imports: 11
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
View Source
var ListCmd = &cobra.Command{
Use: "list",
Aliases: []string{"ls"},
Short: "List all dataset statistics",
Long: `List all dataset statistics. For example:
mim stats list
`,
Run: func(cmd *cobra.Command, args []string) {
fetch(cmd)
},
TraverseChildren: true,
}
View Source
var TopCmd = &cobra.Command{
Use: "top",
Short: "List top 10 dataset statistics",
Long: `List top 10 dataset statistics. For example:
mim stats top
`,
Run: func(cmd *cobra.Command, args []string) {
top(cmd)
},
TraverseChildren: true,
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.