runtime: delete netmon

Netmon is not used anymore.

Fixes: #3112

Signed-off-by: bin <bin@hyper.sh>
This commit is contained in:
bin
2021-11-24 15:08:18 +08:00
parent ac058b3897
commit ddc68131df
24 changed files with 2 additions and 1895 deletions

View File

@@ -215,7 +215,6 @@ type RuntimeConfigOptions struct {
KernelParams string
MachineType string
ShimPath string
NetmonPath string
LogPath string
BlockDeviceDriver string
SharedFS string
@@ -237,7 +236,6 @@ type RuntimeConfigOptions struct {
RuntimeDebug bool
RuntimeTrace bool
ShimDebug bool
NetmonDebug bool
AgentDebug bool
AgentTrace bool
EnablePprof bool
@@ -331,10 +329,6 @@ func MakeRuntimeConfigFileData(config RuntimeConfigOptions) string {
enable_debug = ` + strconv.FormatBool(config.AgentDebug) + `
enable_tracing = ` + strconv.FormatBool(config.AgentTrace) + `
[netmon]
path = "` + config.NetmonPath + `"
enable_debug = ` + strconv.FormatBool(config.NetmonDebug) + `
[runtime]
enable_debug = ` + strconv.FormatBool(config.RuntimeDebug) + `
enable_tracing = ` + strconv.FormatBool(config.RuntimeTrace) + `