histogramHelper.cs
550 Bytes
using System;
using System.Collections.Generic;
using System.Text;
using HdrHistogram;
namespace Google.Cloud.Bigtable.ScanTest
{
class histogramHelper
{
public static LongConcurrentHistogram ScanResponseHistogram = new LongConcurrentHistogram(3, TimeStamp.Hours(1), 3); // ticks
public static LongConcurrentHistogram ThroughputHistogram = new LongConcurrentHistogram(3, TimeStamp.Hours(1), 3);
public static LongConcurrentHistogram LoadHistogram = new LongConcurrentHistogram(3, TimeStamp.Hours(1), 3);
}
}