Add DisableCgroupIdResolution field to MiscConfig struct

This commit is contained in:
M. Mert Yildiran
2024-05-25 05:18:41 +03:00
parent af2086a54d
commit c2b73025f3
4 changed files with 10 additions and 3 deletions

View File

@@ -154,6 +154,7 @@ type MiscConfig struct {
TrafficSampleRate int `yaml:"trafficSampleRate" json:"trafficSampleRate" default:"100"`
TcpStreamChannelTimeoutMs int `yaml:"tcpStreamChannelTimeoutMs" json:"tcpStreamChannelTimeoutMs" default:"10000"`
TcpStreamChannelTimeoutShow bool `yaml:"tcpStreamChannelTimeoutShow" json:"tcpStreamChannelTimeoutShow" default:"false"`
DisableCgroupIdResolution bool `yaml:"disableCgroupIdResolution" json:"disableCgroupIdResolution" default:"false"`
}
type TapConfig struct {