-
Notifications
You must be signed in to change notification settings - Fork 3
/
plugin_test.go
75 lines (64 loc) · 1.35 KB
/
plugin_test.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
package throttleplugin
import (
"fmt"
"math/rand"
"strings"
"testing"
"github.com/elastic/beats/libbeat/beat"
"github.com/elastic/beats/libbeat/common"
"github.com/stretchr/testify/assert"
)
var config = `---
metric_name: %metric%
policy_update_interval: 60m
labels:
-
from: input.rrrr
to: input
-
from: host.name
to: host`
func getConfig() []byte {
name := fmt.Sprintf("metric_%v", rand.Int63())
cfg := strings.Replace(config, "%metric%", name, -1)
return []byte(cfg)
}
func TestConfig_GetMetricLabels(t *testing.T) {
c := Config{
MetricLabels: []LabelMapping{
{"from_1", "to_1"},
{"from_2", "to_2"},
{"from_3", "to_3"},
},
}
assert.Equal(t, []string{"to_1", "to_2", "to_3"}, c.GetMetricLabels())
}
func TestConfig_GetFields(t *testing.T) {
c := Config{
MetricLabels: []LabelMapping{
{"from_1", "to_1"},
{"from_2", "to_2"},
{"from_3", "to_3"},
},
}
assert.Equal(t, []string{"from_1", "from_2", "from_3"}, c.GetFields())
}
func BenchmarkRun(b *testing.B) {
cfg, err := common.NewConfigWithYAML(getConfig(), "test")
if err != nil {
b.Fatal(err)
}
mp, err := newProcessor(cfg)
if err != nil {
b.Fatal(err)
}
defer mp.Close()
event := &beat.Event{
Fields: common.MapStr{},
}
event.PutValue("input.type", "foo")
event.PutValue("host.name", "bar")
for i := 0; i < b.N; i++ {
mp.Run(event)
}
}