File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
nodejs/packages/layer/src Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -92,14 +92,14 @@ declare global {
9292}
9393
9494function getActiveInstumentations ( ) : Set < string > {
95- let emabledInstrumentations : string [ ] = defaultInstrumentationList ;
95+ let enabledInstrumentations : string [ ] = defaultInstrumentationList ;
9696 if ( process . env . OTEL_NODE_ENABLED_INSTRUMENTATIONS ) {
97- emabledInstrumentations =
97+ enabledInstrumentations =
9898 process . env . OTEL_NODE_ENABLED_INSTRUMENTATIONS . split ( ',' ) . map ( i =>
9999 i . trim ( ) ,
100100 ) ;
101101 }
102- const instrumentationSet = new Set < string > ( emabledInstrumentations ) ;
102+ const instrumentationSet = new Set < string > ( enabledInstrumentations ) ;
103103 if ( process . env . OTEL_NODE_DISABLED_INSTRUMENTATIONS ) {
104104 const disableInstrumentations =
105105 process . env . OTEL_NODE_DISABLED_INSTRUMENTATIONS . split ( ',' ) . map ( i =>
You can’t perform that action at this time.
0 commit comments