diff options
author | Noah Eisen <ncteisen@gmail.com> | 2017-07-13 09:29:28 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-13 09:29:28 -0700 |
commit | 4ea19235d72404c9fb56fcf155f7fbf8ea8ec37e (patch) | |
tree | 69a292a49440ffa2ef336a7abd66c93296dd3d4f /doc | |
parent | c571a8abc4af5bcaa182afeb3d695d8b14c90dc8 (diff) | |
parent | 05dbac6b39ffd1b2df1af0f361e029884dc0bfb7 (diff) |
Merge pull request #11727 from ncteisen/the-tracers-become-self-aware
The Tracers Become Self Aware
Diffstat (limited to 'doc')
-rw-r--r-- | doc/environment_variables.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/environment_variables.md b/doc/environment_variables.md index 339b705252..a283a5ab00 100644 --- a/doc/environment_variables.md +++ b/doc/environment_variables.md @@ -54,12 +54,14 @@ some configuration as environment variables that can be set. - op_failure - traces error information when failure is pushed onto a completion queue - round_robin - traces the round_robin load balancing policy + - resource_quota - trace resource quota objects internals - glb - traces the grpclb load balancer - queue_pluck - queue_timeout - server_channel - lightweight trace of significant server channel events - secure_endpoint - traces bytes flowing through encrypted channels - timer - timers (alarms) in the grpc internals + - timer_check - more detailed trace of timer logic in grpc internals - transport_security - traces metadata about secure channel establishment - tcp - traces bytes in and out of a channel @@ -83,6 +85,11 @@ some configuration as environment variables that can be set. 'all' can additionally be used to turn all traces on. Individual traces can be disabled by prefixing them with '-'. + 'refcount' will turn on all of the tracers for refcount debugging. + + if 'list_tracers' is present, then all of the available tracers will be + printed when the program starts up. + Example: export GRPC_TRACE=all,-pending_tags |