refactor(instrumentation-grpc): use relative path for semconv (#5884)
This commit is contained in:
parent
f689830253
commit
2d7eecbb19
|
|
@ -48,6 +48,7 @@ For notes on migrating to 2.x / 0.200.x see [the upgrade guide](doc/upgrade-to-2
|
|||
|
||||
* refactor(otlp-exporter-base): use getStringFromEnv instead of process.env [#5594](https://github.com/open-telemetry/opentelemetry-js/pull/5594) @weyert
|
||||
* chore(sdk-logs): refactored imports [#5801](https://github.com/open-telemetry/opentelemetry-js/pull/5801) @svetlanabrennan
|
||||
* refactor(instrumentation-grpc): updated path to semconv [#5884](https://github.com/open-telemetry/opentelemetry-js/pull/5884) @overbalance
|
||||
|
||||
## 0.203.0
|
||||
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ import { AttributeNames } from './enums/AttributeNames';
|
|||
import {
|
||||
ATTR_RPC_GRPC_STATUS_CODE,
|
||||
RPC_GRPC_STATUS_CODE_VALUE_OK,
|
||||
} from '../src/semconv';
|
||||
} from './semconv';
|
||||
import {
|
||||
_grpcStatusCodeToSpanStatus,
|
||||
_grpcStatusCodeToOpenTelemetryStatusCode,
|
||||
|
|
|
|||
|
|
@ -69,7 +69,7 @@ import {
|
|||
ATTR_RPC_METHOD,
|
||||
ATTR_RPC_SERVICE,
|
||||
ATTR_RPC_SYSTEM,
|
||||
} from '../src/semconv';
|
||||
} from './semconv';
|
||||
|
||||
import {
|
||||
shouldNotTraceServerCall,
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ import { AttributeNames } from './enums/AttributeNames';
|
|||
import {
|
||||
ATTR_RPC_GRPC_STATUS_CODE,
|
||||
RPC_GRPC_STATUS_CODE_VALUE_OK,
|
||||
} from '../src/semconv';
|
||||
} from './semconv';
|
||||
|
||||
export const CALL_SPAN_ENDED = Symbol('opentelemetry call span ended');
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue