-
Notifications
You must be signed in to change notification settings - Fork 1
/
fluent_test.go
82 lines (72 loc) · 1.15 KB
/
fluent_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
76
77
78
79
80
81
82
package main
import (
"testing"
)
func TestTCP(t *testing.T) {
test(t, false)
}
func TestScribe(t *testing.T) {
test(t, true)
}
func test(t *testing.T, useScribe bool) {
f := &fluent{}
if useScribe {
if err := f.connectScribe(); err != nil {
t.Fatal(err)
}
} else {
if err := f.connectTCP(); err != nil {
t.Fatal(err)
}
}
defer f.close()
m := &message{
Tag: "tag",
Record: map[string]interface{}{
"key": "blah",
},
}
err := f.sendMessage(m)
if err != nil {
t.Fatal(err)
}
}
func BenchmarkLocalFile(b *testing.B) {
/*
<match local.**>
type file
path /var/log/td-agent/access
</match>
*/
benchmark("local.*", b)
}
func BenchmarkStdout(b *testing.B) {
/*
<match debug.**>
type stdout
</match>
*/
benchmark("debug.*", b)
}
func BenchmarkNoMatch(b *testing.B) {
benchmark("nomatch", b)
}
func benchmark(tag string, b *testing.B) {
f := &fluent{}
if err := f.connectTCP(); err != nil {
b.Fatal(err)
}
defer f.close()
m := &message{
Tag: tag,
Record: map[string]interface{}{
"key": "blah",
},
}
for i := 0; i < b.N; i++ {
err := f.sendMessage(m)
if err != nil {
b.Fatal(err)
}
}
}