Explore what's possible when you collaborate with your team. Edit project details anytime in project settings.
*indicates a required field.
Try a team name, project goal, milestone...
var wrm = require('wrm/data');
try {
var page_key = wrm.claim('apdex-full-page-load-key');
if (page_key) {
require(["internal/browser-metrics"], function (metrics) {
metrics.start({isInitial: true, key: page_key});
metrics.end({key: page_key});
});
}
} catch(err) {} // Ignore the error that is thrown when the key is claimed more than once.
try {
var bm_page_key = wrm.claim('browser-metrics-full-page-load-key');
if (bm_page_key) {
require(["browser-metrics-client"], function ({metrics}) {
var pageLoadMetric = metrics.pageLoad({
key: bm_page_key,
});
pageLoadMetric.stop();
window.performance.mark("jira.end")
});
}
} catch(err) {} // Ignore the error that is thrown when the key is claimed more than once.