1
0
mirror of https://github.com/kubeshark/kubeshark.git synced 2025-05-03 22:28:33 +00:00

Set reasonable pcapdump defaults. Storage is now at 10% of the Worker's

allocated storage.
This commit is contained in:
Alon Girmonsky 2024-10-08 10:43:42 -07:00
parent b86f80ebd7
commit 1bd8f9b8c5

View File

@ -198,9 +198,9 @@ type MiscConfig struct {
type PcapDumpConfig struct {
PcapDumpEnabled bool `yaml:"enabled" json:"enabled" default:"true"`
PcapTimeInterval string `yaml:"timeInterval" json:"timeInterval" default:"10m"`
PcapTimeInterval string `yaml:"timeInterval" json:"timeInterval" default:"1m"`
PcapMaxTime string `yaml:"maxTime" json:"maxTime" default:"1h"`
PcapMaxSize string `yaml:"maxSize" json:"maxSize" default:"10MB"`
PcapMaxSize string `yaml:"maxSize" json:"maxSize" default:"500MB"`
PcapSrcDir string `yaml:"pcapSrcDir" json:"pcapSrcDir" default:"pcapdump"`
}