https://github.com/redhataccess/statuspage-controller-irc
IRC plugin for statuspage-controller
https://github.com/redhataccess/statuspage-controller-irc
Last synced: 8 months ago
JSON representation
IRC plugin for statuspage-controller
- Host: GitHub
- URL: https://github.com/redhataccess/statuspage-controller-irc
- Owner: redhataccess
- License: mit
- Created: 2017-06-05T01:46:42.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-05T19:25:54.000Z (about 9 years ago)
- Last Synced: 2025-09-07T08:56:06.190Z (9 months ago)
- Language: JavaScript
- Size: 7.81 KB
- Stars: 1
- Watchers: 23
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# statuspage-controller-irc
IRC plugin for [statuspage-controller](https://github.com/redhataccess/statuspage-controller)
This plugin will broadcast statuspage.io component status updates to IRC channels
Useful if your company hosts an internal IRC server.
## Usage
var StatuspageController = require('statuspage-controller');
var IrcPlugin = require('statuspage-controller-irc');
var plugin_config = {
host: 'irc.host',
nick: 'Statuspage',
prefix: '[test status page]',
channels: [
'#mychannel'
]
};
var spc = new StatuspageController();
spc.addPlugin(new IrcPlugin(plugin_config));
spc.start();