我有一个将数据上传到Cloudant数据库的Web应用程序。更改事件应触发OpenWhisk / IBM Cloud Functions激活或操作。如何检查OpenWhisk是否被调用,是否有调试机制?我尝试使用仪表板,但可以在命令行中使用某些功能吗?
我正在尝试使用node.js和Docker Action ,因此如果解决方案独立于该 Action 是在node.js,Swift还是Docker容器中,那就太好了。
最佳答案
我在OpenWhisk documentation中找到它:
wsk activation poll
绝招。它将激活日志流式传输到我的shell:
wsk activation poll
Hit Ctrl-C to exit.
Polling for logs
Activation: echo (36e3d136f55d439e8e901b4d8b9dxxxx)
Activation: wordCount (e001309b627c451991f477ab349cxxxx)
2016-03-18T15:10:38.529050288Z stdout: The message 'John says hello to OpenWhisk and the wonderful world of Cloud Computing' has 12 words
关于node.js - 如何检查Openwhisk(IBM Cloud Functions)是否被调用?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36087745/