-
Notifications
You must be signed in to change notification settings - Fork 3
/
bench_test.go
136 lines (111 loc) · 3.76 KB
/
bench_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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
package logger_test
import (
"os"
"testing"
"github.com/hamba/logger/v2"
"github.com/hamba/logger/v2/ctx"
)
func BenchmarkLogger_Logfmt(b *testing.B) {
log := logger.New(discard{}, logger.LogfmtFormat(), logger.Debug)
b.ReportAllocs()
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
log.Error("some message")
}
})
}
func BenchmarkLogger_Json(b *testing.B) {
log := logger.New(discard{}, logger.JSONFormat(), logger.Debug)
b.ReportAllocs()
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
log.Error("some message")
}
})
}
func BenchmarkLogger_LogfmtWriter(b *testing.B) {
log := logger.New(discard{}, logger.LogfmtFormat(), logger.Debug)
w := log.Writer(logger.Info)
p := []byte("some message")
b.ReportAllocs()
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
_, _ = w.Write(p)
}
})
}
func BenchmarkLogger_LogfmtWithTS(b *testing.B) {
log := logger.New(discard{}, logger.LogfmtFormat(), logger.Debug)
cancel := log.WithTimestamp()
defer cancel()
b.ReportAllocs()
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
log.Error("some message")
}
})
}
func BenchmarkLogger_JsonWithTS(b *testing.B) {
log := logger.New(discard{}, logger.JSONFormat(), logger.Debug)
cancel := log.WithTimestamp()
defer cancel()
b.ReportAllocs()
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
log.Error("some message")
}
})
}
func BenchmarkLogger_LogfmtCtx(b *testing.B) {
log := logger.New(discard{}, logger.LogfmtFormat(), logger.Debug).With(ctx.Str("_n", "bench"), ctx.Int("_p", 1))
b.ReportAllocs()
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
log.Error("some message", ctx.Int("key", 1), ctx.Float64("key2", 3.141592), ctx.Str("key3", "string"), ctx.Bool("key4", false))
}
})
}
func BenchmarkLogger_JsonCtx(b *testing.B) {
log := logger.New(discard{}, logger.JSONFormat(), logger.Debug).With(ctx.Str("_n", "bench"), ctx.Int("_p", 1))
b.ReportAllocs()
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
log.Error("some message", ctx.Int("key", 1), ctx.Float64("key2", 3.141592), ctx.Str("key3", "string"), ctx.Bool("key4", false))
}
})
}
func BenchmarkLevelLogger_Logfmt(b *testing.B) {
log := logger.New(discard{}, logger.LogfmtFormat(), logger.Debug).With(ctx.Str("_n", "bench"), ctx.Int("_p", os.Getpid()))
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
log.Debug("debug", ctx.Int("key", 1), ctx.Float64("key2", 3.141592), ctx.Str("key3", "string"), ctx.Bool("key4", false))
log.Info("info", ctx.Int("key", 1), ctx.Float64("key2", 3.141592), ctx.Str("key3", "string"), ctx.Bool("key4", false))
log.Warn("warn", ctx.Int("key", 1), ctx.Float64("key2", 3.141592), ctx.Str("key3", "string"), ctx.Bool("key4", false))
log.Error("error", ctx.Int("key", 1), ctx.Float64("key2", 3.141592), ctx.Str("key3", "string"), ctx.Bool("key4", false))
}
})
}
func BenchmarkLevelLogger_Json(b *testing.B) {
log := logger.New(discard{}, logger.LogfmtFormat(), logger.Debug).With(ctx.Str("_n", "bench"), ctx.Int("_p", os.Getpid()))
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
log.Debug("debug", ctx.Int("key", 1), ctx.Float64("key2", 3.141592), ctx.Str("key3", "string"), ctx.Bool("key4", false))
log.Info("info", ctx.Int("key", 1), ctx.Float64("key2", 3.141592), ctx.Str("key3", "string"), ctx.Bool("key4", false))
log.Warn("warn", ctx.Int("key", 1), ctx.Float64("key2", 3.141592), ctx.Str("key3", "string"), ctx.Bool("key4", false))
log.Error("error", ctx.Int("key", 1), ctx.Float64("key2", 3.141592), ctx.Str("key3", "string"), ctx.Bool("key4", false))
}
})
}
type discard struct{}
func (discard) Write(p []byte) (int, error) {
return len(p), nil
}