java - Can I use Perf4J across processes? -
i'm integrating perf4j in distributed application, task can prepared on 1 server , executed on another. we'd able track performance of these tasks including inter-process transport component, standard perf4j implementation doesn't seem work that.
it can serialize stopwatch object, seems more efficient pass start time value in work packet , initialize stopwatch start time on receiving end (the servers' clocks synchronized using ntp). see stopwatch constructor takes start time , elapsed time, javadoc says "should not called third party code."
is there way track performance of task begins in 1 process , completes on another, using perf4j or tool?
Comments
Post a Comment