2016-07-18 21:16:35 +08:00

11 lines
211 B
JavaScript

'use strict';
module.exports = agent => {
const done = agent.readyCallback('custom-agent-ready')
const ins = agent.instrument('http', `/hello`);
setTimeout(() => {
ins.end();
done();
}, 500);
}