-
Notifications
You must be signed in to change notification settings - Fork 0
/
trace.go
212 lines (188 loc) · 7.13 KB
/
trace.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
// Copyright 2016 The Cockroach Authors.
//
// 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.
//
// Author: Tobias Schottdorf (tobias.schottdorf@gmail.com)
package log
import (
"fmt"
"github.com/cockroachdb/cockroach/pkg/util/syncutil"
opentracing "github.com/opentracing/opentracing-go"
otlog "github.com/opentracing/opentracing-go/log"
"golang.org/x/net/context"
"golang.org/x/net/trace"
)
// ctxEventLogKey is an empty type for the handle associated with the
// ctxEventLog value (see context.Value).
type ctxEventLogKey struct{}
// ctxEventLog is used for contexts to keep track of an EventLog.
type ctxEventLog struct {
syncutil.Mutex
eventLog trace.EventLog
}
func (el *ctxEventLog) finish() {
el.Lock()
if el.eventLog != nil {
el.eventLog.Finish()
el.eventLog = nil
}
el.Unlock()
}
func embedCtxEventLog(ctx context.Context, el *ctxEventLog) context.Context {
return context.WithValue(ctx, ctxEventLogKey{}, el)
}
// withEventLogInternal embeds a trace.EventLog in the context, causing future
// logging and event calls to go to the EventLog. The current context must not
// have an existing open span.
func withEventLogInternal(ctx context.Context, eventLog trace.EventLog) context.Context {
if opentracing.SpanFromContext(ctx) != nil {
panic("event log under span")
}
return embedCtxEventLog(ctx, &ctxEventLog{eventLog: eventLog})
}
// WithEventLog creates and embeds a trace.EventLog in the context, causing
// future logging and event calls to go to the EventLog. The current context
// must not have an existing open span.
func WithEventLog(ctx context.Context, family, title string) context.Context {
return withEventLogInternal(ctx, trace.NewEventLog(family, title))
}
var _ = WithEventLog
// WithNoEventLog creates a context which no longer has an embedded event log.
func WithNoEventLog(ctx context.Context) context.Context {
return withEventLogInternal(ctx, nil)
}
func eventLogFromCtx(ctx context.Context) *ctxEventLog {
if val := ctx.Value(ctxEventLogKey{}); val != nil {
return val.(*ctxEventLog)
}
return nil
}
// FinishEventLog closes the event log in the context (see WithEventLog).
// Concurrent and subsequent calls to record events are allowed.
func FinishEventLog(ctx context.Context) {
if el := eventLogFromCtx(ctx); el != nil {
el.finish()
}
}
// getSpanOrEventLog returns the current Span. If there is no Span, it returns
// the current ctxEventLog. If neither (or the Span is NoopTracer), returns
// false.
func getSpanOrEventLog(ctx context.Context) (opentracing.Span, *ctxEventLog, bool) {
if sp := opentracing.SpanFromContext(ctx); sp != nil {
if _, ok := sp.Tracer().(opentracing.NoopTracer); ok {
return nil, nil, false
}
return sp, nil, true
}
if el := eventLogFromCtx(ctx); el != nil {
return nil, el, true
}
return nil, nil, false
}
// eventInternal is the common code for logging an event. If no args are given,
// the format is treated as a pre-formatted string.
func eventInternal(ctx context.Context, isErr, withTags bool, format string, args ...interface{}) {
if sp, el, ok := getSpanOrEventLog(ctx); ok {
var buf msgBuf
if withTags {
withTags = formatTags(ctx, &buf)
}
var msg string
if !withTags && len(args) == 0 {
// Fast path for pre-formatted messages.
msg = format
} else {
if len(args) == 0 {
buf.WriteString(format)
} else {
fmt.Fprintf(&buf, format, args...)
}
msg = buf.String()
}
if sp != nil {
// TODO(radu): pass tags directly to sp.LogKV when LightStep supports
// that.
sp.LogFields(otlog.String("event", msg))
// if isErr {
// // TODO(radu): figure out a way to signal that this is an error. We
// // could use a different "error" key (provided it shows up in
// // LightStep). Things like NetTraceIntegrator would need to be modified
// // to understand the difference. We could also set a special Tag or
// // Baggage on the span. See #8827 for more discussion.
// }
} else {
el.Lock()
if el.eventLog != nil {
if isErr {
el.eventLog.Errorf("%s", msg)
} else {
el.eventLog.Printf("%s", msg)
}
}
el.Unlock()
}
}
}
// Event looks for an opentracing.Trace in the context and logs the given
// message to it. If no Trace is found, it looks for an EventLog in the context
// and logs the message to it. If neither is found, does nothing.
func Event(ctx context.Context, msg string) {
eventInternal(ctx, false /*isErr*/, true /*withTags*/, msg)
}
// Eventf looks for an opentracing.Trace in the context and formats and logs
// the given message to it. If no Trace is found, it looks for an EventLog in
// the context and logs the message to it. If neither is found, does nothing.
func Eventf(ctx context.Context, format string, args ...interface{}) {
eventInternal(ctx, false /*isErr*/, true /*withTags*/, format, args...)
}
// ErrEvent looks for an opentracing.Trace in the context and logs the given
// message to it. If no Trace is found, it looks for an EventLog in the context
// and logs the message to it (as an error). If neither is found, does nothing.
func ErrEvent(ctx context.Context, msg string) {
eventInternal(ctx, true /*isErr*/, true /*withTags*/, msg)
}
// ErrEventf looks for an opentracing.Trace in the context and formats and logs
// the given message to it. If no Trace is found, it looks for an EventLog in
// the context and formats and logs the message to it (as an error). If neither
// is found, does nothing.
func ErrEventf(ctx context.Context, format string, args ...interface{}) {
eventInternal(ctx, true /*isErr*/, true /*withTags*/, format, args...)
}
// VEvent either logs a message to the log files (which also outputs to the
// active trace or event log) or to the trace/event log alone, depending on
// whether the specified verbosity level is active.
func VEvent(ctx context.Context, level level, msg string) {
if VDepth(level, 1) {
// Log to INFO (which also logs an event).
logDepth(ctx, 1, Severity_INFO, "", []interface{}{msg})
} else {
eventInternal(ctx, false /*isErr*/, true /*withTags*/, msg)
}
}
// VEventf either logs a message to the log files (which also outputs to the
// active trace or event log) or to the trace/event log alone, depending on
// whether the specified verbosity level is active.
func VEventf(ctx context.Context, level level, format string, args ...interface{}) {
if VDepth(level, 1) {
// Log to INFO (which also logs an event).
logDepth(ctx, 1, Severity_INFO, format, args)
} else {
eventInternal(ctx, false /*isErr*/, true /*withTags*/, format, args...)
}
}
// HasSpanOrEvent returns true if the context has a span or event that should
// be logged to.
func HasSpanOrEvent(ctx context.Context) bool {
_, _, ok := getSpanOrEventLog(ctx)
return ok
}