Re: Clojure performance measuring

2013-05-12 Thread Marc Hämmerle
Not really - at least not for what you presumably want to do. If you want to stick with NewRelic you could have a look at their custom instrumentation: https://newrelic.com/docs/java/custom-instrumentation-with-the-java-agent); otherwise I'd use something like metrics, ostrich and instrument the ca

Re: Clojure performance measuring

2013-05-12 Thread Marc Hämmerle
Even though New Relic works best when used with a supported server/container, you'll still get some basic JVM stats like memory out of it. Other than that you could also take a look metrics ( https://github.com/codahale/metrics) as it has JVM instrumentation in place and push the data to Graphite,

Re: Clojure performance measuring

2013-05-12 Thread Jonathon McKitrick
Does it help profile SQL calls as well? -- Jonathon McKitrick On Sun, May 12, 2013 at 8:30 AM, Kelker Ryan wrote: > Try VisualVM. https://visualvm.java.net/ > > Here's a screenshot of the memory usage monitor > https://visualvm.java.net/images/monitor.jpg > > 12.05.2013, 16:55, "Stuart Sierra

Re: Clojure performance measuring

2013-05-12 Thread Kelker Ryan
Try VisualVM. https://visualvm.java.net/ Here's a screenshot of the memory usage monitor https://visualvm.java.net/images/monitor.jpg 12.05.2013, 16:55, "Stuart Sierra" : > We've found YourKit (a commercial product) to be helpful. > -S > > On Sunday, May 12, 2013 2:46:52 AM UTC+10, Jonathon McKi

Re: Clojure performance measuring

2013-05-12 Thread Stuart Sierra
We've found YourKit (a commercial product) to be helpful. -S On Sunday, May 12, 2013 2:46:52 AM UTC+10, Jonathon McKitrick wrote: > > If I cannot get New Relic to work, I'm going to stick to my development > platform for initial optimization and memory troubleshooting. > > What tools do you reco

Clojure performance measuring

2013-05-11 Thread Jonathon McKitrick
If I cannot get New Relic to work, I'm going to stick to my development platform for initial optimization and memory troubleshooting. What tools do you recommend for profiling memory under Clojure? I didn't have much luck with VisualVM, since my Mac is a bit dated at this point, but I'd be wil