<#5163 Metrics do not account for bootstrapping ti...
# github-notifications
c
#5163 Metrics do not account for bootstrapping time Issue created by stuhood Metrics reported by pants itself do not currently account for time spent in options parsing and other bootstrapping, which (because they involve access to git and other things) can account for a significant amount of time. As demonstrated, about a second is unaccounted for here:
Copy code
$ time ./pants -x list :: | wc -l

Cumulative Timings
==================
4.213 main
4.062 main:setup
0.047 main:list
0.042 main:list:list
0.000 main:complete
0.000 main:setup:parse

Self Timings
============
4.061 main:setup
0.104 main
0.042 main:list:list
0.005 main:list
0.000 main:complete
0.000 main:setup:parse

Cache Stats
===========
No artifact cache reads.

    1573

real    0m5.648s
user    0m5.087s
sys     0m1.796s
pantsbuild/pants