Skip to content

Commit

Permalink
Disable flamecharts filters until back to work
Browse files Browse the repository at this point in the history
  • Loading branch information
lahmatiy committed Mar 20, 2024
1 parent dc94bbd commit ac59c25
Showing 1 changed file with 33 additions and 33 deletions.
66 changes: 33 additions & 33 deletions app/pages/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -326,39 +326,39 @@ const flamecharts = {
view: 'block',
className: 'filters',
content: [
{
view: 'checkbox',
name: 'showIdle',
checked: true,
content: 'text:"(idle)"',
tooltip: {
showDelay: true,
className: 'hint-tooltip',
content: 'md:"Time when the engine is waiting for tasks or not actively executing any JavaScript code. This could be due to waiting for I/O operations, timer delays, or simply because there\'s no code to execute at that moment."'
}
},
{
view: 'checkbox',
name: 'showProgram',
checked: true,
content: 'text:"(program)"',
tooltip: {
showDelay: true,
className: 'hint-tooltip',
content: 'text:"Time spent by the engine on tasks other than executing JavaScript code. This includes overheads like JIT compilation, managing execution contexts, and time in engine\'s internal code. It reflects the internal processing and environment setup necessary for running JavaScript code, rather than the execution of the code itself."'
}
},
{
view: 'checkbox',
name: 'showGC',
checked: true,
content: 'text:"(garbage collector)"',
tooltip: {
showDelay: true,
className: 'hint-tooltip',
content: 'text:"When the CPU profile shows time spent in the garbage collector, it indicates the time consumed in these memory management activities. Frequent or prolonged garbage collection periods might be a sign of inefficient memory use in the application, like creating too many short-lived objects or holding onto unnecessary references."'
}
}
// {
// view: 'checkbox',
// name: 'showIdle',
// checked: true,
// content: 'text:"(idle)"',
// tooltip: {
// showDelay: true,
// className: 'hint-tooltip',
// content: 'md:"Time when the engine is waiting for tasks or not actively executing any JavaScript code. This could be due to waiting for I/O operations, timer delays, or simply because there\'s no code to execute at that moment."'
// }
// },
// {
// view: 'checkbox',
// name: 'showProgram',
// checked: true,
// content: 'text:"(program)"',
// tooltip: {
// showDelay: true,
// className: 'hint-tooltip',
// content: 'text:"Time spent by the engine on tasks other than executing JavaScript code. This includes overheads like JIT compilation, managing execution contexts, and time in engine\'s internal code. It reflects the internal processing and environment setup necessary for running JavaScript code, rather than the execution of the code itself."'
// }
// },
// {
// view: 'checkbox',
// name: 'showGC',
// checked: true,
// content: 'text:"(garbage collector)"',
// tooltip: {
// showDelay: true,
// className: 'hint-tooltip',
// content: 'text:"When the CPU profile shows time spent in the garbage collector, it indicates the time consumed in these memory management activities. Frequent or prolonged garbage collection periods might be a sign of inefficient memory use in the application, like creating too many short-lived objects or holding onto unnecessary references."'
// }
// }
]
},
{
Expand Down

0 comments on commit ac59c25

Please sign in to comment.