Skip to content

Commit 689be1a

Browse files
committed
Implemented the health Cheack Feature
1 parent 5941830 commit 689be1a

5 files changed

Lines changed: 1039 additions & 0 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ microcks [command] [flags]
7272
| `import-dir` | Scan a directory and import API spec files. | [`import-dir`](documentation/cmd/importDir.md) |
7373
| `import-url` | Import API spec files directly from a remote URL | [`import-url`](documentation/cmd/importUrl.md) |
7474
| `test` | Run tests against a deployed API using selected runner | [`test`](documentation/cmd/test.md) |
75+
| `health` | Check the health and diagnostics of the Microcks server | [`health`](documentation/cmd/health.md) |
7576
| `version` | Print Microcks CLI version | [`version`](documentation/cmd/version.md) |
7677

7778
### Options

cmd/cmd.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ func NewCommand() *cobra.Command {
4848
command.AddCommand(NewContextCommand(&clientOpts))
4949
command.AddCommand(NewLoginCommand(&clientOpts))
5050
command.AddCommand(NewLogoutCommand(&clientOpts))
51+
command.AddCommand(NewHealthCommand(&clientOpts))
5152

5253
defaultLocalConfigPath, err := config.DefaultLocalConfigPath()
5354
errors.CheckError(err)

0 commit comments

Comments
 (0)