Skip to content

Commit

Permalink
Update binary_sink.py
Browse files Browse the repository at this point in the history
The VAL_TYPE_MAP is missing 2 types that are now emitted by statsite.
  • Loading branch information
drolando committed Jun 5, 2015
1 parent 0e3ea11 commit 668a2ac
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sinks/binary_sink.py
Expand Up @@ -21,7 +21,7 @@
VAL_TYPE_MAP = {
0: "kv",
1: "sum",
2: "sum sq",
2: "sum_sq",
3: "mean",
4: "count",
5: "stddev",
Expand All @@ -30,6 +30,8 @@
8: "hist_min",
9: "hist_bin",
10: "hist_max",
11: "count_rate",
12: "sample_rate",
128: "percentile"
}
# Pre-compute all the possible percentiles
Expand Down

0 comments on commit 668a2ac

Please sign in to comment.