Skip to content

Commit f076eaf

Browse files
authored
Merge pull request #112 from Random-Liu/cleanup-kmsg-log-watcher
Cleanup kmsg log watcher
2 parents be6c516 + 51351f9 commit f076eaf

File tree

3 files changed

+9
-29
lines changed

3 files changed

+9
-29
lines changed

pkg/systemlogmonitor/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ System log monitor supports different log management tools with different log
4747
watchers:
4848
* [filelog](./logwatchers/filelog): Log watcher for
4949
arbitrary file based log.
50-
* [journald](.//logwatchers/journald): Log watcher for
50+
* [journald](.//logwatchers/journald): Log watcher for journald.
5151
* [kmsg](./logwatchers/kmsg): Log watcher for the kernel ring buffer device, /dev/kmsg.
5252
Set `plugin` in the configuration file to specify log watcher.
5353

@@ -67,7 +67,7 @@ Log watcher specific configurations are configured in `pluginConfig`.
6767
* timestampFormat: The format of the timestamp. The format string is the time
6868
`2006-01-02T15:04:05Z07:00` in the expected format. (See
6969
[golang timestamp format](https://golang.org/pkg/time/#pkg-constants))
70-
* **kmsg**
70+
* **kmsg**: No configuration for now.
7171

7272
### Change Log Path
7373

pkg/systemlogmonitor/logwatchers/kmsg/log_watcher.go

+7-8
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ limitations under the License.
1717
package kmsg
1818

1919
import (
20-
"bufio"
2120
"fmt"
2221
"strings"
2322
"time"
@@ -32,18 +31,16 @@ import (
3231
)
3332

3433
type kernelLogWatcher struct {
35-
cfg types.WatcherConfig
36-
logCh chan *logtypes.Log
37-
tomb *util.Tomb
38-
reader *bufio.Reader
34+
cfg types.WatcherConfig
35+
logCh chan *logtypes.Log
36+
tomb *util.Tomb
3937

4038
kmsgParser kmsgparser.Parser
4139
clock utilclock.Clock
4240
}
4341

4442
// NewKmsgWatcher creates a watcher which will read messages from /dev/kmsg
4543
func NewKmsgWatcher(cfg types.WatcherConfig) types.LogWatcher {
46-
kmsgparser.NewParser()
4744
return &kernelLogWatcher{
4845
cfg: cfg,
4946
tomb: util.NewTomb(),
@@ -92,7 +89,9 @@ func (k *kernelLogWatcher) watchLoop(lookback time.Duration) {
9289
select {
9390
case <-k.tomb.Stopping():
9491
glog.Infof("Stop watching kernel log")
95-
k.kmsgParser.Close()
92+
if err := k.kmsgParser.Close(); err != nil {
93+
glog.Errorf("Failed to close kmsg parser: %v", err)
94+
}
9695
return
9796
case msg := <-kmsgs:
9897
glog.V(5).Infof("got kernel message: %+v", msg)
@@ -102,7 +101,7 @@ func (k *kernelLogWatcher) watchLoop(lookback time.Duration) {
102101

103102
// Discard too old messages
104103
if k.clock.Since(msg.Timestamp) > lookback {
105-
glog.V(5).Infof("throwing away msg %v for being too old: %v > %v", msg.Message, msg.Timestamp.String(), lookback.String())
104+
glog.V(5).Infof("Throwing away msg %v for being too old: %v > %v", msg.Message, msg.Timestamp.String(), lookback.String())
106105
continue
107106
}
108107

pkg/systemlogmonitor/logwatchers/kmsg/log_watcher_test.go

-19
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ limitations under the License.
1717
package kmsg
1818

1919
import (
20-
"io"
2120
"testing"
2221

2322
"code.cloudfoundry.org/clock/fakeclock"
@@ -140,21 +139,3 @@ func TestWatch(t *testing.T) {
140139
}
141140
}
142141
}
143-
144-
type fakeKmsgReader struct {
145-
logLines []string
146-
}
147-
148-
func (r *fakeKmsgReader) Read(data []byte) (int, error) {
149-
if len(r.logLines) == 0 {
150-
return 0, io.EOF
151-
}
152-
l := r.logLines[0]
153-
r.logLines = r.logLines[1:]
154-
copy(data, []byte(l))
155-
return len(l), nil
156-
}
157-
158-
func (r *fakeKmsgReader) Close() error {
159-
return nil
160-
}

0 commit comments

Comments
 (0)