diff options
author | Josh Blum | 2013-03-25 02:39:08 -0500 |
---|---|---|
committer | Josh Blum | 2013-03-25 02:39:08 -0500 |
commit | a23b425c689ac66cd4d6e986b8a4292e19fc9710 (patch) | |
tree | 8d98021148e0463a9bc025d1d1be6f8956f0d1dd /lib/top_block_stats.cpp | |
parent | 8cd3da02902c7071284d268b535f6fdf58bb8c3f (diff) | |
parent | 03782249b936ec973537b305e40b3db360e6f93a (diff) | |
download | sandhi-a23b425c689ac66cd4d6e986b8a4292e19fc9710.tar.gz sandhi-a23b425c689ac66cd4d6e986b8a4292e19fc9710.tar.bz2 sandhi-a23b425c689ac66cd4d6e986b8a4292e19fc9710.zip |
Merge branch 'chart_factory'
completes #55
Diffstat (limited to 'lib/top_block_stats.cpp')
-rw-r--r-- | lib/top_block_stats.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/top_block_stats.cpp b/lib/top_block_stats.cpp index e5fd96d..04fc7ae 100644 --- a/lib/top_block_stats.cpp +++ b/lib/top_block_stats.cpp @@ -45,6 +45,7 @@ std::string TopBlock::get_stats(const std::string &) std::string block_xml; block_xml += str(boost::format(" <tps>%llu</tps>\n") % time_tps()); block_xml += str(boost::format(" <stats_time>%llu</stats_time>\n") % message.stats_time); + block_xml += str(boost::format(" <init_time>%llu</init_time>\n") % stats.init_time); block_xml += str(boost::format(" <start_time>%llu</start_time>\n") % stats.start_time); block_xml += str(boost::format(" <stop_time>%llu</stop_time>\n") % stats.stop_time); block_xml += str(boost::format(" <work_count>%llu</work_count>\n") % stats.work_count); |