Skip to content

Commit ac7dd20

Browse files
catch journalctl exit (#754)
1 parent 1f66e4d commit ac7dd20

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed
+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Journal.d plugin
22
@introduction
33

4+
### Warning
5+
6+
**Important:** If the `journalctl` process is stopped or killed, the `file.d` application will also be stopped.
7+
48
### Config params
59
@config-params|description

plugin/input/journalctl/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Journal.d plugin
22
Reads `journalctl` output.
33

4+
### Warning
5+
6+
**Important:** If the `journalctl` process is stopped or killed, the `file.d` application will also be stopped.
7+
48
### Config params
59
**`offsets_file`** *`string`* *`required`*
610

plugin/input/journalctl/reader.go

+7-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77
"io"
88
"os/exec"
99
"strings"
10+
"syscall"
1011

1112
"github.com/prometheus/client_golang/prometheus"
1213
"go.uber.org/zap"
@@ -94,10 +95,15 @@ func (r *journalReader) start() error {
9495
}
9596

9697
go r.readLines(out, r.config)
98+
go func() {
99+
if err := r.cmd.Wait(); err != nil {
100+
r.config.logger.Fatal("journalctl command exited with error", zap.Error(err))
101+
}
102+
}()
97103

98104
return nil
99105
}
100106

101107
func (r *journalReader) stop() error {
102-
return r.cmd.Process.Kill()
108+
return r.cmd.Process.Signal(syscall.SIGTERM)
103109
}

0 commit comments

Comments
 (0)