Add more information to activity events

Reviewed By: matryoshcow

Differential Revision: D3950787

fbshipit-source-id: b6ac22027380a9f7cc7bcb39ecd33d5c9255301f
This commit is contained in:
David Aurelio 2016-09-30 07:34:12 -07:00 committed by Facebook Github Bot
parent 9b261dbc94
commit 90db4f3c6d
2 changed files with 4 additions and 1 deletions

View File

@ -369,6 +369,7 @@ class Bundler {
null,
{
telemetric: true,
entryPoint: entryFile,
},
);
const modulesByName = Object.create(null);

View File

@ -635,6 +635,7 @@ class Server {
return;
}
const options = this._getOptionsFromUrl(req.url);
const startReqEventId = Activity.startEvent(
'Requesting bundle',
{
@ -642,9 +643,10 @@ class Server {
},
{
telemetric: true,
entryPoint: options.entryFile,
details: req.url,
},
);
const options = this._getOptionsFromUrl(req.url);
debug('Getting bundle for request');
const building = this._useCachedOrUpdateOrCreateBundle(options);
building.then(