You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* id: A unique numerical identifier for the call frame.
763
+
* name: A concise string describing the call frame (e.g., 'Evaluate Script', 'render', 'fetchData').
764
+
* duration: The total execution time of the call frame, including its children.
765
+
* selfTime: The time spent directly within the call frame, excluding its children's execution.
766
+
* urlIndex: Index referencing the "All URLs" list. Empty if no specific script URL is associated.
767
+
* childRange: Specifies the direct children of this node using their IDs. If empty ('' or 'S' at the end), the node has no children. If a single number (e.g., '4'), the node has one child with that ID. If in the format 'firstId-lastId' (e.g., '4-5'), it indicates a consecutive range of child IDs from 'firstId' to 'lastId', inclusive.
768
+
* S: **Optional marker.** The letter 'S' appears at the end of the line **only** for the single call frame selected by the user.`;
* id: A unique numerical identifier for the call frame.
208
+
* name: A concise string describing the call frame (e.g., 'Evaluate Script', 'render', 'fetchData').
209
+
* duration: The total execution time of the call frame, including its children.
210
+
* selfTime: The time spent directly within the call frame, excluding its children's execution.
211
+
* urlIndex: Index referencing the "All URLs" list. Empty if no specific script URL is associated.
212
+
* childRange: Specifies the direct children of this node using their IDs. If empty ('' or 'S' at the end), the node has no children. If a single number (e.g., '4'), the node has one child with that ID. If in the format 'firstId-lastId' (e.g., '4-5'), it indicates a consecutive range of child IDs from 'firstId' to 'lastId', inclusive.
213
+
* S: **Optional marker.** The letter 'S' appears at the end of the line **only** for the single call frame selected by the user.`;
* id: A unique numerical identifier for the call frame.
698
-
* name: A concise string describing the call frame (e.g., 'Evaluate Script', 'render', 'fetchData').
699
-
* duration: The total execution time of the call frame, including its children.
700
-
* selfTime: The time spent directly within the call frame, excluding its children's execution.
701
-
* urlIndex: Index referencing the "All URLs" list. Empty if no specific script URL is associated.
702
-
* childRange: Specifies the direct children of this node using their IDs. If empty ('' or 'S' at the end), the node has no children. If a single number (e.g., '4'), the node has one child with that ID. If in the format 'firstId-lastId' (e.g., '4-5'), it indicates a consecutive range of child IDs from 'firstId' to 'lastId', inclusive.
703
-
* S: **Optional marker.** The letter 'S' appears at the end of the line **only** for the single call frame selected by the user.`,
706
+
description: 'Returns the main thread activity for the selected insight.',
704
707
parameters: {
705
708
type: Host.AidaClient.ParametersTypes.OBJECT,
706
709
description: '',
@@ -743,6 +746,7 @@ export class PerformanceAgent extends AiAgent<TimelineUtils.AIContext.AgentFocus
0 commit comments