blob: ccb6b52764e14002b08075877b5ce2245d7c73cc [file] [log] [blame]
Jiri Simsad7616c92015-03-24 23:44:30 -07001// Copyright 2015 The Vanadium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Jungho Ahn58e85b82014-12-01 10:01:02 -08005package stats
6
7import (
8 "bytes"
9 "fmt"
10 "io"
11 "strconv"
12 "strings"
13)
14
15// Print writes textual output of the histogram values.
16func (v HistogramValue) Print(w io.Writer) {
17 avg := float64(v.Sum) / float64(v.Count)
18 fmt.Fprintf(w, "Count: %d Min: %d Max: %d Avg: %.2f\n", v.Count, v.Min, v.Max, avg)
19 fmt.Fprintf(w, "%s\n", strings.Repeat("-", 60))
20 if v.Count <= 0 {
21 return
22 }
23
24 maxBucketDigitLen := len(strconv.FormatInt(v.Buckets[len(v.Buckets)-1].LowBound, 10))
25 if maxBucketDigitLen < 3 {
26 // For "inf".
27 maxBucketDigitLen = 3
28 }
29 maxCountDigitLen := len(strconv.FormatInt(v.Count, 10))
30 percentMulti := 100 / float64(v.Count)
31
32 accCount := int64(0)
33 for i, b := range v.Buckets {
34 fmt.Fprintf(w, "[%*d, ", maxBucketDigitLen, b.LowBound)
35 if i+1 < len(v.Buckets) {
36 fmt.Fprintf(w, "%*d)", maxBucketDigitLen, v.Buckets[i+1].LowBound)
37 } else {
38 fmt.Fprintf(w, "%*s)", maxBucketDigitLen, "inf")
39 }
40
41 accCount += b.Count
42 fmt.Fprintf(w, " %*d %5.1f%% %5.1f%%", maxCountDigitLen, b.Count, float64(b.Count)*percentMulti, float64(accCount)*percentMulti)
43
44 const barScale = 0.1
45 barLength := int(float64(b.Count)*percentMulti*barScale + 0.5)
46 fmt.Fprintf(w, " %s\n", strings.Repeat("#", barLength))
47 }
48}
49
50// String returns the textual output of the histogram values as string.
51func (v HistogramValue) String() string {
52 var b bytes.Buffer
53 v.Print(&b)
54 return b.String()
55}