A Node Red node for measuring flow message speed.
Run the following npm command in your Node-RED user directory (typically ~/.node-red):
npm install node-red-contrib-msg-speed
This node will count all messages that arrive at the input port, and calculate the message speed every second.
For example when the frequency is 'minute', it will count all the messages received in the last minute:
A second later, the calculation is repeated: again the messages received in the last minute will be counted.
The measurement interval is like a moving window, that is being moved every second.
The process continues this way, while the moving window is discarding old messages and taking into account new messages:
The message speed will be send to the output port as msg.payload
. This payload could be visualised e.g. in a dashboard graph:
An extra msg.frequency
field is also available (containing 'sec', 'min', 'hour').
The message speed will be displayed as node status, in the flow editor:
[{"id":"a50d24c0.afaf38","type":"function","z":"47b91ceb.38a754","name":"Msg factory","func":"// Repeat the msg every 50 milliseconds\nvar repeatInterval = 50;\n\nvar interval = setInterval(function() {\n var counter = context.get('counter') || 0;\n counter = counter + 1;\n \n node.send({topic: 'mytopic_' + counter});\n \n if(counter >= 3000) {\n clearInterval(interval);\n counter = 0;\n }\n \n context.set('counter', counter);\n \n}, repeatInterval); \n\nreturn null;","outputs":1,"noerr":0,"x":453.76568603515625,"y":435.00000762939453,"wires":[["6e086760.71f778"]]},{"id":"da8aea7d.805558","type":"inject","z":"47b91ceb.38a754","name":"","topic":"","payload":"Start","payloadType":"str","repeat":"","crontab":"","once":false,"x":277.7657165527344,"y":435.00000762939453,"wires":[["a50d24c0.afaf38"]]},{"id":"6e086760.71f778","type":"msg-speed","z":"47b91ceb.38a754","name":"","frequency":"min","estimation":false,"ignore":false,"x":650.765625,"y":434.75,"wires":[["a5677c9a.dd884"]]},{"id":"a5677c9a.dd884","type":"ui_chart","z":"47b91ceb.38a754","name":"Messages per minute","group":"1a7f6b0.0560695","order":7,"width":0,"height":0,"label":"Messages per minute","chartType":"line","legend":"false","xformat":"HH:mm:ss","interpolate":"linear","nodata":"Messages per minute","ymin":"0","ymax":"80","removeOlder":"5","removeOlderPoints":"","removeOlderUnit":"60","cutout":0,"colors":["#1f77b4","#aec7e8","#ff7f0e","#2ca02c","#98df8a","#d62728","#ff9896","#9467bd","#c5b0d5"],"x":868.5312423706055,"y":434.5429382324219,"wires":[[],[]]},{"id":"1a7f6b0.0560695","type":"ui_group","z":"","name":"Performance","tab":"18b10517.00400b","disp":true,"width":"6"},{"id":"18b10517.00400b","type":"ui_tab","z":"","name":"Performance","icon":"show_chart"}]
During the startup period the message count will be displayed orange:
And when 'ignore speed during startup' is active, the node status will indicate this during the startup period:
The speed is being calculated every second. As a result there will be a startup period, when the frequency is minute or hour (respectively a startup period of 60 seconds or 3600 seconds). For example when the speed is 1 message per second, this corresponds to a speed of 60 messages per minute. However during the first minute the speed will be incomplete:
- After the first second, the speed is 1 message per minute
- After the second, the speed is 2 messages per minute
- ...
- After one minute, the speed is 60 messages msg per minute
This means the speed will increase during the startup period, to reach the final value:
The frequency ('second', 'minute', 'hour') defines the interval length of the moving window.
Caution: long intervals (like 'hour') will take more memory to store all the intermediate speed calculations (i.e. one calculation per second).
During the startup period, the calculated speed will be incorrect. When estimation is activated, the final speed will be estimated during the startup period (using linear interpolation). The graph will start from zero immediately to an estimation of the final value:
Caution: estimation is very useful if the message rate is stable. However when the message rate is very unpredictable, the estimation will result in incorrect values. In the latter case it might be advised to enable 'ignore speed during startup'.
During the startup period, the calculated speed will be incorrect. When ignoring speed is activated, no messages will be send on the output port during the startup period. This way it can be avoided that faulty speed values are generated.
Moreover during the startup period no node status would be displayed.
- Trigger an alarm e.g. when the message rate drops to 0 messages per minute.
- Performance measurement, e.g. track the number of images per second (received from a camera).