aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc/census.h
diff options
context:
space:
mode:
authorGravatar Alistair Veitch <aveitch@google.com>2015-08-31 13:15:00 -0700
committerGravatar Alistair Veitch <aveitch@google.com>2015-08-31 13:15:00 -0700
commitaafe9725b058d3710209bf0c95911928428eb2f2 (patch)
treee43bf894126581ed05a1119520d03cb8bc77fde6 /include/grpc/census.h
parente41d9d5f930bb1ec3fc22a92c6f3604ca7e74575 (diff)
scalar -> sum
Diffstat (limited to 'include/grpc/census.h')
-rw-r--r--include/grpc/census.h4
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;