diff options
author | Alistair Veitch <aveitch@google.com> | 2015-08-31 13:15:00 -0700 |
---|---|---|
committer | Alistair Veitch <aveitch@google.com> | 2015-08-31 13:15:00 -0700 |
commit | aafe9725b058d3710209bf0c95911928428eb2f2 (patch) | |
tree | e43bf894126581ed05a1119520d03cb8bc77fde6 | |
parent | e41d9d5f930bb1ec3fc22a92c6f3604ca7e74575 (diff) |
scalar -> sum
-rw-r--r-- | include/grpc/census.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/grpc/census.h b/include/grpc/census.h index 89eb12a36c..9c0291bf96 100644 --- a/include/grpc/census.h +++ b/include/grpc/census.h @@ -382,7 +382,7 @@ void census_tag_set_close(census_tag_set_iterator *it); /* Core stats collection API's. The following concepts are used: * Aggregation: A collection of values. Census supports the following aggregation types: - Scalar - a single scalar value. Typically used for keeping (e.g.) + Sum - a single summation type. Typically used for keeping (e.g.) counts of events. Distribution - statistical distribution information, used for recording average, standard deviation etc. @@ -439,7 +439,7 @@ typedef struct { } census_aggregation_ops; /* Predefined aggregation types. */ -extern census_aggregation_ops census_agg_scalar; +extern census_aggregation_ops census_agg_sum; extern census_aggregation_ops census_agg_distribution; extern census_aggregation_ops census_agg_histogram; extern census_aggregation_ops census_agg_window; |