forked from newrelic/go-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
internal_txn.go
1246 lines (1037 loc) · 29.9 KB
/
internal_txn.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
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2020 New Relic Corporation. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
package newrelic
import (
"errors"
"fmt"
"net/http"
"net/url"
"reflect"
"strings"
"sync"
"time"
"github.com/newrelic/go-agent/internal"
)
type txnInput struct {
// This ResponseWriter should only be accessed using txn.getWriter()
writer http.ResponseWriter
app Application
Consumer dataConsumer
*appRun
}
type txn struct {
txnInput
// This mutex is required since the consumer may call the public API
// interface functions from different routines.
sync.Mutex
// finished indicates whether or not End() has been called. After
// finished has been set to true, no recording should occur.
finished bool
numPayloadsCreated uint32
sampledCalculated bool
ignore bool
// wroteHeader prevents capturing multiple response code errors if the
// user erroneously calls WriteHeader multiple times.
wroteHeader bool
internal.TxnData
mainThread internal.Thread
asyncThreads []*internal.Thread
}
type thread struct {
*txn
// thread does not have locking because it should only be accessed while
// the txn is locked.
thread *internal.Thread
}
func (txn *txn) markStart(now time.Time) {
txn.Start = now
// The mainThread is considered active now.
txn.mainThread.RecordActivity(now)
}
func (txn *txn) markEnd(now time.Time, thread *internal.Thread) {
txn.Stop = now
// The thread on which End() was called is considered active now.
thread.RecordActivity(now)
txn.Duration = txn.Stop.Sub(txn.Start)
// TotalTime is the sum of "active time" across all threads. A thread
// was active when it started the transaction, stopped the transaction,
// started a segment, or stopped a segment.
txn.TotalTime = txn.mainThread.TotalTime()
for _, thd := range txn.asyncThreads {
txn.TotalTime += thd.TotalTime()
}
// Ensure that TotalTime is at least as large as Duration so that the
// graphs look sensible. This can happen under the following situation:
// goroutine1: txn.start----|segment1|
// goroutine2: |segment2|----txn.end
if txn.Duration > txn.TotalTime {
txn.TotalTime = txn.Duration
}
}
func newTxn(input txnInput, name string) *thread {
txn := &txn{
txnInput: input,
}
txn.markStart(time.Now())
txn.Name = name
txn.Attrs = internal.NewAttributes(input.AttributeConfig)
if input.Config.DistributedTracer.Enabled {
txn.BetterCAT.Enabled = true
txn.BetterCAT.Priority = internal.NewPriority()
txn.TraceIDGenerator = input.Reply.TraceIDGenerator
txn.BetterCAT.ID = txn.TraceIDGenerator.GenerateTraceID()
txn.SpanEventsEnabled = txn.Config.SpanEvents.Enabled
txn.LazilyCalculateSampled = txn.lazilyCalculateSampled
}
txn.Attrs.Agent.Add(internal.AttributeHostDisplayName, txn.Config.HostDisplayName, nil)
txn.TxnTrace.Enabled = txn.Config.TransactionTracer.Enabled
txn.TxnTrace.SegmentThreshold = txn.Config.TransactionTracer.SegmentThreshold
txn.StackTraceThreshold = txn.Config.TransactionTracer.StackTraceThreshold
txn.SlowQueriesEnabled = txn.Config.DatastoreTracer.SlowQuery.Enabled
txn.SlowQueryThreshold = txn.Config.DatastoreTracer.SlowQuery.Threshold
// Synthetics support is tied up with a transaction's Old CAT field,
// CrossProcess. To support Synthetics with either BetterCAT or Old CAT,
// Initialize the CrossProcess field of the transaction, passing in
// the top-level configuration.
doOldCAT := txn.Config.CrossApplicationTracer.Enabled
noGUID := txn.Config.DistributedTracer.Enabled
txn.CrossProcess.Init(doOldCAT, noGUID, input.Reply)
return &thread{
txn: txn,
thread: &txn.mainThread,
}
}
// lazilyCalculateSampled calculates and returns whether or not the transaction
// should be sampled. Sampled is not computed at the beginning of the
// transaction because we want to calculate Sampled only for transactions that
// do not accept an inbound payload.
func (txn *txn) lazilyCalculateSampled() bool {
if !txn.BetterCAT.Enabled {
return false
}
if txn.sampledCalculated {
return txn.BetterCAT.Sampled
}
txn.BetterCAT.Sampled = txn.Reply.AdaptiveSampler.ComputeSampled(txn.BetterCAT.Priority.Float32(), time.Now())
if txn.BetterCAT.Sampled {
txn.BetterCAT.Priority += 1.0
}
txn.sampledCalculated = true
return txn.BetterCAT.Sampled
}
type requestWrap struct{ request *http.Request }
func (r requestWrap) Header() http.Header { return r.request.Header }
func (r requestWrap) URL() *url.URL { return r.request.URL }
func (r requestWrap) Method() string { return r.request.Method }
func (r requestWrap) Transport() TransportType {
if strings.HasPrefix(r.request.Proto, "HTTP") {
if r.request.TLS != nil {
return TransportHTTPS
}
return TransportHTTP
}
return TransportUnknown
}
type staticWebRequest struct {
header http.Header
url *url.URL
method string
transport TransportType
}
func (r staticWebRequest) Header() http.Header { return r.header }
func (r staticWebRequest) URL() *url.URL { return r.url }
func (r staticWebRequest) Method() string { return r.method }
func (r staticWebRequest) Transport() TransportType { return TransportHTTP }
func (txn *txn) SetWebRequest(r WebRequest) error {
txn.Lock()
defer txn.Unlock()
if txn.finished {
return errAlreadyEnded
}
// Any call to SetWebRequest should indicate a web transaction.
txn.IsWeb = true
if nil == r {
return nil
}
h := r.Header()
if nil != h {
txn.Queuing = internal.QueueDuration(h, txn.Start)
if p := h.Get(DistributedTracePayloadHeader); p != "" {
txn.acceptDistributedTracePayloadLocked(r.Transport(), p)
}
txn.CrossProcess.InboundHTTPRequest(h)
}
internal.RequestAgentAttributes(txn.Attrs, r.Method(), h, r.URL())
return nil
}
func (thd *thread) SetWebResponse(w http.ResponseWriter) Transaction {
txn := thd.txn
txn.Lock()
defer txn.Unlock()
// Replace the ResponseWriter even if the transaction has ended so that
// consumers calling ResponseWriter methods on the transactions see that
// data flowing through as expected.
txn.writer = w
return upgradeTxn(&thread{
thread: thd.thread,
txn: txn,
})
}
func (txn *txn) freezeName() {
if txn.ignore || ("" != txn.FinalName) {
return
}
txn.FinalName = internal.CreateFullTxnName(txn.Name, txn.Reply, txn.IsWeb)
if "" == txn.FinalName {
txn.ignore = true
}
}
func (txn *txn) getsApdex() bool {
return txn.IsWeb
}
func (txn *txn) shouldSaveTrace() bool {
if !txn.Config.TransactionTracer.Enabled {
return false
}
if txn.CrossProcess.IsSynthetics() {
return true
}
return txn.Duration >= txn.txnTraceThreshold(txn.ApdexThreshold)
}
func (txn *txn) MergeIntoHarvest(h *internal.Harvest) {
var priority internal.Priority
if txn.BetterCAT.Enabled {
priority = txn.BetterCAT.Priority
} else {
priority = internal.NewPriority()
}
internal.CreateTxnMetrics(&txn.TxnData, h.Metrics)
internal.MergeBreakdownMetrics(&txn.TxnData, h.Metrics)
if txn.Config.TransactionEvents.Enabled {
// Allocate a new TxnEvent to prevent a reference to the large transaction.
alloc := new(internal.TxnEvent)
*alloc = txn.TxnData.TxnEvent
h.TxnEvents.AddTxnEvent(alloc, priority)
}
if txn.Reply.CollectErrors {
internal.MergeTxnErrors(&h.ErrorTraces, txn.Errors, txn.TxnEvent)
}
if txn.Config.ErrorCollector.CaptureEvents {
for _, e := range txn.Errors {
errEvent := &internal.ErrorEvent{
ErrorData: *e,
TxnEvent: txn.TxnEvent,
}
// Since the stack trace is not used in error events, remove the reference
// to minimize memory.
errEvent.Stack = nil
h.ErrorEvents.Add(errEvent, priority)
}
}
if txn.shouldSaveTrace() {
h.TxnTraces.Witness(internal.HarvestTrace{
TxnEvent: txn.TxnEvent,
Trace: txn.TxnTrace,
})
}
if nil != txn.SlowQueries {
h.SlowSQLs.Merge(txn.SlowQueries, txn.TxnEvent)
}
if txn.BetterCAT.Sampled && txn.SpanEventsEnabled {
h.SpanEvents.MergeFromTransaction(&txn.TxnData)
}
}
func headersJustWritten(txn *txn, code int, hdr http.Header) {
txn.Lock()
defer txn.Unlock()
if txn.finished {
return
}
if txn.wroteHeader {
return
}
txn.wroteHeader = true
internal.ResponseHeaderAttributes(txn.Attrs, hdr)
internal.ResponseCodeAttribute(txn.Attrs, code)
if txn.appRun.responseCodeIsError(code) {
e := internal.TxnErrorFromResponseCode(time.Now(), code)
e.Stack = internal.GetStackTrace()
txn.noticeErrorInternal(e)
}
}
func (txn *txn) responseHeader(hdr http.Header) http.Header {
txn.Lock()
defer txn.Unlock()
if txn.finished {
return nil
}
if txn.wroteHeader {
return nil
}
if !txn.CrossProcess.Enabled {
return nil
}
if !txn.CrossProcess.IsInbound() {
return nil
}
txn.freezeName()
contentLength := internal.GetContentLengthFromHeader(hdr)
appData, err := txn.CrossProcess.CreateAppData(txn.FinalName, txn.Queuing, time.Since(txn.Start), contentLength)
if err != nil {
txn.Config.Logger.Debug("error generating outbound response header", map[string]interface{}{
"error": err,
})
return nil
}
return internal.AppDataToHTTPHeader(appData)
}
func addCrossProcessHeaders(txn *txn, hdr http.Header) {
// responseHeader() checks the wroteHeader field and returns a nil map if the
// header has been written, so we don't need a check here.
if nil != hdr {
for key, values := range txn.responseHeader(hdr) {
for _, value := range values {
hdr.Add(key, value)
}
}
}
}
// getWriter is used to access the transaction's ResponseWriter. The
// ResponseWriter is mutex protected since it may be changed with
// txn.SetWebResponse, and we want changes to be visible across goroutines. The
// ResponseWriter is accessed using this getWriter() function rather than directly
// in mutex protected methods since we do NOT want the transaction to be locked
// while calling the ResponseWriter's methods.
func (txn *txn) getWriter() http.ResponseWriter {
txn.Lock()
rw := txn.writer
txn.Unlock()
return rw
}
func nilSafeHeader(rw http.ResponseWriter) http.Header {
if nil == rw {
return nil
}
return rw.Header()
}
func (txn *txn) Header() http.Header {
return nilSafeHeader(txn.getWriter())
}
func (txn *txn) Write(b []byte) (n int, err error) {
rw := txn.getWriter()
hdr := nilSafeHeader(rw)
// This is safe to call unconditionally, even if Write() is called multiple
// times; see also the commentary in addCrossProcessHeaders().
addCrossProcessHeaders(txn, hdr)
if rw != nil {
n, err = rw.Write(b)
}
headersJustWritten(txn, http.StatusOK, hdr)
return
}
func (txn *txn) WriteHeader(code int) {
rw := txn.getWriter()
hdr := nilSafeHeader(rw)
addCrossProcessHeaders(txn, hdr)
if nil != rw {
rw.WriteHeader(code)
}
headersJustWritten(txn, code, hdr)
}
func (thd *thread) End() error {
txn := thd.txn
txn.Lock()
defer txn.Unlock()
if txn.finished {
return errAlreadyEnded
}
txn.finished = true
r := recover()
if nil != r {
e := internal.TxnErrorFromPanic(time.Now(), r)
e.Stack = internal.GetStackTrace()
txn.noticeErrorInternal(e)
}
txn.markEnd(time.Now(), thd.thread)
txn.freezeName()
// Make a sampling decision if there have been no segments or outbound
// payloads.
txn.lazilyCalculateSampled()
// Finalise the CAT state.
if err := txn.CrossProcess.Finalise(txn.Name, txn.Config.AppName); err != nil {
txn.Config.Logger.Debug("error finalising the cross process state", map[string]interface{}{
"error": err,
})
}
// Assign apdexThreshold regardless of whether or not the transaction
// gets apdex since it may be used to calculate the trace threshold.
txn.ApdexThreshold = internal.CalculateApdexThreshold(txn.Reply, txn.FinalName)
if txn.getsApdex() {
if txn.HasErrors() {
txn.Zone = internal.ApdexFailing
} else {
txn.Zone = internal.CalculateApdexZone(txn.ApdexThreshold, txn.Duration)
}
} else {
txn.Zone = internal.ApdexNone
}
if txn.Config.Logger.DebugEnabled() {
txn.Config.Logger.Debug("transaction ended", map[string]interface{}{
"name": txn.FinalName,
"duration_ms": txn.Duration.Seconds() * 1000.0,
"ignored": txn.ignore,
"app_connected": "" != txn.Reply.RunID,
})
}
if !txn.ignore {
txn.Consumer.Consume(txn.Reply.RunID, txn)
}
// Note that if a consumer uses `panic(nil)`, the panic will not
// propagate.
if nil != r {
panic(r)
}
return nil
}
func (txn *txn) AddAttribute(name string, value interface{}) error {
txn.Lock()
defer txn.Unlock()
if txn.Config.HighSecurity {
return errHighSecurityEnabled
}
if !txn.Reply.SecurityPolicies.CustomParameters.Enabled() {
return errSecurityPolicy
}
if txn.finished {
return errAlreadyEnded
}
return internal.AddUserAttribute(txn.Attrs, name, value, internal.DestAll)
}
var (
errorsDisabled = errors.New("errors disabled")
errNilError = errors.New("nil error")
errAlreadyEnded = errors.New("transaction has already ended")
errSecurityPolicy = errors.New("disabled by security policy")
errTransactionIgnored = errors.New("transaction has been ignored")
errBrowserDisabled = errors.New("browser disabled by local configuration")
)
const (
highSecurityErrorMsg = "message removed by high security setting"
securityPolicyErrorMsg = "message removed by security policy"
)
func (txn *txn) noticeErrorInternal(err internal.ErrorData) error {
if !txn.Config.ErrorCollector.Enabled {
return errorsDisabled
}
if nil == txn.Errors {
txn.Errors = internal.NewTxnErrors(internal.MaxTxnErrors)
}
if txn.Config.HighSecurity {
err.Msg = highSecurityErrorMsg
}
if !txn.Reply.SecurityPolicies.AllowRawExceptionMessages.Enabled() {
err.Msg = securityPolicyErrorMsg
}
txn.Errors.Add(err)
txn.TxnData.TxnEvent.HasError = true //mark transaction as having an error
return nil
}
var (
errTooManyErrorAttributes = fmt.Errorf("too many extra attributes: limit is %d",
internal.AttributeErrorLimit)
)
// errorCause returns the error's deepest wrapped ancestor.
func errorCause(err error) error {
for {
if unwrapper, ok := err.(interface{ Unwrap() error }); ok {
if next := unwrapper.Unwrap(); nil != next {
err = next
continue
}
}
return err
}
}
func errorClassMethod(err error) string {
if ec, ok := err.(ErrorClasser); ok {
return ec.ErrorClass()
}
return ""
}
func errorStackTraceMethod(err error) internal.StackTrace {
if st, ok := err.(StackTracer); ok {
return st.StackTrace()
}
return nil
}
func errorAttributesMethod(err error) map[string]interface{} {
if st, ok := err.(ErrorAttributer); ok {
return st.ErrorAttributes()
}
return nil
}
func errDataFromError(input error) (data internal.ErrorData, err error) {
cause := errorCause(input)
data = internal.ErrorData{
When: time.Now(),
Msg: input.Error(),
}
if c := errorClassMethod(input); "" != c {
// If the error implements ErrorClasser, use that.
data.Klass = c
} else if c := errorClassMethod(cause); "" != c {
// Otherwise, if the error's cause implements ErrorClasser, use that.
data.Klass = c
} else {
// As a final fallback, use the type of the error's cause.
data.Klass = reflect.TypeOf(cause).String()
}
if st := errorStackTraceMethod(input); nil != st {
// If the error implements StackTracer, use that.
data.Stack = st
} else if st := errorStackTraceMethod(cause); nil != st {
// Otherwise, if the error's cause implements StackTracer, use that.
data.Stack = st
} else {
// As a final fallback, generate a StackTrace here.
data.Stack = internal.GetStackTrace()
}
var unvetted map[string]interface{}
if ats := errorAttributesMethod(input); nil != ats {
// If the error implements ErrorAttributer, use that.
unvetted = ats
} else {
// Otherwise, if the error's cause implements ErrorAttributer, use that.
unvetted = errorAttributesMethod(cause)
}
if unvetted != nil {
if len(unvetted) > internal.AttributeErrorLimit {
err = errTooManyErrorAttributes
return
}
data.ExtraAttributes = make(map[string]interface{})
for key, val := range unvetted {
val, err = internal.ValidateUserAttribute(key, val)
if nil != err {
return
}
data.ExtraAttributes[key] = val
}
}
return data, nil
}
func (txn *txn) NoticeError(input error) error {
txn.Lock()
defer txn.Unlock()
if txn.finished {
return errAlreadyEnded
}
if nil == input {
return errNilError
}
data, err := errDataFromError(input)
if nil != err {
return err
}
if txn.Config.HighSecurity || !txn.Reply.SecurityPolicies.CustomParameters.Enabled() {
data.ExtraAttributes = nil
}
return txn.noticeErrorInternal(data)
}
func (txn *txn) SetName(name string) error {
txn.Lock()
defer txn.Unlock()
if txn.finished {
return errAlreadyEnded
}
txn.Name = name
return nil
}
func (txn *txn) Ignore() error {
txn.Lock()
defer txn.Unlock()
if txn.finished {
return errAlreadyEnded
}
txn.ignore = true
return nil
}
func (thd *thread) StartSegmentNow() SegmentStartTime {
var s internal.SegmentStartTime
txn := thd.txn
txn.Lock()
if !txn.finished {
s = internal.StartSegment(&txn.TxnData, thd.thread, time.Now())
}
txn.Unlock()
return SegmentStartTime{
segment: segment{
start: s,
thread: thd,
},
}
}
const (
// Browser fields are encoded using the first digits of the license
// key.
browserEncodingKeyLimit = 13
)
func browserEncodingKey(licenseKey string) []byte {
key := []byte(licenseKey)
if len(key) > browserEncodingKeyLimit {
key = key[0:browserEncodingKeyLimit]
}
return key
}
func (txn *txn) BrowserTimingHeader() (*BrowserTimingHeader, error) {
txn.Lock()
defer txn.Unlock()
if !txn.Config.BrowserMonitoring.Enabled {
return nil, errBrowserDisabled
}
if txn.Reply.AgentLoader == "" {
// If the loader is empty, either browser has been disabled
// by the server or the application is not yet connected.
return nil, nil
}
if txn.finished {
return nil, errAlreadyEnded
}
txn.freezeName()
// Freezing the name might cause the transaction to be ignored, so check
// this after txn.freezeName().
if txn.ignore {
return nil, errTransactionIgnored
}
encodingKey := browserEncodingKey(txn.Config.License)
attrs, err := internal.Obfuscate(internal.BrowserAttributes(txn.Attrs), encodingKey)
if err != nil {
return nil, fmt.Errorf("error getting browser attributes: %v", err)
}
name, err := internal.Obfuscate([]byte(txn.FinalName), encodingKey)
if err != nil {
return nil, fmt.Errorf("error obfuscating name: %v", err)
}
return &BrowserTimingHeader{
agentLoader: txn.Reply.AgentLoader,
info: browserInfo{
Beacon: txn.Reply.Beacon,
LicenseKey: txn.Reply.BrowserKey,
ApplicationID: txn.Reply.AppID,
TransactionName: name,
QueueTimeMillis: txn.Queuing.Nanoseconds() / (1000 * 1000),
ApplicationTimeMillis: time.Now().Sub(txn.Start).Nanoseconds() / (1000 * 1000),
ObfuscatedAttributes: attrs,
ErrorBeacon: txn.Reply.ErrorBeacon,
Agent: txn.Reply.JSAgentFile,
},
}, nil
}
func createThread(txn *txn) *internal.Thread {
newThread := internal.NewThread(&txn.TxnData)
txn.asyncThreads = append(txn.asyncThreads, newThread)
return newThread
}
func (thd *thread) NewGoroutine() Transaction {
txn := thd.txn
txn.Lock()
defer txn.Unlock()
if txn.finished {
// If the transaction has finished, return the same thread.
return upgradeTxn(thd)
}
return upgradeTxn(&thread{
thread: createThread(txn),
txn: txn,
})
}
type segment struct {
start internal.SegmentStartTime
thread *thread
}
func endSegment(s *Segment) error {
if nil == s {
return nil
}
thd := s.StartTime.thread
if nil == thd {
return nil
}
txn := thd.txn
var err error
txn.Lock()
if txn.finished {
err = errAlreadyEnded
} else {
err = internal.EndBasicSegment(&txn.TxnData, thd.thread, s.StartTime.start, time.Now(), s.Name)
}
txn.Unlock()
return err
}
func endDatastore(s *DatastoreSegment) error {
if nil == s {
return nil
}
thd := s.StartTime.thread
if nil == thd {
return nil
}
txn := thd.txn
txn.Lock()
defer txn.Unlock()
if txn.finished {
return errAlreadyEnded
}
if txn.Config.HighSecurity {
s.QueryParameters = nil
}
if !txn.Config.DatastoreTracer.QueryParameters.Enabled {
s.QueryParameters = nil
}
if txn.Reply.SecurityPolicies.RecordSQL.IsSet() {
s.QueryParameters = nil
if !txn.Reply.SecurityPolicies.RecordSQL.Enabled() {
s.ParameterizedQuery = ""
}
}
if !txn.Config.DatastoreTracer.DatabaseNameReporting.Enabled {
s.DatabaseName = ""
}
if !txn.Config.DatastoreTracer.InstanceReporting.Enabled {
s.Host = ""
s.PortPathOrID = ""
}
return internal.EndDatastoreSegment(internal.EndDatastoreParams{
TxnData: &txn.TxnData,
Thread: thd.thread,
Start: s.StartTime.start,
Now: time.Now(),
Product: string(s.Product),
Collection: s.Collection,
Operation: s.Operation,
ParameterizedQuery: s.ParameterizedQuery,
QueryParameters: s.QueryParameters,
Host: s.Host,
PortPathOrID: s.PortPathOrID,
Database: s.DatabaseName,
})
}
func externalSegmentMethod(s *ExternalSegment) string {
if "" != s.Procedure {
return s.Procedure
}
r := s.Request
if nil != s.Response && nil != s.Response.Request {
r = s.Response.Request
}
if nil != r {
if "" != r.Method {
return r.Method
}
// Golang's http package states that when a client's Request has
// an empty string for Method, the method is GET.
return "GET"
}
return ""
}
func externalSegmentURL(s *ExternalSegment) (*url.URL, error) {
if "" != s.URL {
return url.Parse(s.URL)
}
r := s.Request
if nil != s.Response && nil != s.Response.Request {
r = s.Response.Request
}
if r != nil {
return r.URL, nil
}
return nil, nil
}
func endExternal(s *ExternalSegment) error {
if nil == s {
return nil
}
thd := s.StartTime.thread
if nil == thd {
return nil
}
txn := thd.txn
txn.Lock()
defer txn.Unlock()
if txn.finished {
return errAlreadyEnded
}
u, err := externalSegmentURL(s)
if nil != err {
return err
}
return internal.EndExternalSegment(internal.EndExternalParams{
TxnData: &txn.TxnData,
Thread: thd.thread,
Start: s.StartTime.start,
Now: time.Now(),
Logger: txn.Config.Logger,
Response: s.Response,
URL: u,
Host: s.Host,
Library: s.Library,
Method: externalSegmentMethod(s),
})
}
func endMessage(s *MessageProducerSegment) error {
if nil == s {
return nil
}
thd := s.StartTime.thread
if nil == thd {
return nil
}
txn := thd.txn
txn.Lock()
defer txn.Unlock()
if txn.finished {
return errAlreadyEnded
}
if "" == s.DestinationType {
s.DestinationType = MessageQueue
}
return internal.EndMessageSegment(internal.EndMessageParams{
TxnData: &txn.TxnData,
Thread: thd.thread,
Start: s.StartTime.start,
Now: time.Now(),
Library: s.Library,
Logger: txn.Config.Logger,
DestinationName: s.DestinationName,
DestinationType: string(s.DestinationType),
DestinationTemp: s.DestinationTemporary,
})
}
// oldCATOutboundHeaders generates the Old CAT and Synthetics headers, depending
// on whether Old CAT is enabled or any Synthetics functionality has been
// triggered in the agent.
func oldCATOutboundHeaders(txn *txn) http.Header {
txn.Lock()
defer txn.Unlock()
if txn.finished {
return http.Header{}
}
metadata, err := txn.CrossProcess.CreateCrossProcessMetadata(txn.Name, txn.Config.AppName)
if err != nil {
txn.Config.Logger.Debug("error generating outbound headers", map[string]interface{}{
"error": err,
})
// It's possible for CreateCrossProcessMetadata() to error and still have a
// Synthetics header, so we'll still fall through to returning headers
// based on whatever metadata was returned.
}
return internal.MetadataToHTTPHeader(metadata)
}
func outboundHeaders(s *ExternalSegment) http.Header {
thd := s.StartTime.thread
if nil == thd {
return http.Header{}
}
txn := thd.txn
hdr := oldCATOutboundHeaders(txn)
// hdr may be empty, or it may contain headers. If DistributedTracer
// is enabled, add more to the existing hdr
if p := thd.CreateDistributedTracePayload().HTTPSafe(); "" != p {
hdr.Add(DistributedTracePayloadHeader, p)
return hdr
}
return hdr