Esempio n. 1
0
def test_tagged_v2_log_add():
    accumulated_histogram = HdrHistogram(LOWEST, HIGHEST, SIGNIFICANT)
    log_reader = HistogramLogReader(TAGGED_V2_LOG, accumulated_histogram)
    while 1:
        decoded_histogram = log_reader.add_next_interval_histogram()
        if not decoded_histogram:
            break