-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathflexlogging.go
118 lines (96 loc) · 2.79 KB
/
flexlogging.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
package appwrap
import (
"context"
"errors"
"fmt"
"math/rand"
"os"
"sync"
"time"
)
var labelsMtx = &sync.RWMutex{}
func NewAppengineLogging(c context.Context) Logging {
nonce := fmt.Sprintf("%016x", rand.Uint64())
stdout := FormatLogger{
Logf: func(format string, args ...interface{}) {
fmt.Fprintf(os.Stdout, nonce+": "+format+"\n", args...)
},
}
stderr := FormatLogger{
Logf: func(format string, args ...interface{}) {
fmt.Fprintf(os.Stderr, nonce+": "+format+"\n", args...)
},
}
return TeeLogging{
Logs: []Logging{
stdout,
NewLevelLogger(LogLevelWarning, stderr),
},
}
}
func NewAppEngineLoggingService(c context.Context, aeInfo AppengineInfo) LoggingServiceInterface {
loggingClient := newLoggingClient()
loggingService := newStackdriverLoggingService(loggingClient, aeInfo, NewAppengineLogging(c)).(*StackdriverLoggingService)
return loggingService
}
func NewStackdriverLogging(c context.Context) Logging {
if !IsValidLoggingContext(c) {
l := NewWriterLogger(os.Stderr)
l.Criticalf("attempt to wrap non-Stackdriver-enabled context for logging; falling back to stderr")
return l
}
return stackdriverLogging{c}
}
type stackdriverLogging struct {
c context.Context
}
func (sl stackdriverLogging) Debugf(format string, args ...interface{}) {
Debugf(sl.c, format, args...)
}
func (sl stackdriverLogging) Infof(format string, args ...interface{}) {
Infof(sl.c, format, args...)
}
func (sl stackdriverLogging) Warningf(format string, args ...interface{}) {
Warningf(sl.c, format, args...)
}
func (sl stackdriverLogging) Errorf(format string, args ...interface{}) {
Errorf(sl.c, format, args...)
}
func (sl stackdriverLogging) Criticalf(format string, args ...interface{}) {
Criticalf(sl.c, format, args...)
}
func (sl stackdriverLogging) Request(method, url, format string, args ...interface{}) {
// this is logged automatically by stackdriver logger
}
func (sl stackdriverLogging) AddLabels(labels map[string]string) error {
ctxVal := (sl.c).Value(loggingCtxKey)
if ctxVal == nil {
return errors.New("failed to add log labels, needs to have a logging context")
}
logCtxVal := ctxVal.(*loggingCtxValue)
labelsMtx.Lock()
defer labelsMtx.Unlock()
for k, v := range labels {
logCtxVal.labels[k] = v
}
return nil
}
func (sl stackdriverLogging) TraceID() string {
ctxVal := (sl.c).Value(loggingCtxKey)
if ctxVal == nil {
panic(errors.New("failed to add log labels, needs to have a logging context"))
}
return ctxVal.(*loggingCtxValue).trace
}
func (logCtxVal *loggingCtxValue) getLabels() map[string]string {
labelsMtx.RLock()
defer labelsMtx.RUnlock()
labels := make(map[string]string, len(logCtxVal.labels))
for k, v := range logCtxVal.labels {
labels[k] = v
}
return labels
}
func init() {
rand.Seed(int64(time.Now().Nanosecond()) ^ time.Now().Unix())
}