@opentelemetry/plugin-grpc
Advanced tools
Comparing version 0.16.0 to 0.16.1-alpha.6
@@ -149,3 +149,3 @@ "use strict"; | ||
else { | ||
span.setStatus({ code: api_1.StatusCode.OK }); | ||
span.setStatus({ code: api_1.SpanStatusCode.OK }); | ||
span.setAttribute(semantic_conventions_1.RpcAttribute.GRPC_STATUS_CODE, plugin._moduleExports.status.OK.toString()); | ||
@@ -258,3 +258,3 @@ } | ||
else { | ||
span.setStatus({ code: api_1.StatusCode.OK }); | ||
span.setStatus({ code: api_1.SpanStatusCode.OK }); | ||
span.setAttribute(semantic_conventions_1.RpcAttribute.GRPC_STATUS_CODE, plugin._moduleExports.status.OK.toString()); | ||
@@ -311,3 +311,3 @@ } | ||
call.on('status', (status) => { | ||
span.setStatus({ code: api_1.StatusCode.OK }); | ||
span.setStatus({ code: api_1.SpanStatusCode.OK }); | ||
span.setAttribute(semantic_conventions_1.RpcAttribute.GRPC_STATUS_CODE, status.code.toString()); | ||
@@ -314,0 +314,0 @@ endSpan(); |
@@ -25,3 +25,3 @@ "use strict"; | ||
var __exportStar = (this && this.__exportStar) || function(m, exports) { | ||
for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p); | ||
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); | ||
}; | ||
@@ -28,0 +28,0 @@ Object.defineProperty(exports, "__esModule", { value: true }); |
@@ -1,2 +0,2 @@ | ||
import { StatusCode, Status } from '@opentelemetry/api'; | ||
import { SpanStatusCode, SpanStatus } from '@opentelemetry/api'; | ||
import * as grpcTypes from 'grpc'; | ||
@@ -6,7 +6,7 @@ import { IgnoreMatcher } from './types'; | ||
/** | ||
* Convert a grpc status code to an opentelemetry Status code. | ||
* Convert a grpc status code to an opentelemetry SpanStatus code. | ||
* @param status | ||
*/ | ||
export declare const _grpcStatusCodeToOpenTelemetryStatusCode: (status?: grpcTypes.status | undefined) => StatusCode; | ||
export declare const _grpcStatusCodeToSpanStatus: (status: number) => Status; | ||
export declare const _grpcStatusCodeToOpenTelemetryStatusCode: (status?: grpcTypes.status | undefined) => SpanStatusCode; | ||
export declare const _grpcStatusCodeToSpanStatus: (status: number) => SpanStatus; | ||
/** | ||
@@ -13,0 +13,0 @@ * Returns true if the current plugin configuration |
@@ -21,3 +21,3 @@ "use strict"; | ||
// Equivalent to lodash _.findIndex | ||
exports.findIndex = (args, fn) => { | ||
const findIndex = (args, fn) => { | ||
let index = -1; | ||
@@ -32,15 +32,18 @@ for (const arg of args) { | ||
}; | ||
exports.findIndex = findIndex; | ||
/** | ||
* Convert a grpc status code to an opentelemetry Status code. | ||
* Convert a grpc status code to an opentelemetry SpanStatus code. | ||
* @param status | ||
*/ | ||
exports._grpcStatusCodeToOpenTelemetryStatusCode = (status) => { | ||
const _grpcStatusCodeToOpenTelemetryStatusCode = (status) => { | ||
if (status !== undefined && status === 0) { | ||
return api_1.StatusCode.OK; | ||
return api_1.SpanStatusCode.OK; | ||
} | ||
return api_1.StatusCode.ERROR; | ||
return api_1.SpanStatusCode.ERROR; | ||
}; | ||
exports._grpcStatusCodeToSpanStatus = (status) => { | ||
exports._grpcStatusCodeToOpenTelemetryStatusCode = _grpcStatusCodeToOpenTelemetryStatusCode; | ||
const _grpcStatusCodeToSpanStatus = (status) => { | ||
return { code: exports._grpcStatusCodeToOpenTelemetryStatusCode(status) }; | ||
}; | ||
exports._grpcStatusCodeToSpanStatus = _grpcStatusCodeToSpanStatus; | ||
/** | ||
@@ -72,3 +75,3 @@ * Returns true if methodName matches pattern | ||
*/ | ||
exports._methodIsIgnored = (methodName, ignoredMethods) => { | ||
const _methodIsIgnored = (methodName, ignoredMethods) => { | ||
if (!ignoredMethods) { | ||
@@ -85,2 +88,3 @@ // No ignored gRPC methods | ||
}; | ||
exports._methodIsIgnored = _methodIsIgnored; | ||
//# sourceMappingURL=utils.js.map |
{ | ||
"name": "@opentelemetry/plugin-grpc", | ||
"version": "0.16.0", | ||
"version": "0.16.1-alpha.6+9cfa92c4", | ||
"description": "OpenTelemetry grpc automatic instrumentation package.", | ||
@@ -46,3 +46,3 @@ "main": "build/src/index.js", | ||
"@opentelemetry/grpc-utils": "^0.16.0", | ||
"@opentelemetry/node": "^0.16.0", | ||
"@opentelemetry/node": "^0.16.1-alpha.6+9cfa92c4", | ||
"@opentelemetry/tracing": "^0.16.0", | ||
@@ -56,3 +56,3 @@ "@types/mocha": "8.2.0", | ||
"grpc": "1.24.4", | ||
"gts": "2.0.2", | ||
"gts": "3.1.0", | ||
"mocha": "7.2.0", | ||
@@ -66,3 +66,3 @@ "node-pre-gyp": "0.17.0", | ||
"ts-node": "9.1.1", | ||
"typescript": "3.9.7" | ||
"typescript": "4.1.3" | ||
}, | ||
@@ -75,3 +75,3 @@ "dependencies": { | ||
}, | ||
"gitHead": "e68863f8e63854b08ad13fb54677294ac6d6b681" | ||
"gitHead": "9cfa92c4a5a56ceeaeaa8d043ee2eb00a561c55a" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
Found 1 instance in 1 package
56816
607
0
1