No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

54 líneas
2.0 KiB

  1. // Copyright 2017, OpenCensus Authors
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. /*
  15. Package trace contains support for OpenCensus distributed tracing.
  16. The following assumes a basic familiarity with OpenCensus concepts.
  17. See http://opencensus.io
  18. Exporting Traces
  19. To export collected tracing data, register at least one exporter. You can use
  20. one of the provided exporters or write your own.
  21. trace.RegisterExporter(exporter)
  22. By default, traces will be sampled relatively rarely. To change the sampling
  23. frequency for your entire program, call ApplyConfig. Use a ProbabilitySampler
  24. to sample a subset of traces, or use AlwaysSample to collect a trace on every run:
  25. trace.ApplyConfig(trace.Config{DefaultSampler: trace.AlwaysSample()})
  26. Be careful about using trace.AlwaysSample in a production application with
  27. significant traffic: a new trace will be started and exported for every request.
  28. Adding Spans to a Trace
  29. A trace consists of a tree of spans. In Go, the current span is carried in a
  30. context.Context.
  31. It is common to want to capture all the activity of a function call in a span. For
  32. this to work, the function must take a context.Context as a parameter. Add these two
  33. lines to the top of the function:
  34. ctx, span := trace.StartSpan(ctx, "example.com/Run")
  35. defer span.End()
  36. StartSpan will create a new top-level span if the context
  37. doesn't contain another span, otherwise it will create a child span.
  38. */
  39. package trace // import "go.opencensus.io/trace"