diff options
author | Bhasker Hariharan <bhaskerh@google.com> | 2019-05-29 11:30:59 -0700 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2019-05-30 12:07:11 -0700 |
commit | 035a8fa38ed21da2e06db22d3dfd6122610fb856 (patch) | |
tree | 3650d76b5519f5a3e8efdd0c5df039cacc1502ec /runsc/boot/controller.go | |
parent | b52e571a6188ce90b5a13b002753230780119db9 (diff) |
Add support for collecting execution trace to runsc.
Updates #220
PiperOrigin-RevId: 250532302
Diffstat (limited to 'runsc/boot/controller.go')
-rw-r--r-- | runsc/boot/controller.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runsc/boot/controller.go b/runsc/boot/controller.go index f09c1bd85..72ab9ef86 100644 --- a/runsc/boot/controller.go +++ b/runsc/boot/controller.go @@ -101,6 +101,8 @@ const ( StartCPUProfile = "Profile.StartCPUProfile" StopCPUProfile = "Profile.StopCPUProfile" HeapProfile = "Profile.HeapProfile" + StartTrace = "Profile.StartTrace" + StopTrace = "Profile.StopTrace" ) // ControlSocketAddr generates an abstract unix socket name for the given ID. |