UNPKG

@uyu423/pinpoint-node-agent

Version:

Pinpoint node agent provided by NAVER (Personalized version)

20 lines (16 loc) 315 B
/** * Pinpoint Node.js Agent * Copyright 2020-present NAVER Corp. * Apache License v2.0 */ 'use strict' const setAsyncId = (object, asyncId) => { object.__$pinpoint$_asyncId = asyncId } const getAsyncId = (object) => { return object.__$pinpoint$_asyncId } module.exports = { setAsyncId, getAsyncId }