Re: [PATCH 0/2] add trace2 regions to fetch & push

2019-10-07 Thread Junio C Hamano
Junio C Hamano writes: > Yuck. It's already in 'next', isn't it? Yuck, indeed. Here is your v2 in an incremental form to be queued on top. Thanks. -- >8 -- Subject: [PATCH 3/2] transport: push codepath can take arbitrary repository The previous step added annotations with "the_repository" t

Re: [PATCH 0/2] add trace2 regions to fetch & push

2019-10-07 Thread Junio C Hamano
Josh Steadmon writes: > On 2019.10.07 14:46, Jonathan Tan wrote: >> > We'd like to collect better statistics about where the time is spent in >> > fetches and pushes so that we can hopefully identify some areas for >> > future optimization. So let's add some trace2 regions around some of the >> >

Re: [PATCH 0/2] add trace2 regions to fetch & push

2019-10-07 Thread Josh Steadmon
On 2019.10.07 14:46, Jonathan Tan wrote: > > We'd like to collect better statistics about where the time is spent in > > fetches and pushes so that we can hopefully identify some areas for > > future optimization. So let's add some trace2 regions around some of the > > fetch/push phases so we can b

Re: [PATCH 0/2] add trace2 regions to fetch & push

2019-10-07 Thread Jonathan Tan
> We'd like to collect better statistics about where the time is spent in > fetches and pushes so that we can hopefully identify some areas for > future optimization. So let's add some trace2 regions around some of the > fetch/push phases so we can break down their timing. Thanks. Patch 1 looks g

[PATCH 0/2] add trace2 regions to fetch & push

2019-10-02 Thread Josh Steadmon
We'd like to collect better statistics about where the time is spent in fetches and pushes so that we can hopefully identify some areas for future optimization. So let's add some trace2 regions around some of the fetch/push phases so we can break down their timing. Josh Steadmon (2): fetch: add