Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Apache Ant Profiler [closed]

Is there an Ant profiler that will run my ant script and tell me how long targets, tasks and operations took to complete?

Thanks

like image 391
prolink007 Avatar asked Oct 26 '12 19:10

prolink007


1 Answers

Ant has two related features to allow the build process to be monitored => listeners and loggers :

  • Ant >= 1.8.x ships with the ProfileLogger
  • Ant statistics, a logger that logs executions times for all targets, and graphs them over the time
  • Performance Monitor from antcontrib, a listener that keeps track of the amount of time that each target and task takes to execute and prints a final summary

or write your own.

like image 68
Rebse Avatar answered Oct 06 '22 10:10

Rebse