aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/census
diff options
context:
space:
mode:
authorGravatar Alistair Veitch <aveitch@google.com>2015-08-27 16:24:27 -0700
committerGravatar Alistair Veitch <aveitch@google.com>2015-08-27 16:24:27 -0700
commite62f68cebb8a43f880542035ef8b3369ebb46f6b (patch)
tree7fea7d11f45413c50604724698174f4653e5ef79 /src/core/census
parent9a09982e2dd193a91430ba70ed4e446d8d96e363 (diff)
make metric part of view
Diffstat (limited to 'src/core/census')
-rw-r--r--src/core/census/rpc_metric_id.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/census/rpc_metric_id.h b/src/core/census/rpc_metric_id.h
index 2cd30c2fc0..1d8e8806f5 100644
--- a/src/core/census/rpc_metric_id.h
+++ b/src/core/census/rpc_metric_id.h
@@ -36,16 +36,16 @@
/* Metric ID's used for RPC measurements. */
/* Count of client requests sent. */
-#define CENSUS_METRIC_RPC_CLIENT_REQUESTS ((gpr_int32)0)
+#define CENSUS_METRIC_RPC_CLIENT_REQUESTS ((gpr_uint32)0)
/* Count of server requests sent. */
-#define CENSUS_METRIC_RPC_SERVER_REQUESTS ((gpr_int32)1)
+#define CENSUS_METRIC_RPC_SERVER_REQUESTS ((gpr_uint32)1)
/* Client error counts. */
-#define CENSUS_METRIC_RPC_CLIENT_ERRORS ((gpr_int32)2)
+#define CENSUS_METRIC_RPC_CLIENT_ERRORS ((gpr_uint32)2)
/* Server error counts. */
-#define CENSUS_METRIC_RPC_SERVER_ERRORS ((gpr_int32)3)
+#define CENSUS_METRIC_RPC_SERVER_ERRORS ((gpr_uint32)3)
/* Client side request latency. */
-#define CENSUS_METRIC_RPC_CLIENT_LATENCY ((gpr_int32)4)
+#define CENSUS_METRIC_RPC_CLIENT_LATENCY ((gpr_uint32)4)
/* Server side request latency. */
-#define CENSUS_METRIC_RPC_SERVER_LATENCY ((gpr_int32)5)
+#define CENSUS_METRIC_RPC_SERVER_LATENCY ((gpr_uint32)5)
#endif /* CENSUS_RPC_METRIC_ID_H */