You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.1 KiB
27 lines
1.1 KiB
syntax = "proto3"; |
|
|
|
package envoy.watchdog.v3; |
|
|
|
import "google/protobuf/duration.proto"; |
|
|
|
import "udpa/annotations/status.proto"; |
|
|
|
option java_package = "io.envoyproxy.envoy.watchdog.v3"; |
|
option java_outer_classname = "AbortActionProto"; |
|
option java_multiple_files = true; |
|
option go_package = "github.com/envoyproxy/go-control-plane/envoy/watchdog/v3;watchdogv3"; |
|
option (udpa.annotations.file_status).package_version_status = ACTIVE; |
|
|
|
// [#protodoc-title: Watchdog Action that kills a stuck thread to kill the process.] |
|
|
|
// A GuardDogAction that will terminate the process by killing the |
|
// stuck thread. This would allow easier access to the call stack of the stuck |
|
// thread since we would run signal handlers on that thread. By default |
|
// this will be registered to run as the last watchdog action on KILL and |
|
// MULTIKILL events if those are enabled. |
|
message AbortActionConfig { |
|
// How long to wait for the thread to respond to the thread kill function |
|
// before killing the process from this action. This is a blocking action. |
|
// By default this is 5 seconds. |
|
google.protobuf.Duration wait_duration = 1; |
|
}
|
|
|