123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- import {lastOfArray} from 'sentry/utils';
- import {CallTreeNode} from 'sentry/utils/profiling/callTreeNode';
- import {Frame} from 'sentry/utils/profiling/frame';
- import {stackMarkerToHumanReadable} from './../formatters/stackMarkerToHumanReadable';
- import {resolveJSSelfProfilingStack} from './../jsSelfProfiling';
- import {Profile} from './profile';
- import {createFrameIndex} from './utils';
- export class JSSelfProfile extends Profile {
- static FromProfile(
- profile: JSSelfProfiling.Trace,
- frameIndex: ReturnType<typeof createFrameIndex>
- ): JSSelfProfile {
- // In the case of JSSelfProfiling, we need to index the abstract marker frames
- // as they will otherwise not be present in the ProfilerStack.
- const markers: JSSelfProfiling.Marker[] = [
- 'gc',
- 'layout',
- 'other',
- 'paint',
- 'script',
- 'style',
- ];
- for (const marker of markers) {
- frameIndex[marker] = new Frame(
- {
- key: marker,
- name: stackMarkerToHumanReadable(marker),
- line: undefined,
- column: undefined,
- is_application: false,
- },
- 'web'
- );
- }
- const startedAt = profile.samples[0].timestamp;
- const endedAt = lastOfArray(profile.samples).timestamp;
- const jsSelfProfile = new JSSelfProfile({
- duration: endedAt - startedAt,
- startedAt,
- endedAt,
- name: 'JSSelfProfiling',
- unit: 'milliseconds',
- threadId: 0,
- });
- // Because JS self profiling takes an initial sample when we call new Profiler(),
- // it means that the first sample weight will always be zero. We want to append the sample with 0 weight,
- // because the 2nd sample may part of the first sample's stack. This way we keep the most information we can of the stack trace
- jsSelfProfile.appendSample(
- resolveJSSelfProfilingStack(
- profile,
- profile.samples[0].stackId,
- frameIndex,
- profile.samples[0].marker
- ),
- 0
- );
- // We start at stack 1, because we've already appended stack 0 above. The weight of each sample is the
- // difference between the current sample and the previous one.
- for (let i = 1; i < profile.samples.length; i++) {
- // When gc is triggered, the stack may be indicated as empty. In that case, the thread was not idle
- // and we should append gc to the top of the previous stack.
- // https://github.com/WICG/js-self-profiling/issues/59
- if (profile.samples[i].marker === 'gc') {
- jsSelfProfile.appendSample(
- resolveJSSelfProfilingStack(
- profile,
- // use the previous sample
- profile.samples[i - 1].stackId,
- frameIndex,
- profile.samples[i].marker
- ),
- profile.samples[i].timestamp - profile.samples[i - 1].timestamp
- );
- } else {
- jsSelfProfile.appendSample(
- resolveJSSelfProfilingStack(
- profile,
- profile.samples[i].stackId,
- frameIndex,
- profile.samples[i].marker
- ),
- profile.samples[i].timestamp - profile.samples[i - 1].timestamp
- );
- }
- }
- return jsSelfProfile.build();
- }
- appendSample(stack: Frame[], weight: number): void {
- this.trackSampleStats(weight);
- let node = this.appendOrderTree;
- const framesInStack: CallTreeNode[] = [];
- for (const frame of stack) {
- const last = lastOfArray(node.children);
- if (last && !last.isLocked() && last.frame === frame) {
- node = last;
- } else {
- const parent = node;
- node = new CallTreeNode(frame, node);
- parent.children.push(node);
- }
- node.addToTotalWeight(weight);
- // TODO: This is On^2, because we iterate over all frames in the stack to check if our
- // frame is a recursive frame. We could do this in O(1) by keeping a map of frames in the stack
- // We check the stack in a top-down order to find the first recursive frame.
- let stackHeight = framesInStack.length - 1;
- while (stackHeight >= 0) {
- if (framesInStack[stackHeight].frame === node.frame) {
- // The recursion edge is bidirectional
- framesInStack[stackHeight].setRecursiveThroughNode(node);
- node.setRecursiveThroughNode(framesInStack[stackHeight]);
- break;
- }
- stackHeight--;
- }
- framesInStack.push(node);
- }
- node.addToSelfWeight(weight);
- if (weight > 0) {
- this.minFrameDuration = Math.min(weight, this.minFrameDuration);
- }
- // Lock the stack node, so we make sure we dont mutate it in the future.
- // The samples should be ordered by timestamp when processed so we should never
- // iterate over them again in the future.
- for (const child of node.children) {
- child.lock();
- }
- node.frame.addToSelfWeight(weight);
- for (const stackNode of framesInStack) {
- stackNode.frame.addToTotalWeight(weight);
- }
- // If node is the same as the previous sample, add the weight to the previous sample
- if (node === lastOfArray(this.samples)) {
- this.weights[this.weights.length - 1] += weight;
- } else {
- this.samples.push(node);
- this.weights.push(weight);
- }
- }
- build(): JSSelfProfile {
- this.duration = Math.max(
- this.duration,
- this.weights.reduce((a, b) => a + b, 0)
- );
- // We had no frames with duration > 0, so set min duration to timeline duration
- // which effectively disables any zooming on the flamegraphs
- if (
- this.minFrameDuration === Number.POSITIVE_INFINITY ||
- this.minFrameDuration === 0
- ) {
- this.minFrameDuration = this.duration;
- }
- return this;
- }
- }
|