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
I'm trying to find a nice pattern to log out task timings. I'm using just for various processes and I have cases where I'd like to understand the impact of cmd switch on performance.
I've just come up with this way of logging out the timestamps, but it is a bit manual and messy. The alternative is use an external tool an annotate the justfile.
It would be good for just to summarise at least the top level task execution stats or a graph in a json file if you wanted to support a full breakdown.
Another thing maybe to OTEL enable it. I mean this would open up a whole world of possibilities for monitoring build pipelines and any subprocesses that are also OTEL enabled.
Scope Creeping already :D
One quick and dirty thing you could do in meantime is use strace to log syscalls, look for process invocations, and figure out the timings from that.
Currently I'm using time like this -> time just mytask
I'm trying to find a nice pattern to log out task timings. I'm using
just
for various processes and I have cases where I'd like to understand the impact of cmd switch on performance.I've just come up with this way of logging out the timestamps, but it is a bit manual and messy. The alternative is use an external tool an annotate the justfile.
It would be good for
just
to summarise at least the top level task execution stats or a graph in a json file if you wanted to support a full breakdown.Thanks for such a cool project. It's really changing the way I document my tiny projects.
The text was updated successfully, but these errors were encountered: