aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Alistair Veitch <alistair.veitch@gmail.com>2015-12-08 08:56:21 -0800
committerGravatar Alistair Veitch <alistair.veitch@gmail.com>2015-12-08 08:56:21 -0800
commitf6beacf012aa995de14a4e66a87c91edfb2a963e (patch)
treeaff506cbcb813a0c8e71118a6097a27f4ea90250
parent8f3a2406f2f37aaeaa61438361b7d4594fe2e3ab (diff)
parente1d472f18a4fa4b1ba872a9ba7bcd7af30d9d61e (diff)
Merge pull request #4329 from maxwell-demon/census_api
Make census_tag_set the only field of census_context
-rw-r--r--src/core/census/context.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/core/census/context.h b/src/core/census/context.h
index d9907d4da7..e45409a6b8 100644
--- a/src/core/census/context.h
+++ b/src/core/census/context.h
@@ -39,11 +39,7 @@
/* census_context is the in-memory representation of information needed to
* maintain tracing, RPC statistics and resource usage information. */
struct census_context {
- gpr_uint64 op_id; /* Operation identifier - unique per-context */
- gpr_uint64 trace_id; /* Globally unique trace identifier */
- /* TODO(aveitch) Add census tags:
- const census_tag_set *tags;
- */
+ census_tag_set *tags; /* Opaque data structure for census tags. */
};
#endif /* GRPC_INTERNAL_CORE_CENSUS_CONTEXT_H */