-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathzerolog_test.go
83 lines (69 loc) · 1.7 KB
/
zerolog_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
83
package bench
import (
"testing"
"github.com/rs/zerolog"
)
func BenchmarkZerologTextPositive(b *testing.B) {
stream := &blackholeStream{}
logger := zerolog.New(stream).With().Timestamp().Logger()
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
logger.Info().Msg("The quick brown fox jumps over the lazy dog")
}
})
if stream.WriteCount() != uint64(b.N) {
b.Fatalf("Log write count")
}
}
func BenchmarkZerologTextNegative(b *testing.B) {
stream := &blackholeStream{}
logger := zerolog.New(stream).
Level(zerolog.ErrorLevel).
With().Timestamp().Logger()
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
logger.Info().Msg("The quick brown fox jumps over the lazy dog")
}
})
if stream.WriteCount() != uint64(0) {
b.Fatalf("Log write count")
}
}
func BenchmarkZerologJSONNegative(b *testing.B) {
stream := &blackholeStream{}
logger := zerolog.New(stream).
Level(zerolog.ErrorLevel).
With().Timestamp().Logger()
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
logger.Info().
Str("rate", "15").
Int("low", 16).
Float32("high", 123.2).
Msg("The quick brown fox jumps over the lazy dog")
}
})
if stream.WriteCount() != uint64(0) {
b.Fatalf("Log write count")
}
}
func BenchmarkZerologJSONPositive(b *testing.B) {
stream := &blackholeStream{}
logger := zerolog.New(stream).With().Timestamp().Logger()
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
logger.Info().
Str("rate", "15").
Int("low", 16).
Float32("high", 123.2).
Msg("The quick brown fox jumps over the lazy dog")
}
})
if stream.WriteCount() != uint64(b.N) {
b.Fatalf("Log write count")
}
}