aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/uber/jaeger-client-go/reporter.go
blob: fe6288c4b9e55c3609187c5a65ae3c84c8e87828 (plain) (blame)
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
// Copyright (c) 2017 Uber Technologies, Inc.
//
// 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 jaeger

import (
    "fmt"
    "sync"
    "sync/atomic"
    "time"

    "github.com/opentracing/opentracing-go"

    "github.com/uber/jaeger-client-go/log"
)

// Reporter is called by the tracer when a span is completed to report the span to the tracing collector.
type Reporter interface {
    // Report submits a new span to collectors, possibly asynchronously and/or with buffering.
    Report(span *Span)

    // Close does a clean shutdown of the reporter, flushing any traces that may be buffered in memory.
    Close()
}

// ------------------------------

type nullReporter struct{}

// NewNullReporter creates a no-op reporter that ignores all reported spans.
func NewNullReporter() Reporter {
    return &nullReporter{}
}

// Report implements Report() method of Reporter by doing nothing.
func (r *nullReporter) Report(span *Span) {
    // no-op
}

// Close implements Close() method of Reporter by doing nothing.
func (r *nullReporter) Close() {
    // no-op
}

// ------------------------------

type loggingReporter struct {
    logger Logger
}

// NewLoggingReporter creates a reporter that logs all reported spans to provided logger.
func NewLoggingReporter(logger Logger) Reporter {
    return &loggingReporter{logger}
}

// Report implements Report() method of Reporter by logging the span to the logger.
func (r *loggingReporter) Report(span *Span) {
    r.logger.Infof("Reporting span %+v", span)
}

// Close implements Close() method of Reporter by doing nothing.
func (r *loggingReporter) Close() {
    // no-op
}

// ------------------------------

// InMemoryReporter is used for testing, and simply collects spans in memory.
type InMemoryReporter struct {
    spans []opentracing.Span
    lock  sync.Mutex
}

// NewInMemoryReporter creates a reporter that stores spans in memory.
// NOTE: the Tracer should be created with options.PoolSpans = false.
func NewInMemoryReporter() *InMemoryReporter {
    return &InMemoryReporter{
        spans: make([]opentracing.Span, 0, 10),
    }
}

// Report implements Report() method of Reporter by storing the span in the buffer.
func (r *InMemoryReporter) Report(span *Span) {
    r.lock.Lock()
    r.spans = append(r.spans, span)
    r.lock.Unlock()
}

// Close implements Close() method of Reporter by doing nothing.
func (r *InMemoryReporter) Close() {
    // no-op
}

// SpansSubmitted returns the number of spans accumulated in the buffer.
func (r *InMemoryReporter) SpansSubmitted() int {
    r.lock.Lock()
    defer r.lock.Unlock()
    return len(r.spans)
}

// GetSpans returns accumulated spans as a copy of the buffer.
func (r *InMemoryReporter) GetSpans() []opentracing.Span {
    r.lock.Lock()
    defer r.lock.Unlock()
    copied := make([]opentracing.Span, len(r.spans))
    copy(copied, r.spans)
    return copied
}

// Reset clears all accumulated spans.
func (r *InMemoryReporter) Reset() {
    r.lock.Lock()
    defer r.lock.Unlock()
    r.spans = nil
}

// ------------------------------

type compositeReporter struct {
    reporters []Reporter
}

// NewCompositeReporter creates a reporter that ignores all reported spans.
func NewCompositeReporter(reporters ...Reporter) Reporter {
    return &compositeReporter{reporters: reporters}
}

// Report implements Report() method of Reporter by delegating to each underlying reporter.
func (r *compositeReporter) Report(span *Span) {
    for _, reporter := range r.reporters {
        reporter.Report(span)
    }
}

// Close implements Close() method of Reporter by closing each underlying reporter.
func (r *compositeReporter) Close() {
    for _, reporter := range r.reporters {
        reporter.Close()
    }
}

// ------------- REMOTE REPORTER -----------------

type reporterQueueItemType int

const (
    defaultQueueSize           = 100
    defaultBufferFlushInterval = 1 * time.Second

    reporterQueueItemSpan reporterQueueItemType = iota
    reporterQueueItemClose
)

type reporterQueueItem struct {
    itemType reporterQueueItemType
    span     *Span
    close    *sync.WaitGroup
}

type remoteReporter struct {
    // These fields must be first in the struct because `sync/atomic` expects 64-bit alignment.
    // Cf. https://github.com/uber/jaeger-client-go/issues/155, https://goo.gl/zW7dgq
    queueLength int64
    closed      int64 // 0 - not closed, 1 - closed

    reporterOptions

    sender Transport
    queue  chan reporterQueueItem
}

// NewRemoteReporter creates a new reporter that sends spans out of process by means of Sender.
// Calls to Report(Span) return immediately (side effect: if internal buffer is full the span is dropped).
// Periodically the transport buffer is flushed even if it hasn't reached max packet size.
// Calls to Close() block until all spans reported prior to the call to Close are flushed.
func NewRemoteReporter(sender Transport, opts ...ReporterOption) Reporter {
    options := reporterOptions{}
    for _, option := range opts {
        option(&options)
    }
    if options.bufferFlushInterval <= 0 {
        options.bufferFlushInterval = defaultBufferFlushInterval
    }
    if options.logger == nil {
        options.logger = log.NullLogger
    }
    if options.metrics == nil {
        options.metrics = NewNullMetrics()
    }
    if options.queueSize <= 0 {
        options.queueSize = defaultQueueSize
    }
    reporter := &remoteReporter{
        reporterOptions: options,
        sender:          sender,
        queue:           make(chan reporterQueueItem, options.queueSize),
    }
    go reporter.processQueue()
    return reporter
}

// Report implements Report() method of Reporter.
// It passes the span to a background go-routine for submission to Jaeger backend.
// If the internal queue is full, the span is dropped and metrics.ReporterDropped counter is incremented.
// If Report() is called after the reporter has been Close()-ed, the additional spans will not be
// sent to the backend, but the metrics.ReporterDropped counter may not reflect them correctly,
// because some of them may still be successfully added to the queue.
func (r *remoteReporter) Report(span *Span) {
    select {
    case r.queue <- reporterQueueItem{itemType: reporterQueueItemSpan, span: span}:
        atomic.AddInt64(&r.queueLength, 1)
    default:
        r.metrics.ReporterDropped.Inc(1)
    }
}

// Close implements Close() method of Reporter by waiting for the queue to be drained.
func (r *remoteReporter) Close() {
    if swapped := atomic.CompareAndSwapInt64(&r.closed, 0, 1); !swapped {
        r.logger.Error("Repeated attempt to close the reporter is ignored")
        return
    }
    r.sendCloseEvent()
    r.sender.Close()
}

func (r *remoteReporter) sendCloseEvent() {
    wg := &sync.WaitGroup{}
    wg.Add(1)
    item := reporterQueueItem{itemType: reporterQueueItemClose, close: wg}

    r.queue <- item // if the queue is full we will block until there is space
    atomic.AddInt64(&r.queueLength, 1)
    wg.Wait()
}

// processQueue reads spans from the queue, converts them to Thrift, and stores them in an internal buffer.
// When the buffer length reaches batchSize, it is flushed by submitting the accumulated spans to Jaeger.
// Buffer also gets flushed automatically every batchFlushInterval seconds, just in case the tracer stopped
// reporting new spans.
func (r *remoteReporter) processQueue() {
    // flush causes the Sender to flush its accumulated spans and clear the buffer
    flush := func() {
        if flushed, err := r.sender.Flush(); err != nil {
            r.metrics.ReporterFailure.Inc(int64(flushed))
            r.logger.Error(fmt.Sprintf("error when flushing the buffer: %s", err.Error()))
        } else if flushed > 0 {
            r.metrics.ReporterSuccess.Inc(int64(flushed))
        }
    }

    timer := time.NewTicker(r.bufferFlushInterval)
    for {
        select {
        case <-timer.C:
            flush()
        case item := <-r.queue:
            atomic.AddInt64(&r.queueLength, -1)
            switch item.itemType {
            case reporterQueueItemSpan:
                span := item.span
                if flushed, err := r.sender.Append(span); err != nil {
                    r.metrics.ReporterFailure.Inc(int64(flushed))
                    r.logger.Error(fmt.Sprintf("error reporting span %q: %s", span.OperationName(), err.Error()))
                } else if flushed > 0 {
                    r.metrics.ReporterSuccess.Inc(int64(flushed))
                    // to reduce the number of gauge stats, we only emit queue length on flush
                    r.metrics.ReporterQueueLength.Update(atomic.LoadInt64(&r.queueLength))
                }
            case reporterQueueItemClose:
                timer.Stop()
                flush()
                item.close.Done()
                return
            }
        }
    }
}