Skip to content

Commit

Permalink
tracing: Add OpenTracing support
Browse files Browse the repository at this point in the history
Add OpenTracing [1] support using Jaeger [2]. Full details are provided
in `TRACING.md`.

Fixes kata-containers#322.

[1] - https://opentracing.io
[2] - https://jaegertracing.io

Signed-off-by: James O. D. Hunt <[email protected]>
  • Loading branch information
jodh-intel committed Nov 22, 2018
1 parent c884185 commit 4105d69
Show file tree
Hide file tree
Showing 116 changed files with 19,413 additions and 152 deletions.
60 changes: 43 additions & 17 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@
name = "google.golang.org/grpc"
revision = "d11072e7ca9811b1100b80ca0269ac831f06d024"

[[constraint]]
name = "github.com/uber/jaeger-client-go"
version = "2.15.0"

[[override]]
name = "github.com/containerd/console"
revision = "2748ece16665b45a47f884001d5831ec79703880"
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

* [Debug mode](#debug-mode)
* [Developer mode](#developer-mode)
* [Enable trace support](#enable-trace-support)

This project implements an agent called `kata-agent` that runs inside a virtual machine (VM).

Expand All @@ -21,3 +22,7 @@ See the [developer guide](https://github.com/kata-containers/documentation/blob/

Add `agent.devmode` to the guest kernel command line to enable
[debug mode](#debug-mode) and allow the agent process to coredump (disabled by default).

## Enable trace support

See [the tracing guide](TRACING.md).
Loading

0 comments on commit 4105d69

Please sign in to comment.