diff options
author | Josh Blum | 2013-05-05 18:18:18 -0700 |
---|---|---|
committer | Josh Blum | 2013-05-05 18:18:18 -0700 |
commit | 29221dcb911b127770074d47583a85542b8b2936 (patch) | |
tree | 74eb4c786e3b48f964b1733059f5fe3a56656615 /python | |
parent | 07dad29e258c229e810a449ac0d6ba4d9fc7e1d6 (diff) | |
download | sandhi-29221dcb911b127770074d47583a85542b8b2936.tar.gz sandhi-29221dcb911b127770074d47583a85542b8b2936.tar.bz2 sandhi-29221dcb911b127770074d47583a85542b8b2936.zip |
query: added actor depth stat
Diffstat (limited to 'python')
-rw-r--r-- | python/gras/query/chart_total_io_counts.js | 3 |
1 files changed, 3 insertions, 0 deletions
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'); } |