File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed
packages/opentelemetry-instrumentation-grpc/src Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ For notes on migrating to 2.x / 0.200.x see [the upgrade guide](doc/upgrade-to-2
48
48
49
49
* refactor (otlp- exporter- base): use getStringFromEnv instead of process .env [#5594 ](https: // github.com/open-telemetry/opentelemetry-js/pull/5594) @weyert
50
50
* chore (sdk- logs): refactored imports [#5801 ](https: // github.com/open-telemetry/opentelemetry-js/pull/5801) @svetlanabrennan
51
+ * refactor (instrumentation- grpc): updated path to semconv [#5884 ](https: // github.com/open-telemetry/opentelemetry-js/pull/5884) @overbalance
51
52
52
53
## 0.203 .0
53
54
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ import { AttributeNames } from './enums/AttributeNames';
30
30
import {
31
31
ATTR_RPC_GRPC_STATUS_CODE ,
32
32
RPC_GRPC_STATUS_CODE_VALUE_OK ,
33
- } from '../src /semconv' ;
33
+ } from './semconv' ;
34
34
import {
35
35
_grpcStatusCodeToSpanStatus ,
36
36
_grpcStatusCodeToOpenTelemetryStatusCode ,
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ import {
69
69
ATTR_RPC_METHOD ,
70
70
ATTR_RPC_SERVICE ,
71
71
ATTR_RPC_SYSTEM ,
72
- } from '../src /semconv' ;
72
+ } from './semconv' ;
73
73
74
74
import {
75
75
shouldNotTraceServerCall ,
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ import { AttributeNames } from './enums/AttributeNames';
49
49
import {
50
50
ATTR_RPC_GRPC_STATUS_CODE ,
51
51
RPC_GRPC_STATUS_CODE_VALUE_OK ,
52
- } from '../src /semconv' ;
52
+ } from './semconv' ;
53
53
54
54
export const CALL_SPAN_ENDED = Symbol ( 'opentelemetry call span ended' ) ;
55
55
You can’t perform that action at this time.
0 commit comments