Skip to content
Snippets Groups Projects

Saving counters result as monitoring histogram

Merged Valerii Kholoimov requested to merge dev_kholoimov_monitoring_counters_histogram into master
1 file
+ 1
4
Compare changes
  • Side-by-side
  • Inline
@@ -85,10 +85,7 @@ namespace Allen::Monitoring {
m_bins.insert(m_bins.end(), 2, 0.f);
}
void updateBin(int bin_index, float value)
{
m_bins[bin_index + 1] = value;
}
void updateBin(int bin_index, float value) { m_bins[bin_index + 1] = value; }
std::string m_title;
std::vector<float> m_bins;
Loading