This repository was archived by the owner on Apr 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 525
/
Copy pathlog_output.go
67 lines (58 loc) · 1.53 KB
/
log_output.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/***** BEGIN LICENSE BLOCK *****
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
#
# The Initial Developer of the Original Code is the Mozilla Foundation.
# Portions created by the Initial Developer are Copyright (C) 2012-2015
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
# Rob Miller ([email protected])
# Mike Trinkala ([email protected])
#
# ***** END LICENSE BLOCK *****/
package plugins
import (
"errors"
"fmt"
"log"
"os"
. "github.com/mozilla-services/heka/pipeline"
)
var logOut = log.New(os.Stdout, "", log.LstdFlags)
// Output plugin that writes message contents out using Go standard library's
// `log` package.
type LogOutput struct {
or OutputRunner
}
func (self *LogOutput) Init(config interface{}) (err error) {
logOut.SetFlags(LogInfo.Flags())
return err
}
func (self *LogOutput) Run(or OutputRunner, h PluginHelper) (err error) {
if or.Encoder() == nil {
return errors.New("Encoder required.")
}
inChan := or.InChan()
var (
pack *PipelinePack
outBytes []byte
e error
)
for pack = range inChan {
if outBytes, e = or.Encode(pack); e != nil {
or.LogError(fmt.Errorf("Error encoding message: %s", e))
} else if outBytes != nil {
logOut.Print(string(outBytes))
}
or.UpdateCursor(pack.QueueCursor)
pack.Recycle(nil)
}
return
}
func init() {
RegisterPlugin("LogOutput", func() interface{} {
return new(LogOutput)
})
}