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.
31 lines
1.2 KiB
31 lines
1.2 KiB
syntax = "proto3"; |
|
|
|
package envoy.extensions.watchdog.profile_action.v3; |
|
|
|
import "google/protobuf/duration.proto"; |
|
|
|
import "udpa/annotations/status.proto"; |
|
import "validate/validate.proto"; |
|
|
|
option java_package = "io.envoyproxy.envoy.extensions.watchdog.profile_action.v3"; |
|
option java_outer_classname = "ProfileActionProto"; |
|
option java_multiple_files = true; |
|
option go_package = "github.com/envoyproxy/go-control-plane/envoy/extensions/watchdog/profile_action/v3;profile_actionv3"; |
|
option (udpa.annotations.file_status).package_version_status = ACTIVE; |
|
|
|
// [#protodoc-title: Watchdog Action that does CPU profiling.] |
|
// [#extension: envoy.watchdog.profile_action] |
|
|
|
// Configuration for the profile watchdog action. |
|
message ProfileActionConfig { |
|
// How long the profile should last. If not set defaults to 5 seconds. |
|
google.protobuf.Duration profile_duration = 1; |
|
|
|
// File path to the directory to output profiles. |
|
string profile_path = 2 [(validate.rules).string = {min_len: 1}]; |
|
|
|
// Limits the max number of profiles that can be generated by this action |
|
// over its lifetime to avoid filling the disk. |
|
// If not set (i.e. it's 0), a default of 10 will be used. |
|
uint64 max_profiles = 3; |
|
}
|
|
|