This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TO DO | |
[TBD] update "device does not contain a message schema" to accept any properties | |
DONE | |
[x] update device detail in forwarder UI (after creation) | |
[x] add mongodb forwarder to Octoblu as first class | |
[x] add splunk forwarder to Octoblu as first class | |
[x] add elasticsearch forwarder to Octoblu as first class | |
[x] add azsure forwarder to Octoblu as first class | |
[x] remove rocket ship...PETERRRRR!!!!!! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var irc = require('irc'); | |
var config = { | |
server: 'irc.freenode.net', | |
name: 'testBot', | |
channels: '#testRoom' | |
}; | |
var bot = new irc.Client(config.server, config.name, { channels: [config.channels] }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
msg.uuid = 'gateway uuid'; | |
msg.token = 'gateway token'; | |
msg.alternateMethod = 'gatewayConfig'; | |
msg.method = 'createSubdevice'; | |
msg.name = 'lx'; | |
msg.type = 'skynet-lifx'; | |
msg.options = {}; |