-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexamples_test.go
190 lines (146 loc) · 8.29 KB
/
examples_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
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
package logger_test
import (
"fmt"
"log"
"regexp"
"time"
"github.com/eltorocorp/nobslogger/v2/logger"
)
type fakeWriter struct{}
// Write just replaces the timestamp internally assigned by the LogService
// with a constant value so the tests remain deterministic.
func (fakeWriter) Write(message []byte) (int, error) {
re := regexp.MustCompile(`\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.(\d{5}|\d{6})-\d{2}:\d{2}`)
msg := re.ReplaceAllString(string(message), "2009-01-20T12:05:00.000000-04:00")
fmt.Println(msg)
return len(msg), nil
}
func ExampleInitializeWriter() {
// Establish a ServiceContext.
// This records the highest level information about the system being logged.
serviceContext := logger.ServiceContext{
Environment: "test",
SystemName: "examples",
ServiceName: "example runner",
ServiceInstanceID: "1",
}
// Setup options for the service. In this case, we're instructing the service
// to wait at least one second for any remaining log entries to flush
// before exiting.
serviceOptions := logger.LogServiceOptions{
CancellationDeadline: 10 * time.Millisecond,
}
// Initialize the LogService.
loggerSvc := logger.InitializeWriterWithOptions(new(fakeWriter), serviceContext, serviceOptions)
// Get a new logger (LogContext) from the LogService.
logger := loggerSvc.NewContext("ExampleInitializeWriter_ServiceContext", "running example")
// Log something.
logger.Info("Here is some info")
loggerSvc.Finish()
// Output: {"timestamp":"2009-01-20T12:05:00.000000-04:00","environment":"test","system_name":"examples","service_name":"example runner","service_instance_id":"1","site":"ExampleInitializeWriter_ServiceContext","operation":"running example","level":"300","severity":"info","msg":"Here is some info","details":""}
}
// LogService supports having multiple logging contexts that may be initialized
// from separate goroutines.
func ExampleLogService_multipleContexts() {
serviceContext := logger.ServiceContext{
Environment: "test",
SystemName: "examples",
ServiceName: "example runner",
ServiceInstanceID: "1",
}
serviceOptions := logger.LogServiceOptions{
CancellationDeadline: 10 * time.Millisecond,
}
loggerSvc := logger.InitializeWriterWithOptions(new(fakeWriter), serviceContext, serviceOptions)
go func() {
logger := loggerSvc.NewContext("goroutine 1", "running example")
logger.Info("Here is some info from goroutine 1")
}()
go func() {
logger := loggerSvc.NewContext("goroutine 2", "running example")
logger.Info("Here is some info from goroutine 2")
}()
loggerSvc.Finish()
// Unordered Output:
// {"timestamp":"2009-01-20T12:05:00.000000-04:00","environment":"test","system_name":"examples","service_name":"example runner","service_instance_id":"1","site":"goroutine 1","operation":"running example","level":"300","severity":"info","msg":"Here is some info from goroutine 1","details":""}
// {"timestamp":"2009-01-20T12:05:00.000000-04:00","environment":"test","system_name":"examples","service_name":"example runner","service_instance_id":"1","site":"goroutine 2","operation":"running example","level":"300","severity":"info","msg":"Here is some info from goroutine 2","details":""}
}
// LogService supports having one (or more) log contexts span multiple
// goroutines.
func ExampleLogService_contextAcrossGoroutines() {
serviceContext := logger.ServiceContext{
Environment: "test",
SystemName: "examples",
ServiceName: "example runner",
ServiceInstanceID: "1",
}
serviceOptions := logger.LogServiceOptions{
CancellationDeadline: 10 * time.Millisecond,
}
loggerSvc := logger.InitializeWriterWithOptions(new(fakeWriter), serviceContext, serviceOptions)
logger := loggerSvc.NewContext("single context", "used across multiple goroutines")
logger.Info("Log from goroutine 1")
go func() {
logger.Info("Log from goroutine 2")
}()
go func() {
logger.Info("Log from goroutine 3")
}()
loggerSvc.Finish()
// Unordered Output:
// {"timestamp":"2009-01-20T12:05:00.000000-04:00","environment":"test","system_name":"examples","service_name":"example runner","service_instance_id":"1","site":"single context","operation":"used across multiple goroutines","level":"300","severity":"info","msg":"Log from goroutine 1","details":""}
// {"timestamp":"2009-01-20T12:05:00.000000-04:00","environment":"test","system_name":"examples","service_name":"example runner","service_instance_id":"1","site":"single context","operation":"used across multiple goroutines","level":"300","severity":"info","msg":"Log from goroutine 2","details":""}
// {"timestamp":"2009-01-20T12:05:00.000000-04:00","environment":"test","system_name":"examples","service_name":"example runner","service_instance_id":"1","site":"single context","operation":"used across multiple goroutines","level":"300","severity":"info","msg":"Log from goroutine 3","details":""}
}
// LogService contexts support a vartiety of log methods, including, but not
// limited to those shown in this example.
func ExampleLogService_variousContextMethods() {
serviceContext := logger.ServiceContext{
Environment: "test",
SystemName: "examples",
ServiceName: "example runner",
ServiceInstanceID: "1",
}
serviceOptions := logger.LogServiceOptions{
CancellationDeadline: 10 * time.Millisecond,
}
loggerSvc := logger.InitializeWriterWithOptions(new(fakeWriter), serviceContext, serviceOptions)
logger := loggerSvc.NewContext("goroutine 1", "running example")
logger.Info("An info-level message.")
logger.InfoD("An info-level message.", "With more details!")
logger.Debug("A debug-level message")
logger.DebugD("A debug-level message.", "With extra details!")
loggerSvc.Finish()
// Unordered Output:
// {"timestamp":"2009-01-20T12:05:00.000000-04:00","environment":"test","system_name":"examples","service_name":"example runner","service_instance_id":"1","site":"goroutine 1","operation":"running example","level":"300","severity":"info","msg":"An info-level message.","details":""}
// {"timestamp":"2009-01-20T12:05:00.000000-04:00","environment":"test","system_name":"examples","service_name":"example runner","service_instance_id":"1","site":"goroutine 1","operation":"running example","level":"300","severity":"info","msg":"An info-level message.","details":"With more details!"}
// {"timestamp":"2009-01-20T12:05:00.000000-04:00","environment":"test","system_name":"examples","service_name":"example runner","service_instance_id":"1","site":"goroutine 1","operation":"running example","level":"200","severity":"debug","msg":"A debug-level message","details":""}
// {"timestamp":"2009-01-20T12:05:00.000000-04:00","environment":"test","system_name":"examples","service_name":"example runner","service_instance_id":"1","site":"goroutine 1","operation":"running example","level":"200","severity":"debug","msg":"A debug-level message.","details":"With extra details!"}
}
// LogContexts also support the io.Writer interface, so they can be used to
// hook into any external writer, such as through the use of `log.SetOutput`.
func ExampleLogContext_Write() {
serviceContext := logger.ServiceContext{
Environment: "test",
SystemName: "examples",
ServiceName: "example runner",
ServiceInstanceID: "1",
}
serviceOptions := logger.LogServiceOptions{
CancellationDeadline: 10 * time.Millisecond,
}
loggerSvc := logger.InitializeWriterWithOptions(new(fakeWriter), serviceContext, serviceOptions)
logger := loggerSvc.NewContext("ExampleLogContext", "Write")
// Here we simulate hooking the LogContext into the an existing std/logger.
// In this example we create a new logger via `log.New`, the this could also
// be done using `log.SetOutput`.
stdlibLogger := log.New(logger, "", 0)
// When we call Println, the current LogContext will log the message at the
// Trace level.
// Note that the expected output will include an escaped newline character.
// This is added by the Println function, and is properly escaped by
// nobslogger to prevent mangling the JSON output.
stdlibLogger.Println("Hello from the standard library logger!")
loggerSvc.Finish()
// Output: {"timestamp":"2009-01-20T12:05:00.000000-04:00","environment":"test","system_name":"examples","service_name":"example runner","service_instance_id":"1","site":"ExampleLogContext","operation":"Write","level":"100","severity":"trace","msg":"Hello from the standard library logger!\n","details":""}
}