Skip to content

Commit e128038

Browse files
committed
feat: remove http-input and grpc-input plugin configurations and their corresponding YAML file.
1 parent 3c7080f commit e128038

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

installer/docker/plugins.go

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,6 @@ func SetPluginsConfigs(conf *config.Config, stack *StackConfig) error {
4848
Order: []string{"com.utmstack.alerts", "com.utmstack.soc-ai"},
4949
}
5050

51-
inputPipeline := PluginsConfig{}
52-
inputPipeline.Plugins = make(map[string]PluginConfig)
53-
inputPipeline.Plugins["http-input"] = PluginConfig{
54-
Port: 8082,
55-
}
56-
inputPipeline.Plugins["grpc-input"] = PluginConfig{
57-
Port: 8083,
58-
}
59-
6051
notificationPipeline := PluginsConfig{}
6152
notificationPipeline.Plugins = make(map[string]PluginConfig)
6253
notificationPipeline.Plugins["notification"] = PluginConfig{
@@ -103,11 +94,6 @@ func SetPluginsConfigs(conf *config.Config, stack *StackConfig) error {
10394
return fmt.Errorf("error writing correlation pipeline config: %w", err)
10495
}
10596

106-
err = utils.WriteYAML(filepath.Join(pipelineDir, "system_plugins_input.yaml"), inputPipeline)
107-
if err != nil {
108-
return fmt.Errorf("error writing input pipeline config: %w", err)
109-
}
110-
11197
err = utils.WriteYAML(filepath.Join(pipelineDir, "system_plugins_notification.yaml"), notificationPipeline)
11298
if err != nil {
11399
return fmt.Errorf("error writing notification pipeline config: %w", err)

0 commit comments

Comments
 (0)