summaryrefslogtreecommitdiff
path: root/htroot/js
diff options
context:
space:
mode:
authorMichael Peter Christen <mc@yacy.net>2013-11-16 08:23:42 +0100
committerMichael Peter Christen <mc@yacy.net>2013-11-16 08:23:42 +0100
commitfceac8cffd3a7f5ba077a9142676c43e2c8fd2fd (patch)
treed80532eff81c292cd88470e6a3f9df9738654227 /htroot/js
parent6842783761021b6dafe33c42a58f284256a1aae0 (diff)
more monitoring for postprocessing
Diffstat (limited to 'htroot/js')
-rw-r--r--htroot/js/Crawler.js9
1 files changed, 8 insertions, 1 deletions
diff --git a/htroot/js/Crawler.js b/htroot/js/Crawler.js
index c7b085594..0d20138db 100644
--- a/htroot/js/Crawler.js
+++ b/htroot/js/Crawler.js
@@ -93,17 +93,24 @@ function handleStatus(){
urlpublictextSegmentCount=getValue(getFirstChild(dbsize, "urlpublictextSegmentCount"));
webgraph=getValue(getFirstChild(dbsize, "webgraph"));
webgraphSegmentCount=getValue(getFirstChild(dbsize, "webgraphSegmentCount"));
+ citation=getValue(getFirstChild(dbsize, "citation"));
+ citationSegmentCount=getValue(getFirstChild(dbsize, "citationSegmentCount"));
rwipublictext=getValue(getFirstChild(dbsize, "rwipublictext"));
rwipublictextSegmentCount=getValue(getFirstChild(dbsize, "rwipublictextSegmentCount"));
document.getElementById("urlpublictextSize").firstChild.nodeValue=urlpublictext;
document.getElementById("urlpublictextSegmentCount").firstChild.nodeValue=urlpublictextSegmentCount;
document.getElementById("webgraphSize").firstChild.nodeValue=webgraph;
document.getElementById("webgraphSegmentCount").firstChild.nodeValue=webgraphSegmentCount;
+ document.getElementById("citationSize").firstChild.nodeValue=citation;
+ document.getElementById("citationSegmentCount").firstChild.nodeValue=citationSegmentCount;
document.getElementById("rwipublictextSize").firstChild.nodeValue=rwipublictext;
document.getElementById("rwipublictextSegmentCount").firstChild.nodeValue=rwipublictextSegmentCount;
postprocessing=getFirstChild(statusTag, "postprocessing");
- document.getElementById("postprocessing").firstChild.nodeValue=getValue(getFirstChild(postprocessing, "status"));
+ document.getElementById("postprocessing_status").firstChild.nodeValue=getValue(getFirstChild(postprocessing, "status"));
+ document.getElementById("postprocessing_collection").firstChild.nodeValue="collection: " + getValue(getFirstChild(postprocessing, "collectionRemainingCount"));
+ document.getElementById("postprocessing_webgraph").firstChild.nodeValue="webgraph: " + getValue(getFirstChild(postprocessing, "webgraphRemainingCount"));
+ document.getElementById("postprocessing_time").firstChild.nodeValue="";
load=getFirstChild(statusTag, "load");
document.getElementById("load").firstChild.nodeValue=getValue(load);