-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathredis-monitor.js
207 lines (168 loc) · 4.09 KB
/
redis-monitor.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
/*!
* redis-monitor
* Copyright(c) 2012 Daniel D. Shaw <dshaw@dshaw.com>
* MIT Licensed
*/
/**
* Module dependencies.
*/
var util = require('util')
, EventEmitter = require('events').EventEmitter
, redis = require('redis')
, sia = require('socket.io-announce')
, uuid = require('node-uuid')
/**
* Configuration.
*/
var defaults = {
monitor: false
, debug: false
, room: 'rti'
, interval: 10*1000
}
, logger = console
, debug = function noop () {}
/**
* Exports.
*/
module.exports = RedisMonitor
/**
* Redis Monitor
*
* @param options
* @return {RedisMonitor}
* @constructor
*/
function RedisMonitor (options) {
if (!(this instanceof RedisMonitor)) { return new RedisMonitor(options) }
options || (options = {})
Object.keys(defaults).forEach(function (def) {
if (!options[def]) options[def] = defaults[def]
})
if (options.logger) options.logger = require(options.logger)
if (options.debug) debug = console.log
this.options = options
debug(options)
var self = this;
this.waiting = 2 // wait until both the monitorClient and announceClient are ready
this.lastUpdate = null
this.updates = 0
// Realtime info
this.rti = {
name: options.name || 'rti:' + uuid.v4()
, room: options.room
, interval: options.interval
, info: {}
}
// Realtime info methods (exposed for tests)
this.rtim = {
parseChanges: parseChanges
, parseInfo: parseInfo
}
// Client that polls monitored redis instance
this.monitorClient = redis.createClient(options.port, options.host, options)
this.monitorClient.once('ready', function onMCReady () {
debug("monitorClient ready")
self.emit('ready')
})
// Socket.io-Announce
this.announce = sia({
pub: {
port: options.annport || options.port,
host: options.annhost || options.host
}
})
// Socket.io-Announce redis client
this.announceClient = this.announce.pub
this.announceClient.once('ready', function onAnnounceReady () {
debug("announceClient ready")
self.emit('ready')
})
// Apply realtime info info
this.on('rti', function _onRti (rti) {
self.announceClient.set(self.rti.name, JSON.stringify(rti), debug);
self.announceClient.sadd('rti:list', self.rti.name, debug)
self.announce.in(self.rti.room).emit('rti:new', rti)
})
// Announce update deltas
this.on('update', function (update) {
self.announce.in(self.rti.room).emit(self.rti.name+':update', update)
})
// Debug logging
if (options.debug) {
this.on('update', function (update) {
debug('update', update)
})
}
// Polling interval
this.on('ready', function () {
self.waiting--;
if (!self.waiting) {
function getInfo () {
self.monitorClient.info(self._updateInfo.bind(self))
}
getInfo()
self.rti.intervalId = setInterval(getInfo, self.rti.interval)
}
})
}
/**
* Inherits from EventEmitter.
*/
util.inherits(RedisMonitor, EventEmitter);
/**
* Update Info and emit changes.
*
* @param err
* @param infoStr
* @return {*}
* @private
*/
RedisMonitor.prototype._updateInfo = function (err, infoStr) {
if (err) return logger.error(err)
var info = parseInfo(infoStr)
, changes = parseChanges(this.rti.info, info)
this.rti.info = info
if (!this.initialized) {
this.emit('rti', this.rti)
this.initialized = true
this.lastUpdate = Date.now()
this.updates++;
}
if (changes && Object.keys(changes).length) {
this.emit('update', changes)
this.lastUpdate = Date.now()
this.updates++;
}
}
/**
* RTI methods.
*/
/**
* Parse Changes.
*
* @param oldInfo
* @param newInfo
* @return {Object}
*/
function parseChanges (oldInfo, newInfo) {
return Object.keys(newInfo).reduce(function (acc, x) {
if (!oldInfo[x] || oldInfo[x] !== newInfo[x]) {
acc[x] = newInfo[x]
}
return acc
}, {})
}
/**
* Parse node_redis INFO output string.
*
* @param info
* @return {Object}
*/
function parseInfo (info) {
return info.toString().split('\r\n').reduce(function (acc, x) {
var kv = x.split(':')
if (kv[1]) acc[kv[0]] = kv[1]
return acc
}, {})
}