Skip to content

Commit

Permalink
HPCC-30635 Change the default buckets for esp services
Browse files Browse the repository at this point in the history
Expanded ESP service execution profiling default bucket sizes to
100us 200us, 500us, 1ms 2ms 5ms 10ms 20ms 50ms 100ms 200ms 500ms 1s 5s 10s

Signed-Off-By: Kenneth Rowland [email protected]
  • Loading branch information
kenrowland committed Oct 23, 2023
1 parent 7d8b69a commit ea0e551
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/hidl/hidlcomp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6554,7 +6554,8 @@ void HIDLcompiler::processExecutionProfiling()
if (!si->executionProfilingEnabled)
{
si->executionProfilingEnabled = !si->getMetaInt("disable_profile_execution");
serviceProfilingOptions.append("ms,100,200,300,400,500,600,700,800,900,1000");
// set the default to the following buckets 100us 200us, 500us, 1ms 2ms 5ms 10ms 20ms 50ms 100ms 200ms 500ms 1s 5s 10s (in microsecond units)
serviceProfilingOptions.append("us,100,200,500,1000,2000,5000,10000,20000,50000,100000,200000,500000,1000000,5000000,10000000");
}
#endif

Expand Down

0 comments on commit ea0e551

Please sign in to comment.