aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/grpc/census.h
diff options
context:
space:
mode:
authorGravatar Alistair Veitch <aveitch@google.com>2015-08-31 08:30:32 -0700
committerGravatar Alistair Veitch <aveitch@google.com>2015-08-31 08:30:32 -0700
commita24148ea383fbb508e4f8ca76837560322d87b8b (patch)
tree9a702fbbf721415769ba56043468f5a52e430e9c /include/grpc/census.h
parent8f691e6c947092da9c046b451f7666fc981fae8f (diff)
change aggregation type names
Diffstat (limited to 'include/grpc/census.h')
-rw-r--r--include/grpc/census.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/include/grpc/census.h b/include/grpc/census.h
index f01c8e30bf..d1486a32d3 100644
--- a/include/grpc/census.h
+++ b/include/grpc/census.h
@@ -216,21 +216,21 @@ typedef struct {
debugging only. Returns the number of bytes added to buffer (a value == n
implies the buffer was of insufficient size). */
size_t (*print)(const void *aggregation, char *buffer, size_t n);
-} census_aggregation;
+} census_aggregation_ops;
/* Predefined aggregation types. */
-extern census_aggregation census_agg_scalar;
-extern census_aggregation census_agg_distribution;
-extern census_aggregation census_agg_histogram;
-extern census_aggregation census_agg_window;
+extern census_aggregation_ops census_agg_scalar;
+extern census_aggregation_ops census_agg_distribution;
+extern census_aggregation_ops census_agg_histogram;
+extern census_aggregation_ops census_agg_window;
/** Information needed to instantiate a new aggregation. Used in view
construction via census_define_view(). */
typedef struct {
- const census_aggregation *aggregation;
+ const census_aggregation_ops *ops;
const void
*create_arg; /* Argument to be used for aggregation initialization. */
-} census_aggregation_descriptor;
+} census_aggregation;
/** A census view type. Opaque. */
typedef struct census_view census_view;
@@ -243,9 +243,10 @@ typedef struct census_view census_view;
@return A new census view
*/
-census_view *census_view_create(
- gpr_uint32 metric_id, const census_tag_set *tags,
- const census_aggregation_descriptor *aggregations, size_t naggregations);
+census_view *census_view_create(gpr_uint32 metric_id,
+ const census_tag_set *tags,
+ const census_aggregation *aggregations,
+ size_t naggregations);
/** Destroy a previously created view. */
void census_view_delete(census_view *view);
@@ -260,8 +261,7 @@ size_t census_view_naggregations(const census_view *view);
const census_tag_set *census_view_tags(const census_view *view);
/** Get aggregation descriptors associated with a view. */
-const census_aggregation_descriptor *census_view_aggregrations(
- const census_view *view);
+const census_aggregation *census_view_aggregrations(const census_view *view);
/** Holds all the aggregation data for a particular view instantiation. Forms
part of the data returned by census_view_data(). */