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
Currently we have a scoped tracepoint, which allows us to measure an time of executing the code:
{
ht_feature_callstack_start_string(timeline, "label");
// some codeht_feature_callstack_start_string_stop(timeline);
}
Unfortunately we can't measure time of code which is overlapping; e.g. we can't measure time for code1+code2 and code2+code3 at the same time using the same timeline:
// code1// code2// code3
We should design and implement timeline feature, which would allow us to measure time of any code; something like:
Hey 😊 I made a start on it on the train back on Tuesday. Started with the implementation of feature_callstack and worked from there. Getting some issues at the moment accessing events I put in a bag. Will spend a bit more time on it tonight/tomorrow and let you know if I need a hand.
Currently we have a scoped tracepoint, which allows us to measure an time of executing the code:
Unfortunately we can't measure time of code which is overlapping; e.g. we can't measure time for code1+code2 and code2+code3 at the same time using the same timeline:
We should design and implement timeline feature, which would allow us to measure time of any code; something like:
The text was updated successfully, but these errors were encountered: