forked from google/logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogger.go
582 lines (518 loc) · 15.6 KB
/
logger.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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
/*
Copyright 2018 Intwine Labs, Inc. All Rights Reserved.
Copyright 2016 Google Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Package logger offers simple cross platform logging for Windows and Linux.
// Available logging endpoints are event log (Windows), syslog (Linux), and
// an io.Writer.
package logger
import (
"bytes"
"crypto/hmac"
"crypto/sha256"
"encoding/base64"
"encoding/json"
"fmt"
"io"
"io/ioutil"
"log"
"net/http"
"os"
"runtime"
"strconv"
"strings"
"sync"
"time"
"unicode/utf8"
)
type severity int
// Severity levels.
const (
sInfo severity = iota
sWarning
sError
sFatal
)
// Severity tags.
const (
tagInfo = "INFO : "
tagWarning = "WARN : "
tagError = "ERROR: "
tagFatal = "FATAL: "
logType = "GoLog"
timeStampField = "date"
)
const (
flags = log.Ldate | log.Lmicroseconds | log.Lshortfile
initText = "ERROR: Logging before logger.Init.\n"
)
var (
logLock sync.Mutex
defaultLogger *Logger
)
// initialize resets defaultLogger. Which allows tests to reset environment.
func initialize() {
defaultLogger = &Logger{
infoLog: log.New(os.Stderr, initText+tagInfo, flags),
warningLog: log.New(os.Stderr, initText+tagWarning, flags),
errorLog: log.New(os.Stderr, initText+tagError, flags),
fatalLog: log.New(os.Stderr, initText+tagFatal, flags),
}
}
func init() {
initialize()
}
// Init sets up logging and should be called before log functions, usually in
// the caller's main(). Default log functions can be called before Init(), but log
// output will only go to stderr (along with a warning).
// The first call to Init populates the default logger and returns the
// generated logger, subsequent calls to Init will only return the generated
// logger.
// If the logFile passed in also satisfies io.Closer, logFile.Close will be called
// when closing the logger.
func Init(name string, verbose, systemLog bool, logFile io.Writer) *Logger {
var il, wl, el io.Writer
if systemLog {
var err error
il, wl, el, err = setup(name)
if err != nil {
log.Fatal(err)
}
}
iLogs := []io.Writer{logFile}
wLogs := []io.Writer{logFile}
eLogs := []io.Writer{logFile}
if il != nil {
iLogs = append(iLogs, il)
}
if wl != nil {
wLogs = append(wLogs, wl)
}
if el != nil {
eLogs = append(eLogs, el)
}
// Windows services don't have stdout/stderr. Writes will fail, so try them last.
eLogs = append(eLogs, os.Stderr)
if verbose {
iLogs = append(iLogs, os.Stdout)
wLogs = append(wLogs, os.Stdout)
}
if name == "" {
name = logType
}
l := Logger{
name: name,
infoLog: log.New(io.MultiWriter(iLogs...), tagInfo, flags),
warningLog: log.New(io.MultiWriter(wLogs...), tagWarning, flags),
errorLog: log.New(io.MultiWriter(eLogs...), tagError, flags),
fatalLog: log.New(io.MultiWriter(eLogs...), tagFatal, flags),
}
for _, w := range []io.Writer{logFile, il, wl, el} {
if c, ok := w.(io.Closer); ok && c != nil {
l.closers = append(l.closers, c)
}
}
l.initialized = true
logLock.Lock()
defer logLock.Unlock()
if !defaultLogger.initialized {
defaultLogger = &l
}
return &l
}
// New return a default Logger
func New() *Logger {
return Init("", true, false, ioutil.Discard)
}
// A Logger represents an active logging object. Multiple loggers can be used
// simultaneously even if they are using the same same writers.
type Logger struct {
name string
infoLog *log.Logger
warningLog *log.Logger
errorLog *log.Logger
fatalLog *log.Logger
closers []io.Closer
client *http.Client
logQueue []Log
accountId string
key string
maxBatchInterval time.Duration
maxBatchSize int
lastBatchRun time.Time
remoteLog bool
initialized bool
}
func (l *Logger) output(s severity, depth int, txt string) {
logLock.Lock()
defer logLock.Unlock()
switch s {
case sInfo:
l.infoLog.Output(3+depth, txt)
case sWarning:
l.warningLog.Output(3+depth, txt)
case sError:
l.errorLog.Output(3+depth, txt)
case sFatal:
l.fatalLog.Output(3+depth, txt)
default:
panic(fmt.Sprintln("unrecognized severity:", s))
}
}
type RemoteConfig struct {
Name string
AccountID string
Key string
MaxBatchInterval time.Duration
MaxBatchSize int
}
func (l *Logger) RemoteConfig(conf RemoteConfig) {
l.accountId = conf.AccountID
l.key = conf.Key
if conf.Name != "" {
l.name = conf.Name
}
if conf.MaxBatchInterval != 0 {
l.maxBatchInterval = conf.MaxBatchInterval
} else {
l.maxBatchInterval = 5 * time.Second
}
if conf.MaxBatchSize != 0 {
l.maxBatchSize = conf.MaxBatchSize
} else {
l.maxBatchSize = 1024
}
l.client = &http.Client{}
l.lastBatchRun = time.Now()
l.remoteLog = true
}
// Flush flushes queued logs
func (l *Logger) Flush() {
if l.remoteLog {
l.postLogs()
}
}
// Close closes all the underlying log writers, which will flush any cached logs.
// Any errors from closing the underlying log writers will be printed to stderr.
// Once Close is called, all future calls to the logger will panic.
func (l *Logger) Close() {
if l.remoteLog {
l.Flush()
}
logLock.Lock()
defer logLock.Unlock()
for _, c := range l.closers {
if err := c.Close(); err != nil {
fmt.Fprintf(os.Stderr, "Failed to close log %v: %v\n", c, err)
}
}
}
// Info logs with the Info severity.
// Arguments are handled in the manner of fmt.Print.
func (l *Logger) Info(v ...interface{}) {
msg := fmt.Sprint(v...)
l.output(sInfo, 0, msg)
if l.remoteLog {
l.emitLog(0, sInfo, msg)
}
}
// InfoDepth acts as Info but uses depth to determine which call frame to log.
// InfoDepth(0, "msg") is the same as Info("msg").
func (l *Logger) InfoDepth(depth int, v ...interface{}) {
msg := fmt.Sprint(v...)
l.output(sInfo, depth, msg)
if l.remoteLog {
l.emitLog(depth, sInfo, msg)
}
}
// Infoln logs with the Info severity.
// Arguments are handled in the manner of fmt.Println.
func (l *Logger) Infoln(v ...interface{}) {
msg := fmt.Sprintln(v...)
l.output(sInfo, 0, msg)
if l.remoteLog {
l.emitLog(0, sInfo, msg)
}
}
// Infof logs with the Info severity.
// Arguments are handled in the manner of fmt.Printf.
func (l *Logger) Infof(format string, v ...interface{}) {
msg := fmt.Sprintf(format, v...)
l.output(sInfo, 0, msg)
if l.remoteLog {
l.emitLog(0, sInfo, msg)
}
}
// Warning logs with the Warning severity.
// Arguments are handled in the manner of fmt.Print.
func (l *Logger) Warning(v ...interface{}) {
msg := fmt.Sprint(v...)
l.output(sWarning, 0, msg)
if l.remoteLog {
l.emitLog(0, sWarning, msg)
}
}
// WarningDepth acts as Warning but uses depth to determine which call frame to log.
// WarningDepth(0, "msg") is the same as Warning("msg").
func (l *Logger) WarningDepth(depth int, v ...interface{}) {
msg := fmt.Sprint(v...)
l.output(sWarning, depth, msg)
if l.remoteLog {
l.emitLog(depth, sWarning, msg)
}
}
// Warningln logs with the Warning severity.
// Arguments are handled in the manner of fmt.Println.
func (l *Logger) Warningln(v ...interface{}) {
msg := fmt.Sprintln(v...)
l.output(sWarning, 0, msg)
if l.remoteLog {
l.emitLog(0, sWarning, msg)
}
}
// Warningf logs with the Warning severity.
// Arguments are handled in the manner of fmt.Printf.
func (l *Logger) Warningf(format string, v ...interface{}) {
msg := fmt.Sprintf(format, v...)
l.output(sWarning, 0, msg)
if l.remoteLog {
l.emitLog(0, sWarning, msg)
}
}
// Error logs with the ERROR severity.
// Arguments are handled in the manner of fmt.Print.
func (l *Logger) Error(v ...interface{}) {
msg := fmt.Sprint(v...)
l.output(sError, 0, msg)
if l.remoteLog {
l.emitLog(0, sError, msg)
}
}
// ErrorDepth acts as Error but uses depth to determine which call frame to log.
// ErrorDepth(0, "msg") is the same as Error("msg").
func (l *Logger) ErrorDepth(depth int, v ...interface{}) {
msg := fmt.Sprint(v...)
l.output(sError, depth, msg)
if l.remoteLog {
l.emitLog(depth, sError, msg)
}
}
// Errorln logs with the ERROR severity.
// Arguments are handled in the manner of fmt.Println.
func (l *Logger) Errorln(v ...interface{}) {
msg := fmt.Sprintln(v...)
l.output(sError, 0, msg)
if l.remoteLog {
l.emitLog(0, sError, msg)
}
}
// Errorf logs with the Error severity.
// Arguments are handled in the manner of fmt.Printf.
func (l *Logger) Errorf(format string, v ...interface{}) {
msg := fmt.Sprintf(format, v...)
l.output(sError, 0, msg)
if l.remoteLog {
l.emitLog(0, sError, msg)
}
}
// Fatal logs with the Fatal severity, and ends with os.Exit(1).
// Arguments are handled in the manner of fmt.Print.
func (l *Logger) Fatal(v ...interface{}) {
msg := fmt.Sprint(v...)
l.output(sFatal, 0, msg)
if l.remoteLog {
l.emitLog(0, sFatal, msg)
}
l.Close()
os.Exit(1)
}
// FatalDepth acts as Fatal but uses depth to determine which call frame to log.
// FatalDepth(0, "msg") is the same as Fatal("msg").
func (l *Logger) FatalDepth(depth int, v ...interface{}) {
msg := fmt.Sprint(v...)
l.output(sFatal, depth, msg)
if l.remoteLog {
l.emitLog(depth, sFatal, msg)
}
l.Close()
os.Exit(1)
}
// Fatalln logs with the Fatal severity, and ends with os.Exit(1).
// Arguments are handled in the manner of fmt.Println.
func (l *Logger) Fatalln(v ...interface{}) {
msg := fmt.Sprintln(v...)
l.output(sFatal, 0, msg)
if l.remoteLog {
l.emitLog(0, sFatal, msg)
}
l.Close()
os.Exit(1)
}
// Fatalf logs with the Fatal severity, and ends with os.Exit(1).
// Arguments are handled in the manner of fmt.Printf.
func (l *Logger) Fatalf(format string, v ...interface{}) {
msg := fmt.Sprintf(format, v...)
l.output(sFatal, 0, msg)
if l.remoteLog {
l.emitLog(0, sError, msg)
}
l.Close()
os.Exit(1)
}
// Info uses the default logger and logs with the Info severity.
// Arguments are handled in the manner of fmt.Print.
func Info(v ...interface{}) {
defaultLogger.output(sInfo, 0, fmt.Sprint(v...))
}
// InfoDepth acts as Info but uses depth to determine which call frame to log.
// InfoDepth(0, "msg") is the same as Info("msg").
func InfoDepth(depth int, v ...interface{}) {
defaultLogger.output(sInfo, depth, fmt.Sprint(v...))
}
// Infoln uses the default logger and logs with the Info severity.
// Arguments are handled in the manner of fmt.Println.
func Infoln(v ...interface{}) {
defaultLogger.output(sInfo, 0, fmt.Sprintln(v...))
}
// Infof uses the default logger and logs with the Info severity.
// Arguments are handled in the manner of fmt.Printf.
func Infof(format string, v ...interface{}) {
defaultLogger.output(sInfo, 0, fmt.Sprintf(format, v...))
}
// Warning uses the default logger and logs with the Warning severity.
// Arguments are handled in the manner of fmt.Print.
func Warning(v ...interface{}) {
defaultLogger.output(sWarning, 0, fmt.Sprint(v...))
}
// WarningDepth acts as Warning but uses depth to determine which call frame to log.
// WarningDepth(0, "msg") is the same as Warning("msg").
func WarningDepth(depth int, v ...interface{}) {
defaultLogger.output(sWarning, depth, fmt.Sprint(v...))
}
// Warningln uses the default logger and logs with the Warning severity.
// Arguments are handled in the manner of fmt.Println.
func Warningln(v ...interface{}) {
defaultLogger.output(sWarning, 0, fmt.Sprintln(v...))
}
// Warningf uses the default logger and logs with the Warning severity.
// Arguments are handled in the manner of fmt.Printf.
func Warningf(format string, v ...interface{}) {
defaultLogger.output(sWarning, 0, fmt.Sprintf(format, v...))
}
// Error uses the default logger and logs with the Error severity.
// Arguments are handled in the manner of fmt.Print.
func Error(v ...interface{}) {
defaultLogger.output(sError, 0, fmt.Sprint(v...))
}
// ErrorDepth acts as Error but uses depth to determine which call frame to log.
// ErrorDepth(0, "msg") is the same as Error("msg").
func ErrorDepth(depth int, v ...interface{}) {
defaultLogger.output(sError, depth, fmt.Sprint(v...))
}
// Errorln uses the default logger and logs with the Error severity.
// Arguments are handled in the manner of fmt.Println.
func Errorln(v ...interface{}) {
defaultLogger.output(sError, 0, fmt.Sprintln(v...))
}
// Errorf uses the default logger and logs with the Error severity.
// Arguments are handled in the manner of fmt.Printf.
func Errorf(format string, v ...interface{}) {
defaultLogger.output(sError, 0, fmt.Sprintf(format, v...))
}
// Fatalln uses the default logger, logs with the Fatal severity,
// and ends with os.Exit(1).
// Arguments are handled in the manner of fmt.Print.
func Fatal(v ...interface{}) {
defaultLogger.output(sFatal, 0, fmt.Sprint(v...))
defaultLogger.Close()
os.Exit(1)
}
// FatalDepth acts as Fatal but uses depth to determine which call frame to log.
// FatalDepth(0, "msg") is the same as Fatal("msg").
func FatalDepth(depth int, v ...interface{}) {
defaultLogger.output(sFatal, depth, fmt.Sprint(v...))
defaultLogger.Close()
os.Exit(1)
}
// Fatalln uses the default logger, logs with the Fatal severity,
// and ends with os.Exit(1).
// Arguments are handled in the manner of fmt.Println.
func Fatalln(v ...interface{}) {
defaultLogger.output(sFatal, 0, fmt.Sprintln(v...))
defaultLogger.Close()
os.Exit(1)
}
// Fatalf uses the default logger, logs with the Fatal severity,
// and ends with os.Exit(1).
// Arguments are handled in the manner of fmt.Printf.
func Fatalf(format string, v ...interface{}) {
defaultLogger.output(sFatal, 0, fmt.Sprintf(format, v...))
defaultLogger.Close()
os.Exit(1)
}
func buildSignature(message, secret string) string {
keyBytes, _ := base64.StdEncoding.DecodeString(secret)
mac := hmac.New(sha256.New, keyBytes)
mac.Write([]byte(message))
return base64.StdEncoding.EncodeToString(mac.Sum(nil))
}
type Log struct {
Date time.Time `json:"date"`
Level severity `json:"level"`
File string `json:"file"`
Line int `json:"line"`
Message string `json:"message"`
}
func toLog(depth int, level severity, msg string) Log {
now := time.Now() // get this early.
var file string
var line int
var ok bool
_, file, line, ok = runtime.Caller(depth)
if !ok {
file = "???"
line = 0
}
ll := Log{
Date: now,
Level: level,
File: file,
Line: line,
Message: msg,
}
return ll
}
func (l *Logger) postLogs() {
dateString := time.Now().UTC().Format(time.RFC1123)
dateString = strings.Replace(dateString, "UTC", "GMT", -1)
data, _ := json.Marshal(l.logQueue)
stringToHash := "POST\n" + strconv.Itoa(utf8.RuneCountInString(string(data))) + "\napplication/json\n" + "x-ms-date:" + dateString + "\n/api/logs"
hashedString := buildSignature(stringToHash, l.key)
signature := "SharedKey " + l.accountId + ":" + hashedString
url := "https://" + l.accountId + ".ods.opinsights.azure.com/api/logs?api-version=2016-04-01"
req, _ := http.NewRequest("POST", url, bytes.NewReader(data))
req.Header.Add("Log-Type", l.name)
req.Header.Add("Authorization", signature)
req.Header.Add("Content-Type", "application/json")
req.Header.Add("x-ms-date", dateString)
req.Header.Add("time-generated-field", timeStampField)
l.client.Do(req)
l.logQueue = []Log{}
}
func (l *Logger) emitLog(depth int, s severity, msg string) {
log := toLog(depth, s, msg)
l.logQueue = append(l.logQueue, log)
if len(l.logQueue) > l.maxBatchSize || time.Since(l.lastBatchRun) > l.maxBatchInterval {
l.postLogs()
l.lastBatchRun = time.Now()
}
}