我想做某种别名,例如,hubot status应该调用hubot newrelic mehubot gauges for today

我试图做诸如“msg.send” hubot newrelic me“之类的事情,但似乎hubot只是忽略了该消息。

我怎样才能做到这一点?

最佳答案

您可以使用事件使脚本彼此交谈。

 robot.emit 'event', param

 robot.on 'event', (param) ->
   console.log 'received param', param

这是有关它的更多信息:https://leanpub.com/automation-and-monitoring-with-hubot/read#leanpub-auto-cross-script-communication-with-events

关于hubot - 从另一个调用一个命令,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18139733/

10-12 15:45