File tree 3 files changed +15
-1
lines changed
3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Journal.d plugin
2
2
@introduction
3
3
4
+ ### Warning
5
+
6
+ ** Important:** If the ` journalctl ` process is stopped or killed, the ` file.d ` application will also be stopped.
7
+
4
8
### Config params
5
9
@config-params |description
Original file line number Diff line number Diff line change 1
1
# Journal.d plugin
2
2
Reads ` journalctl ` output.
3
3
4
+ ### Warning
5
+
6
+ ** Important:** If the ` journalctl ` process is stopped or killed, the ` file.d ` application will also be stopped.
7
+
4
8
### Config params
5
9
** ` offsets_file ` ** * ` string ` * * ` required ` *
6
10
Original file line number Diff line number Diff line change 7
7
"io"
8
8
"os/exec"
9
9
"strings"
10
+ "syscall"
10
11
11
12
"github.com/prometheus/client_golang/prometheus"
12
13
"go.uber.org/zap"
@@ -94,10 +95,15 @@ func (r *journalReader) start() error {
94
95
}
95
96
96
97
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
+ }()
97
103
98
104
return nil
99
105
}
100
106
101
107
func (r * journalReader ) stop () error {
102
- return r .cmd .Process .Kill ( )
108
+ return r .cmd .Process .Signal ( syscall . SIGTERM )
103
109
}
You can’t perform that action at this time.
0 commit comments