1
0
mirror of https://github.com/lxc/incus.git synced 2026-02-05 09:46:19 +01:00

cmd/incus-benchmark: Remove LXD mentions

Signed-off-by: Stéphane Graber <stgraber@stgraber.org>
This commit is contained in:
Stéphane Graber
2023-08-30 00:04:04 -04:00
parent 8f5dffa4a3
commit 5b23f2f96d
2 changed files with 11 additions and 11 deletions

View File

@@ -12,7 +12,7 @@ import (
"github.com/lxc/incus/shared/version"
)
const userConfigKey = "user.lxd-benchmark"
const userConfigKey = "user.incus-benchmark"
// PrintServerInfo prints out information about the server.
func PrintServerInfo(c incus.InstanceServer) error {

View File

@@ -25,7 +25,7 @@ type cmdGlobal struct {
}
func (c *cmdGlobal) Run(cmd *cobra.Command, args []string) error {
// Connect to LXD
// Connect to the daemon
srv, err := incus.ConnectIncusUnix("", nil)
if err != nil {
return err
@@ -79,27 +79,27 @@ func (c *cmdGlobal) Teardown(cmd *cobra.Command, args []string) error {
func main() {
app := &cobra.Command{}
app.Use = "lxd-benchmark"
app.Short = "Benchmark performance of LXD"
app.Use = "incus-benchmark"
app.Short = "Benchmark performance of Incus"
app.Long = `Description:
Benchmark performance of LXD
Benchmark performance of Incus
This tool lets you benchmark various actions on a local LXD daemon.
This tool lets you benchmark various actions on a local Incus daemon.
It can be used just to check how fast a given LXD host is, to
It can be used just to check how fast a given host is, to
compare performance on different servers or for performance tracking
when doing changes to the LXD codebase.
when doing changes to the codebase.
A CSV report can be produced to be consumed by graphing software.
`
app.Example = ` # Spawn 20 containers in batches of 4
lxd-benchmark launch --count 20 --parallel 4
incus-benchmark launch --count 20 --parallel 4
# Create 50 Alpine containers in batches of 10
lxd-benchmark init --count 50 --parallel 10 images:alpine/edge
incus-benchmark init --count 50 --parallel 10 images:alpine/edge
# Delete all test containers using dynamic batch size
lxd-benchmark delete`
incus-benchmark delete`
app.SilenceUsage = true
app.CompletionOptions = cobra.CompletionOptions{DisableDefaultCmd: true}