From 29221dcb911b127770074d47583a85542b8b2936 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Sun, 5 May 2013 18:18:18 -0700 Subject: query: added actor depth stat --- python/gras/query/chart_total_io_counts.js | 3 +++ 1 file changed, 3 insertions(+) (limited to 'python') diff --git a/python/gras/query/chart_total_io_counts.js b/python/gras/query/chart_total_io_counts.js index 2aa8a84..597de71 100644 --- a/python/gras/query/chart_total_io_counts.js +++ b/python/gras/query/chart_total_io_counts.js @@ -65,4 +65,7 @@ GrasChartTotalIoCounts.prototype.update = function(point) } }); }); + + var actor_depth = block_data.actor_queue_depth; + if (actor_depth > 1) make_entry('Actor depth', actor_depth.toString() + ' msgs'); } -- cgit