Fix filename typo s/cencus/census/

This commit is contained in:
Brian Goff
2018-10-04 10:09:11 -07:00
parent daa8487670
commit ae49bbfd11
3 changed files with 3 additions and 3 deletions

View File

@@ -9,11 +9,11 @@ Not implemented.
virtual-kubelet uses [OpenCensus](https://www.opencensus.io) to record traces. These traces include requests on the HTTP API as well as the reconciliation loop which reconciles virtual-kubelet pods with what's in the Kubernetes API server.
The granularity of traces may depend on the provider being used.
The granularity of traces may depend on the service provider (e.g. `azure`, `aws`, etc) being used.
### Tracing Exporters
Traces are collected and then exportered to any configured exporter. Built-in exporters currently include:
Traces are collected and then exported to any configured exporter. Built-in exporters currently include:
- `jaeger` - [Jaeger Tracing](https://www.jaegertracing.io), supports configuration through environment variables.
- `JAEGER_ENDPOINT` - Jaeger HTTP Thrift endpoint, e.g. `http://localhost:14268`
@@ -30,6 +30,6 @@ Traces propagated from other services must be propagated using Zipkin's B3 forma
### Tracing Configuration
- `--trace-exporter` - Sets the exporter to use. Multiple exporters can be specified. If this is unset, traces are not exported.
- `--trace-service-name` - Sets the name of the service, defaults to `virtual-kubelet` but can be anything. This value is passee to the exporter purely for display purposes.
- `--trace-service-name` - Sets the name of the service, defaults to `virtual-kubelet` but can be anything. This value is passed to the exporter purely for display purposes.
- `--trace-tag` - Adds tags in a `<key>=<value>` form which is included with collected traces. Think of this like log tags but for traces.
- `--trace-sample-rate` - Sets the probability for traces to be recorded. Traces are considered an expensive operation so you may want to set this to a lower value. Range is a value of 0 to 100 where 0 is never trace and 100 is always trace.