File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed
Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 621621 "security" : [],
622622 "bugfixes" : [],
623623 "features" : [
624- " Added supoort for Node 22" ,
624+ " Added support for Node 22" ,
625625 " Added AIM support for Meta Llama3 models in AWS Bedrock"
626626 ]
627627 }
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ ApdexStats.prototype.incrementFrustrating = function incrementFrustrating() {
5050}
5151
5252/**
53- * When merging apdex stastics , the apdex tolerating value isn't brought along
53+ * When merging apdex statistics , the apdex tolerating value isn't brought along
5454 * for the ride.
5555 *
5656 * @param {ApdexStats } other The existing apdex stats being merged in.
Original file line number Diff line number Diff line change @@ -222,7 +222,7 @@ Transaction.prototype.end = function end() {
222222 this . agent . emit ( 'transactionFinished' , this )
223223
224224 // Do after emit so all post-processing can complete
225- this . _cleanUneededReferences ( )
225+ this . _cleanUnneededReferences ( )
226226
227227 return this
228228}
@@ -237,7 +237,7 @@ Transaction.prototype.end = function end() {
237237 * in a memory leak. This is due to the TraceSegment not getting removed from the
238238 * async-hooks segmentMap because 'destroy' never fires.
239239 */
240- Transaction . prototype . _cleanUneededReferences = function _cleanUneededReferences ( ) {
240+ Transaction . prototype . _cleanUnneededReferences = function _cleanUnneededReferences ( ) {
241241 this . userErrors = null
242242 this . exceptions = null
243243}
@@ -843,8 +843,8 @@ Transaction.prototype.hasIgnoredErrorStatusCode = function _hasIgnoredErrorStatu
843843Transaction . prototype . hasErrors = function _hasErrors ( ) {
844844 const isErroredTransaction = urltils . isError ( this . agent . config , this . statusCode )
845845 const transactionHasExceptions = this . exceptions . length > 0
846- const transactionHasuserErrors = this . userErrors . length > 0
847- return transactionHasExceptions || transactionHasuserErrors || isErroredTransaction
846+ const transactionHasUserErrors = this . userErrors . length > 0
847+ return transactionHasExceptions || transactionHasUserErrors || isErroredTransaction
848848}
849849
850850/**
Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ class TransactionTraceAggregator extends TraceAggregator {
148148 _getMergeData ( ) {
149149 return {
150150 trace : this . trace ,
151- synthetics : this . synthetricsTraces
151+ synthetics : this . syntheticsTraces
152152 }
153153 }
154154
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ exports.config = {
2525 /**
2626 * This provides instrumentation for `setTimeout` and `setInterval` calls.
2727 * We recommend you disable this instrumentation as it does not not provide
28- * much value and creates a lot of unncessary TraceSegments/Span events.
28+ * much value and creates a lot of unnecessary TraceSegments/Span events.
2929 */
3030 instrumentation : {
3131 timers : {
You can’t perform that action at this time.
0 commit comments