forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
add_locale.go
103 lines (84 loc) · 1.93 KB
/
add_locale.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package add_locale
import (
"fmt"
"strings"
"time"
"github.com/pkg/errors"
"github.com/elastic/beats/libbeat/beat"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/processors"
)
type addLocale struct {
TimezoneFormat TimezoneFormat
}
// TimezoneFormat type
type TimezoneFormat int
// Timezone formats
const (
Abbreviation TimezoneFormat = iota
Offset
)
var timezoneFormats = map[TimezoneFormat]string{
Abbreviation: "abbreviation",
Offset: "offset",
}
func (t TimezoneFormat) String() string {
return timezoneFormats[t]
}
func init() {
processors.RegisterPlugin("add_locale", newAddLocale)
}
func newAddLocale(c *common.Config) (processors.Processor, error) {
config := struct {
Format string `config:"format"`
}{
Format: "offset",
}
err := c.Unpack(&config)
if err != nil {
return nil, errors.Wrap(err, "fail to unpack the add_locale configuration")
}
var loc addLocale
switch strings.ToLower(config.Format) {
case "abbreviation":
loc.TimezoneFormat = Abbreviation
case "offset":
loc.TimezoneFormat = Offset
default:
return nil, errors.Errorf("'%s' is not a valid format option for the "+
"add_locale processor. Valid options are 'abbreviation' and 'offset'.",
config.Format)
}
return loc, nil
}
func (l addLocale) Run(event *beat.Event) (*beat.Event, error) {
zone, offset := time.Now().Zone()
format := l.Format(zone, offset)
event.PutValue("beat.timezone", format)
return event, nil
}
const (
sec = 1
min = 60 * sec
hour = 60 * min
)
func (l addLocale) Format(zone string, offset int) string {
var ft string
switch l.TimezoneFormat {
case Abbreviation:
ft = zone
case Offset:
sign := "+"
if offset < 0 {
sign = "-"
offset *= -1
}
h := offset / hour
m := (offset - (h * hour)) / min
ft = fmt.Sprintf("%s%02d:%02d", sign, h, m)
}
return ft
}
func (l addLocale) String() string {
return "add_locale=[format=" + l.TimezoneFormat.String() + "]"
}