summaryrefslogtreecommitdiff
path: root/functions.js
diff options
context:
space:
mode:
Diffstat (limited to 'functions.js')
-rw-r--r--functions.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/functions.js b/functions.js
index f7e298888..59684b023 100644
--- a/functions.js
+++ b/functions.js
@@ -568,11 +568,19 @@ function all_counters_callback() {
return;
}
+ debug("in all_counters_callback");
+
var reply = xmlhttp_rpc.responseXML.firstChild;
var counters = reply.firstChild;
parse_counters(counters);
+
+ var runtime = counters.nextSibling;
+
+ if (runtime) {
+ getMainContext().parse_runtime_info(runtime);
+ }
} catch (e) {
exception_error("all_counters_callback", e);