Perf4J is a set of utilities for calculating and displaying perfomance statistics for Java code. For developers who are familiar with logging frameworks such as log4j or java.util.logging, an analogy helps to describe Perf4J: Perf4J is to System.currentTimeMillis() as log4j is to ...

learn more… | top users | synonyms

1
vote
0answers
13 views

Why the perf4j graphs are not generated?

I've integrated Perf4j in a standalone application. I'm using SLF4J / logback as the logging system. The statistics are correctly generated in the perfs.log, but nothing is generated in the ...
0
votes
1answer
35 views

Perf4j Profiled annotation on Spring beans … error for jmsConnectionFactory

I need to setup Perf4j on a Spring 3.2 based application. I have the following Spring xml configuration content: <?xml version="1.0" encoding="UTF-8"?> <beans ...
0
votes
0answers
24 views

Can I use perf4j in a multithreaded application

I'm using per4j in my application, it's been working for a while and I find it very useful for support and finding defects. I looked at their code and seems like they have unsynchronized access to ...
0
votes
1answer
76 views

Perf4j does not profile annotated Interface method

I have the following interface and class public interface ServiceA { @Profiled String getString(); } public class ServiceAImpl implements ServiceA{ String getString(){ ...
0
votes
0answers
150 views

perf4j on WebLogic

I have been trying to start perf4j with log4j on WebLogic (10.3.6), but unfortunately faild. Simple example works perfect. But on WebLogic I have been getting error: log4j:ERROR Could not create an ...
1
vote
0answers
199 views

perf4j GraphingStatisticsAppender not working

See http://perf4j.codehaus.org/devguide.html#Writing_Graphs_with_the_GraphingStatisticsAppender for an example using the org.perf4j.log4j.AsyncCoalescingStatisticsAppender Also, here is the perf4j ...
1
vote
0answers
61 views

mixing other counters with Perf4J

I recently started used Perf4J to do performance monitoring of a 3rd party system. I do this by using the Java API to perform default actions on the system (check in/check out, streaming,etc) and ...
0
votes
1answer
328 views

Need help to Integration of Perf4J with log4j.properties

I am trying to integrate Perf4j v0.9.16 with log4j v1.2.17. Below is Utils class which has a method. public class Utils { private static Logger logger = Logger.getLogger(Utils.class); ...
1
vote
1answer
181 views

Exposing perf4j performance statistics to JMX does not work

I am trying to expose performance statistics generated by perf4j to JMX using org.perf4j.logback.JmxAttributeStatisticsAppender appender, but it does not work. Following is the relevant portion of my ...
3
votes
1answer
155 views

Does Spring provide a class to measure performance of iterative code?

I need to measure performances on a specific part of my application. To calculate these measures, I use the Spring StopWatch class. In a method, there is a loop where I need to measure the execution ...
1
vote
1answer
296 views

Integrating perf4J with maven and logback

I am having problems integrating perf4j in an existing maven application. I tried several approaches, but none of them seemed to work, so I was wondering if anyone has some insight into how this is ...
0
votes
1answer
2k views

perf4j settings for logback.xml

hi folks I want to know exact config settings of logback.xml when it was using with perf4j. i create this configuration in logback.xml <configuration> <!-- Perf4J appenders --> ...
3
votes
1answer
2k views

How to configure load-time weaving with AspectJ and Tomcat?

I tried to configure load-time weaving (for doing profiling with Perf4J) in the next way: 1) I added aop.xml to META-INF folder. When deployed, META-INF is placed in the artifact root directory (i.e. ...
1
vote
0answers
86 views

Can I use Perf4J across processes?

I'm integrating Perf4J in a distributed application, where a task can be prepared on one server and executed on another. We'd really like to be able to track the performance of these tasks including ...
3
votes
1answer
1k views

How does AspectJ's load-time-weaver find META-INF\aop.xml?

I am attempting to use load-time-weaving to tie perf4j into a program, but it does not seem to be finding aop.xml in my classpath. Either that or it is not weaving the aspect because it is not finding ...
1
vote
1answer
472 views

NPE with Perf4j and Log4j

while using Perf4j together with Log4j I get the following exception: log4j:ERROR Error occured while converting date. java.lang.NullPointerException at java.lang.System.arraycopy(Native Method) at ...
0
votes
1answer
175 views

Perf4j on Websphere 7?

I'm trying to deploy an EAR to our Websphere Application Server version 7 (exactly 7.0.0.17). The previous version worked fine, I'm just trying to add some profiling details in our logs using Perf4j. ...
1
vote
1answer
289 views

How to resolve class references in an external config file for grails war deployment?

I am using Grails 1.3.7. I build a war file & deploy it in tomcat. I have an external groovy configuration file that I use to set up logging. I added some perf4j logging appenders to the ...
2
votes
2answers
2k views

perf4j @Profiled annotation not working

I have gone thru the below link from perf4J site and have done same to same: http://perf4j.codehaus.org/devguide.html#Using_Spring_AOP_to_Integrate_Timing_Aspects Added the following in my ...
1
vote
1answer
290 views

perf4J with MDC

Does anyone know if perf4J has support for log4j MDC. All my log statements are appended with MDC values, however the perf4J log statements don't show the MDC value. Please see below, I expect ...
1
vote
1answer
820 views

AspectJ Plugin Aspect Config with Maven using external Jar for Aspect

I am using Perf4j to do performance logging. It specifies that you use aop.xml to define which Aspect you want to be called at compile time depending on which logging system you are using. I cannot ...
2
votes
1answer
655 views

@Profiled annotations (for using Perf4j logging) in Eclipse

Im trying to get the @Profiled annotation to time (and log) method calls using Perf4j in my eclipse project. This uses aspectj. Ive managed easily to get it to work in the Windows command line with ...
0
votes
3answers
2k views

Perf4j Not Logging Correctly

I setup some stop watch calls in my code to measure some code blocks and all the messages are going into my primary log and not into the timing log. The perfStats.log file gets created just fine but ...
1
vote
2answers
372 views

I already have the log file. How can I make a graph of it?

I already have log file. Now what i need is to make the graph of that log file. Is there any command line tool or google API to make graph which will show every transaction time. Thank You
0
votes
1answer
101 views

Is there any other parameter other than timeslicing in perf4j

Is there any other parameter other than timeslicing in perf4j against which graph can be drawn Thank You
1
vote
1answer
271 views

Make graph of perf4j on the basis of request and maintain every day request performance

I want to make graph of perf4j on the basis of request and not on the basis of timeslice as shown when graph drawn for perf4j. How can the graph be drawn and maintained for current and past requests ...
0
votes
0answers
168 views

Graph for perf4j on per request basis

I am trying to plot the graph along with the log file of it. The graph is being plotted but in the perf4j log file it asks for the updates even when the the count is 0. How can it be stopped. Moreover ...
1
vote
2answers
1k views

How to make graph from perf4j log file?

I have used perf4j to calulate the performance of the process. Now I want to make the graph for that file. Is it possible to make it without using google API or any other metohd that can be used ...
1
vote
2answers
695 views

Is it possible to use perf4j without log4j?

I'm writing a library and would like to use perf4j mainly to expose JMX performance counters. According to the instructions here http://perf4j.codehaus.org/devguide.html perf4j is meant to be used in ...
18
votes
3answers
4k views

Have you used Perf4J to collect and analyze performance metrics in Java app? [closed]

Did you use Perf4J in your Java application to collect and analyze performance stats? What was the typical pattern (using log files, utilities, UI, JMX, etc.)? Did you use annotations and ...