diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-03-06 01:19:15 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-03-06 01:19:15 +0000 |
commit | 08f51e8ce597aaccefe77528a132a317b3832ba1 (patch) | |
tree | 11f3cf0ba3c440d25861d193334bbe22cb4a1681 /runsc/boot | |
parent | f82f7b6f019af248daa9b03749169261c060c496 (diff) | |
parent | 6367963c14e2d3d35805907a7057a63fc58c30f6 (diff) |
Merge release-20200219.0-109-g6367963 (automated)
Diffstat (limited to 'runsc/boot')
-rw-r--r-- | runsc/boot/controller.go | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/runsc/boot/controller.go b/runsc/boot/controller.go index 17e774e0c..8125d5061 100644 --- a/runsc/boot/controller.go +++ b/runsc/boot/controller.go @@ -101,11 +101,14 @@ const ( // Profiling related commands (see pprof.go for more details). const ( - StartCPUProfile = "Profile.StartCPUProfile" - StopCPUProfile = "Profile.StopCPUProfile" - HeapProfile = "Profile.HeapProfile" - StartTrace = "Profile.StartTrace" - StopTrace = "Profile.StopTrace" + StartCPUProfile = "Profile.StartCPUProfile" + StopCPUProfile = "Profile.StopCPUProfile" + HeapProfile = "Profile.HeapProfile" + GoroutineProfile = "Profile.GoroutineProfile" + BlockProfile = "Profile.BlockProfile" + MutexProfile = "Profile.MutexProfile" + StartTrace = "Profile.StartTrace" + StopTrace = "Profile.StopTrace" ) // Logging related commands (see logging.go for more details). |