When bots are active and generate new events - queue numbers on Monitor page should display current state. For some reason in my latest IntelMQ instance this is not happening. I see "waiting" icon, which appear every ~3 seconds, but numbers do not change. No JS errors in a browser console, except missing var.js. Only browser page's refresh helps.
I tried to update IntelMQ to the latest version and create empty var.js file (just in case JS needs it), but it did not help.
So I had to modify js/monitor.js file, replaced:
with
o.next().next().text(count);
As far as I see, table contains 4 colums, but o.next().text(count); is updating the 2'nd column, instead of the 3'rd one, where the actual numbers are.
Is this a bug or I need to enable updating counts somewhere?
When bots are active and generate new events - queue numbers on
Monitorpage should display current state. For some reason in my latest IntelMQ instance this is not happening. I see "waiting" icon, which appear every ~3 seconds, but numbers do not change. No JS errors in a browser console, except missingvar.js. Only browser page's refresh helps.I tried to update IntelMQ to the latest version and create empty
var.jsfile (just in case JS needs it), but it did not help.So I had to modify
js/monitor.jsfile, replaced:with
As far as I see, table contains 4 colums, but
o.next().text(count);is updating the 2'nd column, instead of the 3'rd one, where the actual numbers are.Is this a bug or I need to enable updating counts somewhere?