private void WriteSmallHistogram(HistogramCounter c, DateTime ts, DimensionSpecification spec, long value)
 {
     c.AddValue(value, spec, ts);
 }
Пример #2
0
 public void TearDown()
 {
     this.counter = null;
     this.dataManager.Dispose();
 }
 public void TearDown()
 {
     this.counter = null;
     this.dataManager.Dispose();
 }
Пример #4
0
 public void SetUp()
 {
     this.dataManager = new DataManager();
     this.counter = this.dataManager.CreateHistogramCounter("/TestCounter", DimensionSet.Empty).Result;
 }
 public void SetUp()
 {
     this.dataManager = new DataManager();
     this.counter     = this.dataManager.CreateHistogramCounter("/TestCounter", DimensionSet.Empty).Result;
 }