我正在尝试尝试Opentelemetry.js nodejs/express 库,并试图从 Istio 重写Sample的评论应用程序。bookinfo
我遵循了示例中给出的跟踪器配置:
我的请求处理程序为:
router.get('/:productIdStr', function(req, res, next) {
starsReviewer1 = -1
starsReviewer2 = -1
var productId = parseInt(req.params.productIdStr)
tracer = req.app.locals.tracer
api.context.with(api.propagation.extract(api.ROOT_CONTEXT, req.headers),async () => {
//---
var returnedData=""
span = {}
Promise.all(
[ function(){
span = req.app.locals.tracer.startSpan('calculate-reviews', {
kind: 1, // server
attributes: { star_colour: starColor },
});
let promise;
api.context.with(api.setSpan(api.context.active(), span),async () => {
additionalHeaders = {'Content-Type':'application/json'}
function addHeader(value, index, array) {
if (typeof req.headers[value] !== 'undefined' && req.headers[value] !== null){
additionalHeaders[value] = req.headers[value]}
}
headersToPropogate.forEach(addHeader)
api.propagation.inject(api.context.active(),additionalHeaders)
requstPath='http://'+ratingsService +":"+ratingsServicePort + "/ratings/" + productId
//GetRatings
// Make HTTP Call to the ratings service here.
promise = axios.get(
requstPath,
{headers:additionalHeaders}
)
.then((res) => {
log_info(span,"Get Ratings give value")
span.addEvent('Data available from ratings ');
returnedData=res.data
})
.catch((error) => {
log_info(span,"Get Ratings did not give value, Using default Values")
span.addEvent('Data not available from ratings ');
console.error(error)
})
.finally(() => {
span.end();
});
})
return promise;
}()]
)
.then(() => {
if (returnedData !== ""){
res.writeHead(200, {'Content-type': 'application/json'})
res.end(JSON.stringify(getJsonResponse(productId,returnedData.ratings.Reviewer1, returnedData.ratings.Reviewer1)))
}
else{
res.writeHead(200, {'Content-type': 'application/json'})
res.end(JSON.stringify(getJsonResponse(productId,starsReviewer1, starsReviewer1)))
}
})
.catch((error) => {
res.writeHead(200, {'Content-type': 'application/json'})
res.end(JSON.stringify(getJsonResponse(productId,starsReviewer1, starsReviewer1)))
})
.finally(()=>{
span.end()
})
})
//---
});
问题是:
- “计算评论”跨度没有关闭
- 如何删除似乎自动添加的“HTTP GET”。我试图覆盖这是我的跟踪器设置,但它不起作用。
node-express-reviews-service
除了以下内容之外,似乎还创建了一个新的跨度HTTP GET
:
registerInstrumentations({
tracerProvider: provider,
instrumentations: [
// Express instrumentation expects HTTP layer to be instrumented
new HttpInstrumentation({
requestHook: (span, request) => {
span.updateName("node-express-reviews-service")
}
}),
new ExpressInstrumentation(),
],
});