gluon-status-page: filter out duplicate events in statistics event stream
Allows simple handling of cached events.
This commit is contained in:
parent
38477d5c0c
commit
5927fd66db
@ -55,7 +55,7 @@ define(["bacon", "lib/helper"], function(Bacon, Helper) {
|
|||||||
|
|
||||||
function statistics(ip) {
|
function statistics(ip) {
|
||||||
var url = Helper.buildUrl(ip, "dyn/statistics")
|
var url = Helper.buildUrl(ip, "dyn/statistics")
|
||||||
return simpleStream(url)
|
return simpleStream(url).skipDuplicates(function (a, b) {return (a.uptime === b.uptime)})
|
||||||
}
|
}
|
||||||
|
|
||||||
return { nodeInfo: nodeInfo
|
return { nodeInfo: nodeInfo
|
||||||
|
Loading…
Reference in New Issue
Block a user