Merge pull request #2143 from gtardif/extension_cli_metrics

Add extension commands in command metrics
This commit is contained in:
Guillaume Tardif 2022-04-14 16:54:22 +02:00 коммит произвёл GitHub
Родитель 2001d0c4ed f96ef1970c
Коммит 84ba23e928
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -35,7 +35,9 @@ var managementCommands = []string{
"container",
"context",
"create",
"dev",
"ecs",
"extension",
"image",
"imagetools",
"key",
@ -75,6 +77,7 @@ var commands = []string{
"convert",
"cp",
"create",
"debug",
"demote",
"deploy",
"df",
@ -118,6 +121,7 @@ var commands = []string{
"remove",
"rename",
"render",
"reset",
"restart",
"revoke",
"rm",
@ -138,6 +142,7 @@ var commands = []string{
"stop",
"tag",
"top",
"ui-source",
"uninstall",
"unlock",
"unlock-key",

Просмотреть файл

@ -173,6 +173,11 @@ func TestGetCommand(t *testing.T) {
args: []string{"--debug", "compose", "-f", "titi.yaml", "up"},
expected: "compose up",
},
{
name: "extension install myorg/my-extension",
args: []string{"extension", "install", "myorg/my-extension"},
expected: "extension install",
},
}
for _, testCase := range testCases {