-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbench_test.go
More file actions
163 lines (134 loc) · 4.5 KB
/
bench_test.go
File metadata and controls
163 lines (134 loc) · 4.5 KB
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
package logger_test
import (
"context"
"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 BenchmarkLogger_WithContext(b *testing.B) {
log := logger.New(discard{}, logger.LogfmtFormat(), logger.Debug)
goCtx := context.Background()
b.ReportAllocs()
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
_ = logger.WithContext(goCtx, log, ctx.Str("req_id", "abc123"), ctx.Int("attempt", 1))
}
})
}
func BenchmarkLogger_FromContext(b *testing.B) {
log := logger.New(discard{}, logger.LogfmtFormat(), logger.Debug).With(ctx.Str("_n", "bench"))
goCtx := logger.WithContext(context.Background(), log, ctx.Str("req_id", "abc123"), ctx.Int("attempt", 1))
b.ReportAllocs()
b.ResetTimer()
b.RunParallel(func(pb *testing.PB) {
for pb.Next() {
log.FromContext(goCtx).Info("some message")
}
})
}
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
}