Skip to content

Commit 0ec923e

Browse files
committed
update socket name for input plugin
1 parent 217b6a3 commit 0ec923e

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

installer/docker/compose.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,7 @@ func (c *Compose) Populate(conf *config.Config, stack *StackConfig) error {
259259
"8080:8080",
260260
},
261261
Volumes: []string{
262+
utils.MakeDir(0777, stack.EventsEngineWorkdir, "pipeline") + ":/workdir/pipeline",
262263
utils.MakeDir(0777, stack.EventsEngineWorkdir, "logs") + ":/workdir/logs",
263264
utils.MakeDir(0777, stack.EventsEngineWorkdir, "rules") + ":/workdir/rules/utmstack",
264265
stack.Cert + ":/cert",

plugins/inputs/output.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ func sendLog() {
1919
_ = catcher.Error("cannot create socket directory", err, nil)
2020
os.Exit(1)
2121
}
22-
socketFile := socketsFolder.FileJoin("com.utmstack.events_output.sock")
22+
socketFile := socketsFolder.FileJoin("engine_server.sock")
2323

2424
conn, err := grpc.NewClient(fmt.Sprintf("unix://%s", socketFile),
2525
grpc.WithTransportCredentials(insecure.NewCredentials()))

0 commit comments

Comments
 (0)