You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update README and API documentation to include new commands
- Modify command examples to reflect service name changes and enhance parameter descriptions for path and query strings.
- Update README and API documentation to include new commands for managing resources and improve usage clarity.
- Update API command documentation and examples to reflect service name changes from 'spider' to 'cb-spider'
- Improve PathParam and QueryString usage instructions.
- Modify related flags descriptions for clarity.
API 명령어 사용 예시 보완 및 문서 보완
For more details about the `api` command, please refer to the [api sub-command guide](https://github.com/cloud-barista/cm-mayfly/blob/main/docs/cm-mayfly-api.md).
228
+
229
+
222
230
## 7. Trouble Shooting
223
231
For some subsystems, including cm-cicada, the order of startup is important. Even if they are marked as healthy, they may not be running correctly.
224
232
For cm-cicada, please check the logs and restart if any errors occur.
apiCmd.PersistentFlags().BoolVarP(&isVerbose, "verbose", "v", false, "Show more detail information")
453
-
apiCmd.PersistentFlags().StringVarP(&pathParam, "pathParam", "p", "", "Variable path info set \"key1:value1 key2:value2\" for URIs")
454
-
apiCmd.PersistentFlags().StringVarP(&queryString, "queryString", "q", "", "Use if you have a query string to add to URIs")
455
+
apiCmd.PersistentFlags().StringVarP(&pathParam, "pathParam", "p", "", "Variable path info set \"key1:value1 key2:value2\" for URIs (separated by space)")
456
+
apiCmd.PersistentFlags().StringVarP(&queryString, "queryString", "q", "", "Query string to add to URIs (format: \"param1=value1\" or \"param1=value1¶m2=value2\")")
455
457
456
458
apiCmd.Flags().BoolVarP(&isListMode, "list", "l", false, "Show Service or Action list")
457
459
apiCmd.PersistentFlags().StringVarP(&sendData, "data", "d", "", "Data to send to the server")
0 commit comments