Transaction tracer

A user specifies a threshold trace period and can initiate transaction tracing on one, some or all of the transactions running on a software system. Transactions with an execution time that exceeds the threshold trace period are reported to the user using a graphical user interface that lists transactions exceeding the specified threshold. For each listed transaction, a visualization can be provided that enables the user to immediately understand where time was being spent in the traced transaction.

Skip to: Description  ·  Claims  ·  References Cited  · Patent History  ·  Patent History
Description

This application claims the benefit of U.S. Provisional Application No. 60/419,689, “Web Application Monitoring,” filed on Oct. 18, 2002, which is incorporated herein by reference in its entirety.

CROSS-REFERENCE TO RELATED APPLICATIONS

This Application is related to U.S. patent application Ser. No. 10/079,966, “Detecting a Stalled Routine,” filed on Feb. 21, 2002; and U.S. patent application Ser. No. 10/318,327 “User Interface For Viewing Performance Information About Transactions,” by Lewis K. Cirne, filed on the same day as the present application. Both of these related patent applications are incorporated herein by reference in its entirety.

BACKGROUND OF THE INVENTION

1. Field of the Invention

The present invention is directed to technology for monitoring transactions in a computing environment.

2. Description of the Related Art

As the Internet's popularity grows, more businesses are establishing a presence on the Internet. These businesses typically set up web sites that run one or more web applications. One disadvantage of doing business on the Internet is that if the web site goes down, becomes unresponsive or otherwise is not properly serving customers, the business is losing potential sales and/or customers. Similar issues exist with Intranets and Extranets. Thus, there is a need to monitor live web applications and web sites to make sure that they are running properly.

One particular scenario that web application developers seek to avoid is a task that runs too slowly. For example, it may be expected that a task will take a fraction of one second to complete its functions; however, due to something going wrong, the task executes for thirty seconds. A task running too slowly can degrade performance of a web site, degrade performance of a web application, and cause an application to fail, or cause a web site to fail. Thus, there is a need to avoid poorly performing tasks.

When an application is performing poorly, the developer or administrator usually attempts to debug the software to figure out which code is causing the performance issues so that code can be fixed. While it is usually easy to detect when an application is performing poorly because the response time is noticeably slower, it is often very difficult to determine which portion of the software is responsible for the poor performance. Even if the developer can determine which method, function, routine, process, etc. the application was performing when the issues occurred, it is not clear whether the problem was because of that method, function, routine, process, etc. or another method, function, routine, process, etc called by that method, function, routine, process, etc.

Thus, there is a need to improve the ability to determine which portion of the software is responsible for an application performing poorly.

SUMMARY OF THE INVENTION

The present invention, roughly described, pertains to technology for monitoring transactions in a computing environment. Data is collected about a set of one or more transactions. This data is then tested against a set of criteria. Transactions meeting the criteria are reported. In one embodiment, data for transactions not meeting the criteria is discarded. The reported data can be used to identify which portion of the software is executing too slow or otherwise not functioning properly.

In one embodiment, a user specifies a threshold trace period and can initiate transaction tracing on one, some or all transactions running on a software system. Transactions with an execution time that exceeds the threshold trace period are reported to the user using a graphical user interface. The graphical user interface can include visualizations for reported transactions that enable the user to immediately understand where time was spent in the traced transaction.

One embodiment of the present invention includes instrumenting bytecode of an application to be monitored. The instrumented bytecode includes probes that monitor the transactions of interest. Agent software receives information from the probes and performs the test described herein. In one embodiment, if a transaction satisfies the criteria for the particular test being used, the Agent will report data for the transaction to the user interface. If the transaction does not meet the criteria, the Agent will discard the data. In this manner, memory usage and processing time is minimized because only data for transactions that are of interest is maintained, rather all transactions.

The present invention can be accomplished using hardware, software, or a combination of both hardware and software. The software used for the present invention is stored on one or more processor readable storage media including hard disk drives, CD-ROMs, DVDs, optical disks, floppy disks, tape drives, RAM, ROM or other suitable storage devices. In alternative embodiments, some or all of the software can be replaced by dedicated hardware including custom integrated circuits, gate arrays, FPGAs, PLDs, and special purpose computers. In one embodiment, software implementing the present invention is used to program one or more processors. The processors can be in communication with one or more storage devices, peripherals and/or communication interfaces.

These and other objects and advantages of the present invention will appear more clearly from the following description in which the preferred embodiment of the invention has been set forth in conjunction with the drawings.

BRIEF DESCRIPTION OF THE DRAWINGS

FIG. 1 is a block diagram describing how bytecode for an application is instrumented.

FIG. 2 is a block diagram of a system for monitoring an application. This system represents one example of a system that can implement the present invention.

FIG. 3 is a flow chart describing one embodiment of a process for tracing transactions using the system of FIG. 2.

FIG. 4 is a flow chart describing one embodiment of a process for starting the tracing of a transaction.

FIG. 5 is a flow chart describing one embodiment of a process for concluding the tracing of a transaction.

FIG. 6 is a flow chart describing one embodiment of a process for stopping the tracing of a transaction.

FIG. 7 is a flow chart describing one embodiment of a process for restarting the tracing of a transaction.

FIG. 8 depicts a graphical user interface.

FIG. 9 depicts a portion of the graphical user interface of FIG. 8.

FIG. 10 is a flow chart describing one embodiment of a process for reporting data in the transaction trace table of the graphical user interface depicted in FIG. 8.

FIG. 11 is a flow chart describing one embodiment of a process for displaying a transaction snap shot.

FIG. 12 is a flow chart describing one embodiment of a process for drawing a view for a component.

FIGS. 13A-E depict a portion of the graphical user interface.

FIG. 14 is a flow chart describing one embodiment of a process for reporting detailed information about a component of a transaction.

DETAILED DESCRIPTION

The present invention is directed to tracing transactions to identify which components of a transaction may be executing too slow. In one embodiment, the system traces transactions in order to identify those transactions that have an execution time greater than a threshold time. A transaction is a method, process, procedure, function, thread, set of instructions, etc. for performing a task. In one embodiment, the present invention is used to monitor methods in a Java environment. In that embodiment, a transaction is a method invocation in a running software system that enters the Java Virtual Machine (“JVM”) and exits the JVM (and all that it calls). In one embodiment, the system described below can initiate transaction tracing on one, some, or all transactions managed by the system. A user, or another entity, can specify a threshold trace period. All transactions whose root level execution time exceeds the threshold trace period are reported. In one embodiment, the reporting will be performed by a Graphical User Interface (“GUI”) that lists all transactions exceeding the specified threshold. For each listed transaction, a visualization can be provided that enables the user to immediately understand where time was being spent in the traced transaction. Although the implementation described below is based on a Java application, the present invention can be used with other programming languages, paradigms and/or environments.

There are many ways to implement the present invention. One example is to implement the present invention within an application performance management tool. One embodiment of such an application performance management tool monitors performance of an application by having access to the source code and modifying that source code. Sometimes, however, the source code is not available. Another type of tool performs application performance management without requiring access to or modification of the application's source code. Rather, the tool instruments the application's object code (also called bytecode). FIG. 1 depicts an exemplar process for modifying an application's bytecode. FIG. 1 shows Application 2, Probe Builder 4, Application 6 and Agent 8. Application 6 includes probes, which will be discussed in more detail below. Application 2 is the Java application before the probes are added. In embodiments that use programming language other than Java, Application 2 can be a different type of application.

Probe Builder 4 instruments (e.g. modifies) the bytecode for Application 2 to add probes and additional code to Application 2 in order to create Application 6. The probes measure specific pieces of information about the application without changing the application's business logic. Probe Builder 4 also installs Agent 8 on the same machine as Application 6. Once the probes have been installed in the bytecode, the Java application is referred to as a managed application. More information about instrumenting byte code can be found in U.S. Pat. No. 6,260,187 “System For Modifying Object Oriented Code” by Lewis K. Cirne, incorporated herein by reference in its entirety.

One embodiment of the present invention instruments bytecode by adding new code that activates a tracing mechanism when a method starts and terminates the tracing mechanism when the method completes. To better explain this concept consider the following example pseudo code for a method called “exampleMethod.” This method receives an integer parameter, adds 1 to the integer parameter, and returns the sum:

public int exampleMethod(int x) { return x + 1; }

One embodiment of the present invention will instrument this code, conceptually, by including a call to a tracer method, grouping the original instructions from the method in a “try” block and adding a “finally” block with a code that stops the tracer:

 public int  exampleMethod(int x)  {  IMethodTracer tracer = AMethodTracer.loadTracer(  “com.introscope.agenttrace.MethodTimer”,  this,  “com.wily.example.ExampleApp”,  “exampleMethod”,  “name=Example Stat”);   try {   return x + 1;   } finally  {  tracer.finishTrace( );  } }

IMethodTracer is an interface that defines a tracer for profiling. AMethodTracer is an abstract class that implements MethodTracer. IMethodTracer includes the methods startTrace and finishTrace. AMethodTracer includes the methods startTrace, finishTrace, dostartTrace and dofinishTrace. The method startTrace is called to start a tracer, perform error handling and perform setup for starting the tracer. The actual tracer is started by the method doStartTrace, which is called by startTrace. The method finishTrace is called to stop the tracer and perform error handling. The method finishTrace calls doFinishTrace to actually stop the tracer. Within AMethodTracer, startTrace and finishTracer are final and void methods; and doStartTrace and doFinishTrace are protected, abstract and void methods. Thus, the methods doStartTrace and do FinishTrace must be implemented in subclasses of AMethodTracer. Each of the subclasses of AMethodTracer implement the actual tracers. The method loadTracer is a static method that calls startTrace and includes five parameters. The first parameter, “com.introscope . . . . ” is the name of the class that is intended to be instantiated that implements the tracer (e.g. discussed below see FIGS. 4 and 5). The second parameter, “this” is the object being traced. The third parameter “com.wily.example . . . . ” is the name of the class that the current instruction is inside of. The fourth parameter, “exampleMethod” is the name of the method the current instruction is inside of. The fifth parameter, “name= . . . ” is the name to record the statistics under. The original instruction (return x+1) is placed inside a “try” block. The code for stopping the tracer (a call to the static method tracer.finishTrace) is put within the finally block.

The above example shows source code being instrumented. In one embodiment, the present invention doesn't actually modify source code. Rather, the present invention modifies object code. The source code examples above are used for illustration to explain the concept of the present invention. The object code is modified conceptually in the same manner that source code modifications are explained above. That is, the object code is modified to add the functionality of the “try” block and “finally” block. More information about such object code modification can be found in U.S. patent application Ser. No. 09/795,901, “Adding Functionality To Existing Code At Exits,” filed on Feb. 28, 2001, incorporated herein by reference in its entirety. In another embodiment, the source code can be modified as explained above.

FIG. 2 is a conceptual view of the components of the application performance management tool. In addition to managed Application 6 with probes 102 and 104, FIG. 2 also depicts Enterprise Manager 120, database 122, workstation 124 and workstation 126. As a managed application runs, probes (e.g. 102 and/or 104) relay data to Agent 8. Agent 8 then collects and summarizes the data, and sends it to Enterprise Manager 120. Enterprise Manager 120 receives performance data from managed applications via Agent 8, runs requested calculations, makes performance data available to workstations (e.g. 124 and 126) and optionally sends performance data to database 122 for later analysis. The workstations (e.g. 124 and 126) are the graphical user interface for viewing performance data. The workstations are used to create custom views of performance data which can be monitored by a human operator. In one embodiment, the workstations consist of two main windows: a console and an explorer. The console displays performance data in a set of customizable views. The explorer depicts alerts and calculators that filter performance data so that the data can be viewed in a meaningful way. The elements of the workstation that organize, manipulate, filter and display performance data include actions, alerts, calculators, dashboards, persistent collections, metric groupings, comparisons, smart triggers and SNMP collections.

In one embodiment of the system of FIG. 2, each of the components are running on different machines. That is, workstation 126 is on a first computing device, workstation 124 is on a second computing device, Enterprise Manager 120 is on a third computing device, and managed Application 6 is running on a fourth computing device. In another embodiment, two or more (or all) of the components are operating on the same computing device. For example, managed application 6 and Agent 8 may be on a first computing device, Enterprise Manager 120 on a second computing device and a workstation on a third computing device. Alternatively, all of the components of Figure two can run on the same computing device. Any or all of these computing devices can be any of various different types of computing devices, including personal computers, minicomputers, mainframes, servers, handheld computing devices, mobile computing devices, etc. Typically, these computing devices will include one or more processors in communication with one or more processor readable storage devices, communication interfaces, peripheral devices, etc. Examples of the storage devices include RAM, ROM, hard disk drives, floppy disk drives, CD ROMS, DVDs, flash memory, etc. Examples of peripherals include printers, monitors, keyboards, pointing devices, etc. Examples of communication interfaces include network cards, modems, wireless transmitters/receivers, etc. The system running the managed application can include a web server/application server. The system running the managed application may also be part of a network, including a LAN, a WAN, the Internet, etc. In some embodiments, all or part of the invention is implemented in software that is stored on one or more processor readable storage devices and is used to program one or more processors.

In one embodiment, a user of the system in FIG. 2 can initiate transaction tracing on all or some of the Agents managed by an Enterprise Manager by specifying a threshold trace period. All transactions inside an Agent whose execution time exceeds this threshold level will be traced and reported to the Enterprise Manager 120, which will route the information to the appropriate workstations who have registered interest in the trace information. The workstations will present a GUI that lists all transactions exceeding the threshold. For each listed transaction, a visualization that enables a user to immediately understand where time was being spent in the traced transaction can be provided.

FIG. 3 is a flowchart describing one embodiment of a process for tracing transactions using the system of FIG. 2. In step 200, a transaction trace session is started. In one embodiment of step 200, a window is opened and a user will select a dropdown menu to start a transaction trace session. In other embodiments, other methods can be used to start the session. In step 202, a dialog box is presented to the user. This dialog box will ask the user for various configuration information. In step 204, the various configuration information is provided by the user by typing information into the dialogue box. Other means for entering the information can also be used within the spirit of the present invention. One variable entered by the user in step 204 is the threshold trace period. That is, user enters a time, which could be in seconds, milliseconds, microseconds, etc. The system will only report those transactions that have an execution time longer than the threshold period provided. For example, if the threshold is one second, the system will only report transactions that are executing for longer than one second. In some embodiments, step 204 only includes providing a threshold time period. In other embodiments, other configuration data can also be provided. For example, the user can identify an Agent, a set of Agents, or all Agents. In that embodiment, only identified Agents will perform the transaction tracing described herein. In another embodiment, Enterprise Manager 120 will determine which Agents to use. Another configuration variable that can be provided is the session length. The session length indicates how long the system will perform the tracing. For example, if the session length is ten minutes, the system will only trace transactions for ten minutes. At the end of the ten minute period, new transactions that are started will not be traced; however, transactions that have already started during the ten minute period will continue to be traced. In other embodiments, at the end of the session length all tracing will cease regardless of when the transaction started. Other configuration data can also include specifying one or more userIDs, a flag set by an external process or other data of interest to the user. For example, the userID is used to specify that the only transactions initiated by processes associated with a particular one, or more userIDs will be traced. The flag is used so that an external process can set a flag for certain transactions, and only those transactions that have the flag set will be traced. Other parameters can also be used to identify which transactions to trace. The information provided in step 202 is used to create a filter.

In step 206 of FIG. 3, the workstation adds the new filter to a list of filters on the workstation. In step 208, the workstation requests Enterprise Manager 120 to start the trace using the new filter. In step 210, Enterprise Manager 120 adds the filter received from the workstation to a list of filters. For each filter in its list, Enterprise Manager 120 stores an identification of the workstation that requested the filter, the details of the filter (described above), and the Agents the filter applies to. In one embodiment, if the workstation does not specify which Agents the filter applies to, then the filter will apply to all Agents. In step 212, Enterprise Manager 120 requests the appropriate Agents to perform the trace. In step 214, the appropriate Agents perform the trace. In step 216, the Agents performing the trace send data to Enterprise Manager 120. More information about steps 214 and 216 will be provided below. In step 218, Enterprise Manager 120 matches the received data to the appropriate workstation/filter/Agent entry. In step 220, Enterprise Manager 120 forwards the data to the appropriate workstation(s) based on the matching in step 218. In step 222, the appropriate workstations report the data. In one embodiment, the workstation can report the data by writing information to a text file, to a relational database, or other data container. In another embodiment, a workstation can report the data by displaying the data in a GUI. More information about how data is reported is provided below.

As noted above, the Agents perform the tracing of the transactions. To perform such tracing, the Agents leverage what is called Blame technology. Blame Technology works in a managed Java Application to enable the identification of component interactions and component resource usage. Blame Technology tracks components that are specified to it. Blame Technology uses the concepts of consumers and resources. Consumers request some activity; resources perform the activity. A component can be both a consumer and a resource, depending on the context.

When reporting about transactions, the word Called designates a resource. This resource is a resource (or a sub-resource) of the parent component, which is the consumer. For example, under the consumer Servlet A (see below), there may be a sub-resource Called EJB. Consumers and resources can be reported in a tree-like manner. Data for a transaction can also be stored according to the tree. For example, if a Servlet (e.g. Servlet A) is a consumer of a network socket (e.g. Socket C) and is also a consumer of an EJB (e.g. EJB B), which is a consumer of a JDBC (e.g. JDBC D), the tree might look something like the following:

Servlet A Data for Servlet A Called EJB B Data for EJB B Called JDBC D Data for JDBC D Called Socket C Data for Socket C

In one embodiment, the above tree is stored by the Agent in a stack. This stack is called the Blame Stack. When transactions are started, they are pushed onto the stack. When transactions are completed, they are popped off the stack. In one embodiment, each transaction on the stack has the following information stored: type of transaction, a name used by the system for that transaction, a hash map of parameters, a timestamp for when the transaction was pushed onto the stack, and sub-elements. Sub-elements are Blame Stack entries for other components (e.g. methods, process, procedure, function, thread, set of instructions, etc.) that are started from within the transaction of interest. Using the tree as an example above, the Blame Stack entry for Servlet A would have two sub-elements. The first sub-element would be an entry for EJB B and the second sub-element would be an entry for Socket Space C. Even though a sub-element is part of an entry for a particular transaction, the sub-element will also have its own Blame Stack entry. As the tree above notes, EJB B is a sub-element of Servlet A and also has its own entry. The top (or initial) entry (e.g., Servlet A) for a transaction, is called the root component. Each of the entries on the stack is an object. While the embodiment described herein includes the use of Blame technology and a stack, other embodiments of the present invention can use different types of stack, different types of data structures, or other means for storing information about transactions.

FIG. 4 is a flowchart describing one embodiment of a process for starting the tracing of a transaction. The steps of FIG. 4 are performed by the appropriate Agent(s). In step 302, a transaction starts. In one embodiment, the process is triggered by the start of a method as described above (e.g. the calling of the “loadTracer” method). In step 304, the Agent acquires the desired parameter information. In one embodiment, a user can configure which parameter information is to be acquired via a configuration file or the GUI. The acquired parameters are stored in a hash map, which is part of the object pushed onto the Blame Stack. In other embodiments, the identification of parameters are pre-configured. There are many different parameters that can be stored. In one embodiment, the actual list of parameters used is dependent on the application being monitored. The present invention is not limited to any particular set of parameters. Table 1 provides examples of some parameters that can be used with the present invention. Other parameters can also be used.

TABLE 1 Parameters Appears in Value UserID Servlet, JSP The UserID of the end-user invoking the http servlet request. URL Servlet, JSP The URL passed through to the servlet or JSP, not including the Query String. URL Query Servlet, JSP The portion of the URL that specifies query parameters in the http request (text that follows the ‘?’ delimiter). Dynamic Dynamic JDBC The dynamic SQL statement, either SQL Statements in a generalized form or with all the specific parameters from the current invocation. Method Blamed Method The name of the traced method. If the timers (everything traced method directly calls another but Servlets, JSP's method within the same component, and JDBC only the “outermost” first Statements) encountered method is captured. Callable Callable JDBC The callable SQL statement, either in SQL statements a generalized form or with all the specific parameters from the current invocation. Prepared Prepared JDBC The prepared SQL statement, either SQL statements in a generalized form or with all the specific parameters from the current invocation. Object All non-static toString( ) of the this object of the methods traced component, truncated to some upper limit of characters. Class Name All Fully qualified name of the class of the traced component. Param_n All objects with toString( ) of the nth parameter WithParams passed to the traced method of the custom tracers component. Primary Key Entity Beans toString( ) of the entity bean's property key, truncated to some upper limit of characters.

In step 306, the system acquires a timestamp indicating the current time. In step 308, a stack entry is created. In step 310, the stack entry is pushed onto the Blame Stack. In one embodiment, the timestamp is added as part of step 310. The process of FIG. 4 is performed when a transaction is started. A process similar to that of FIG. 4 is performed when a sub-component of the transaction starts (e.g. EJB B is a sub-component of Servlet A—see tree described above).

FIG. 5 is a flowchart describing one embodiment of a process for concluding the tracing of a transaction. The process of FIG. 5 is performed by an Agent when a transaction ends. In step 340, the process is triggered by a transaction (e.g. method) ending as described above (e.g. calling of the method “finishTrace”). In step 342, the system acquires the current time. In step 344, the stack entry is removed. In step 346, the execution time of the transaction is calculated by comparing the timestamp from step 342 to the timestamp stored in the stack entry. In step 348, the filter for the trace is applied. For example, the filter may include a threshold period of one second. Thus, step 348, would include determining whether the calculated duration from step 346 is greater than one second. If the threshold is not exceeded (step 350), then the data for the transaction is discarded. In one embodiment, the entire stack entry is discarded. In another embodiment, only the parameters and timestamps are discarded. In other embodiments, various subsets of data can be discarded. In some embodiments, if the threshold period is not exceeded then the data is not transmitted by the Agent to other components in the system of FIG. 2. If the duration exceeds the threshold (step 350), then the Agent builds component data in step 360. Component data is the data about transaction that will be reported. In one embodiment, the component data includes the name of the transaction, the type of the transaction, the start time of the transaction, the duration of the transaction, a hash map of the parameters, and all of the sub-elements (which can be a recursive list of elements). Other information can also be part of the component data. In step 362, the Agent reports the component data by sending the component data via the TCP/IP protocol to Enterprise Manager 120.

FIG. 5 represents what happens when a transaction finishes. When a sub-component finishes, however, the steps performed include getting a time stamp, removing the stack entry for the sub-component and adding the completed sub-element to previous stack entry. In one embodiment, the filters and decision logic are applied to the start and end of the transaction, rather than to a specific sub-component.

Note, in one embodiment, if the transaction tracer is off, the system will still use the Blame Stack; however, parameters will not be stored and no component data will be created. In some embodiments, the system defaults to starting with the tracing technology off. The tracing only starts after a user requests it, as described above.

While the tracing is being performed, a user can stop the tracing and restart the tracing in real time by selecting buttons in the GUI. For example, FIG. 6 provides a flowchart describing one embodiment of a process for stopping the tracing of a transaction. In step 400, user selects the stop button on the GUI. In step 402, the workstation transmits the stop request to Enterprise Manager 120. Enterprise Manager 120 removes the trace from the active list of filters in step 404. In one embodiment, the trace information is not discarded, but stored in a separate file or list. Enterprise Manager 120 informs the appropriate Agents that the trace has been stopped in step 406. In step 408, the appropriate Agent stops tracing any new transactions that are started, but will continue to trace pending transactions. In other embodiments, all tracing ceases for that particular filter.

FIG. 7 is a flowchart describing one embodiment for a process for restarting a trace that was stopped. In step 440, the user selects the restart button in the GUI. In step 442, the workstation transmits a restart request to Enterprise Manager 120. Enterprise Manager 120 will place the filter back on the active list in step 444. In step 446, the Enterprise Manager 120 informs the appropriate Agents that the trace has been restarted. In step 448, the Agents will start tracing transactions that are newly started after the restart request. In addition, when performing step 448, the session length will be reset to its original value as specified in step 204.

In one embodiment, the Agents have anti-flooding logic that places a default limit on the number of transactions traced for time interval. For example, there may be a default limit of 200 transactions traced in a 15 second period. After this limit has been exceeded, the Agent will log that the anti-flood threshold was exceeded and will stop reporting transaction data until the 15 second period has expired, at which point transaction tracing resumes. Although the example uses a limit of 200 transactions traced in a 15-second period, other limits can also be used. The anti-flooding level can be adjusted by changing information in a configuration file, on a GUI, in a profile, etc.

FIG. 8 provides one example of a graphical user interface to be used for reporting transactions with the present invention. The GUI includes a transaction trace table 500 which lists all of the transactions that have satisfied the filter (e.g. execution time greater than the threshold). Because the number of rows on the table may be bigger than the allotted space, the transaction trace table 500 can scroll. Table 2, below, provides a description of each of the columns of transaction trace table 500.

TABLE 2 Column Header Value Host Host that the traced Agent is running on Process Agent Process name Agent Agent ID TimeStamp TimeStamp (in Agent's JVM's clock) of the (HH:MM:SS.DDD) initiation of the Trace Instance's root entry point Category Type of component being invoked at the root level of the Trace Instance. This maps to the first segment of the component's relative blame stack: Examples include Servlets, JSP, EJB, JNDI, JDBC, etc. Name Name of the component being invoked. This maps to the last segment of the blamed component's metric path. (e.g. for “Servlets|MyServlet”, Category would be Servlets, and Name would be MyServlet). URL If the root level component is a Servlet or JSP, the URL passed to the Servlet/JSP to invoke this Trace Instance. If the application server provides services to see the externally visible URL (which may differ from the converted URL passed to the Servlet/JSP) then the externally visible URL will be used in preference to the “standard” URL that would be seen in any J2EE Servlet or JSP. If the root level component is not a Servlet or JSP, no value is provided. Duration (ms) Execution time of the root level component in the Transaction Trace data UserID If the root level component is a Servlet or JSP, and the Agent can successfully detect UserID's in the managed application, the UserID associated with the JSP or Servlet's invocation. If there is no UserID, or the UserID cannot be detected, or the root level component is not a Servlet or JSP, then there will be no value placed in this column.

Each transaction that has an execution time greater than the threshold time period will appear in the transaction trace table 500. The user can select any of the transactions in the transaction trace table by clicking with the mouse or using a different means for selecting a row. When a transaction is selected, detailed information about that transaction will be displayed in transaction snapshot 502 and snapshot header 504.

Transaction snapshot 502 provides information about which transactions are called and for how long. Transaction snapshot 502 includes views (see the rectangles) for various transactions, which will be discussed below. If the user positions a mouse (or other pointer) over any of the views, mouse-over info box 506 is provided. Mouse-over info box 506 indicates the following information for a component: name/type, duration, timestamp and percentage of the transaction time that the component was executing. More information about transaction snapshot 502 will be explained below. Transaction snapshot header 504 includes identification of the Agent providing the selected transaction, the timestamp of when that transaction was initiated, and the duration. Transaction snapshot header 504 also includes a slider to zoom in or zoom out the level of detail of the timing information in transaction snapshot 502. The zooming can be done in real time.

In addition to the transaction snapshot, the GUI will also provide additional information about any of the transactions within the transaction snapshot 502. If the user selects any of the transactions (e.g., by clicking on a view), detailed information about that transaction is provided in regions 508, 510, and 512 of the GUI. Region 508 provides component information, including the type of component, the name the system has given to that component and a path to that component. Region 510 provides analysis of that component, including the duration the component was executing, a timestamp for when that component started relative to the start of the entire transaction, and an indication the percentage of the transaction time that the component was executing. Region 512 includes indication of any properties. These properties are one or more of the parameters that are stored in the Blame Stack, as discussed above.

The GUI also includes a status bar 514. The status bar includes indication 516 of how many transactions are in the transaction trace table, indication 518 of how much time is left for tracing based on the session length, stop button 520 (discussed above), and restart button 522 (discussed above).

FIG. 9 depicts transaction snapshot 502. Along the top of snapshot 502 is time axis 600. In one embodiment, time axis is in milliseconds. The granularity of the time access is determined by the zoom slider in snapshot header 504. Below the time axis is a graphical display of the various components of a transaction. The visualization includes a set of rows 604, 606, 608, and 610 along an axis indicating the call stack position. Each row corresponds to a level of subcomponents. The top row pertains to the root component 620. Within each row is one or more boxes which identify the components. In one embodiment, the identification includes indication of the category (which is the type of component—JSP, EJB, servlets, JDBC, etc.) and a name given to the component by the system. The root level component is identified by box 620 as JSP|Account. In the transaction snapshot, this root level component starts at time zero. The start time for the root level component is the start time for the transaction and the transaction ends when the root level component JSP|Account 620 completes. In the present case, the root level component completes in approximately 3800 milliseconds. Each of the levels below the root level 620 are components called by the previous level. For example, the method identified by JSP/Account may call a servlet called CustomerLookup. Servlet|CustomerLookup is called just after the start of JSP|Account 620 and Servlet|CustomerLookup 622 terminates approximately just less than 3500 milliseconds. Servlets|CustomerLookup 622 calls EJB|Entity|Customer 624 at approximately 200 milliseconds. EJB|entity customer 624 terminates at approximately 2400 milliseconds, at which time Servlet|CustomerLookup 622 calls EJB|Session|Account 626. EJB|session account 626 is started at approximately 2400 milliseconds and terminates at approximately 3400 milliseconds. EJB|EntityCustomer 624 calls JDBC|Oracle|Query 640 at approximately 250 milliseconds. JDBC|Oracle|Query 620 concludes at approximately 1000 milliseconds, at which time EJB|Entity|Customer 624 calls JDBC|Oracle|Update 642 (which itself ends at approximately 2300 milliseconds). EJB/Session/Account 626 calls JDBC|Oracle/Query 644, which terminates at approximately 3400 milliseconds. Thus, snapshot 502 provides a graphical way of displaying which components call which components. Snapshot 502 also shows how long each component was executing for. Thus, if the execution of JSP|Account 620 took too long, the graphical view of snapshot 502 will allow user to see which of the subcomponents is to blame for the long execution of JSP account 620.

The transaction snapshot provides for the visualization of time from left to right and the visualization of the call stack top to bottom. Clicking on any view allows the user to see more details about the selected component. A user can easily see which particular component is causing a transaction to run too slowly. That is, if a transaction is too slow, it is likely that one of the subcomponents is running significantly longer than the other subcomponents. The user can see which subcomponent is running longest and attempt to debug that particular sub-component.

FIG. 10 is a flowchart describing one embodiment of a process for reporting data in the transaction trace table 500. The process of FIG. 10 is performed by a workstation. In step 700, the workstation receives transaction information from Enterprise Manager 120. In step 702, the data is stored. In step 704, the data is added to the transaction table as a new row on table 500.

FIG. 11 is a flowchart describing one embodiment of a process for displaying a transaction snapshot. In step 720, the GUI receives a selection of a transaction. That is, the user selects one of the rows of transaction trace table 500. Each row of transaction trace table 500 represents data for one particular transaction. The user can select a transaction by clicking on the row. In other embodiments, other means can be used for selecting a particular transaction. In step 722, the data stored for that selected transaction is accessed. In step 724, the axis for the transaction snapshot is set up. In one embodiment, the system renders the time axis along the X axis. For example, in the embodiment depicted in FIG. 8, the time axis is from zero ms to 6000 ms. The zoom slider in snapshot header 504 (see FIG. 8) is used to change the time axis. In some embodiments, configuration files can be used to change the time. In one embodiment, the actual lime representing the axis for call stack position is not rendered; however, the axis is used as described herein. In step 726, the view for the root component is drawn. For example, in transaction snapshot 502, the view for “JSP|Account” is drawn. In step 728, views for each of the subcomponents of the root component are drawn. Additionally, the system recursively draws views for each subcomponent of each subcomponent. For example, looking at FIG. 8, the first root component JSP|Account is drawn. Then, the subcomponents of the root component are drawn (e.g., “Servlets|CustomerLookup” is drawn). Then, recursively for each subcomponent, a view is drawn. First, a view is drawn for EJB|Entity|Customer, then the subcomponents of EJB|Entity|Customer are drawn (e.g. JDBC|Oracle|Query and JDBC|Oracle|Update). After the components for EJB|Entity|Customer are drawn, the view for EJB|Session|Account is drawn, followed by the subcomponent JDBC|Oracle|Query.

FIG. 12 is a flowchart describing one embodiment of a process for drawing a view for a particular component. In step 760, the relative start time is determined. In one embodiment, the view is the root component, then the start time is at 0 ms. If the view is not from the root component, then the timestamp of the start of the component is compared to the timestamp of the start of the root component. The difference between the two timestamps is the start time for the component being rendered. In step 662, the relative stop time is determined. By relative, it is meant relative to the root component. Thus, the stop time is determined for the component being rendered. The stop time of the component being rendered is compared to the stop time of the root component. The difference in the actual stop time of the root component as compared to the actual stop time of the component under consideration is subtracted from the stop time of the root component in the transaction snapshot 502. In step 764, the X values (time axis) of the start and end of the rectangle for the view are determined based on the relative start time, relative stop time, and the zoom factor. Based on knowing the relative start time, the relative stop time, and the extent of the zoom slider, the exact coordinate of the beginning of the rectangle and the end of the rectangle can be determined. In step 768, the Y values (call stack position axis) of the top and bottom of the rectangle are determined based on the level of the subcomponent. That is, the Y values of all of the rectangles are predetermined based on whether it is the root component, the first subcomponent, second subcomponent, third subcomponent, etc. In step 770, the view is added to the transaction snapshot. In step 772, an additional view box for the calling component is also added. The calling component is a component that invokes the component being drawn. For example, in the transaction snapshot of 502, the calling component of Servlets|CustomerLookup is JSP|Account. More details of step 772 will be explained below with respect to FIGS. 13-A-E.

FIGS. 13-A-E depict a portion of transaction snapshot 502 during the process of creating the displayed snapshot. FIG. 13A shows transaction snapshot after view 800 for the root component is added to the transaction snapshot. The view includes a rectangle indicating the time duration and a label (e.g. “JSP|Account”). When the system is adding the root component, step 772 is not performed because there is not a calling component within the same transaction. FIG. 13B shows the transaction snapshot after the first subcomponent is added. The transaction snapshot now includes box 802, which includes a view box for the first subcomponent and the additional view box for the calling component. Note that the height of box 800 appears to be half the size of the height of box 802. That is because half of box 802 is part of the view for JSP|Account, the root component, and is added as part of step 772 during the process when the view for the first subcomponent is added. When the user moves the mouse over the view for JSP|Account, a mouse-over event will be created for that view. When there is a mouse-over event, two results occur. First, mouse-over info box 506(c) (FIG. 8) is depicted. Additionally, the view is highlighted. FIG. 13-C shows how the view for JSP|Account will be highlighted. The highlighting portion is marked by reference number 804 to show the view for JSP|Account. As can be seen, the view includes the original longer length box 800, plus a portion of box 802. Thus, when the view for JSP|Account was first created, only a portion of the view was displayed. Additional portions of the view are added to the original portion to indicate when that particular component is calling another sub-component.

FIG. 13-D shows the transaction snapshot after a subcomponent of “Servlets/CustomerLookup” is added. Box 810 has been added. Box 810 includes a portion of the view for EJB|Entity|Customer and a portion of the view for Servlets|CustomerLookup. Thus, when there is a mouse-over event for Servlets|CustomerLookup, then the view 812 for Servlets|CustomerLookup is highlighted, as can be seen in FIG. 13-E.

FIG. 14 is a flowchart describing one embodiment of a process for reporting detailed information about a component of the transaction. That is, when the user selects one of the components in transaction snapshot 502, detailed information is provided for that component in component information region 508, analysis region 510 and properties region 512. For example, if a user double-clicks on view 804 (see FIG. 13-C), then detailed information will be provided for root component JSP|Account. In step 830, the GUI receives the user's selection of a component. In step 832, the stored data for the chosen component is accessed. In step 834, the appropriate information is added to component information region 508. That is, the stored data is accessed and information indicating the type of component, the name of the component, and the path to the component are accessed and reported. Each of these data values are depicted in component information region 508. In step 836, data is added to the analysis region 510. That is, system accesses the stored duration (or calculates the duration), the timestamp, the start of the component relative to the start of the root component, and determines the percentage of transaction time used by that component. These values are displayed in the analysis region 510. The percentage of transaction times is calculated by dividing the duration of the selected component by the duration of the root component and multiplying by 100%. In step 838, data is added to the properties region. In one embodiment, the properties region will display the method invoked for the component. In other embodiments, other additional parameters can also be displayed. In one embodiment, regions 508, 510, and 512 are configurable to the display whatever the user configures it to display.

The user interface of FIG. 8 also includes a set of drop down menus. One of these menus can be used to allow the user to request a text file to be created. In response to the request by the user, the system will write all (or a configurable subset) of the information that is and/or can be displayed by the graphical user interface into a text file. For example, a text file can include the category, component name, timestamp, duration, percentage of the transaction time, URL, userID, host, process, Agent, all of the called subcomponents and similar data for the called subcomponents. Any and all of the data described above can be added to the text file.

The above discussion contemplates that the filter used by the Agent to determine whether to report a transaction is based on execution time. In other embodiments, other tests can be used. Examples of other tests include choosing based on UserID, provide a random sample, report any transaction whose execution time varies by a standard deviation, etc.

The foregoing detailed description of the invention has been presented for purposes of illustration and description. It is not intended to be exhaustive or to limit the invention to the precise form disclosed. Many modifications and variations are possible in light of the above teaching. The described embodiments were chosen in order to best explain the principles of the invention and its practical application to thereby enable others skilled in the art to best utilize the invention in various embodiments and with various modifications as are suited to the particular use contemplated. It is intended that the scope of the invention be defined by the claims appended hereto.

Claims

1. A machine implemented method for monitoring software; comprising:

monitoring performance of an application and generating performance data about the application, the monitoring and generating being performed on a computing device executing the application, the monitoring performance and generating performance data comprises: acquiring a first time stamp associated with a start of a transaction in response to a method being called, the method is called as part of the transaction, the method calls one or more resources to be performed as part of the transaction, acquiring parameter information for the transaction, creating a particular stack entry that identifies an invocation of the method, the first time stamp, the parameter information and the one or more resources called by the method, pushing the particular stack entry on a stack in response to the method being called, creating one or more additional stack entries for the one or more resources called by the method and pushing the one or more additional stack entries on to the stack, determining that the transaction has completed by detecting that the method has completed; acquiring a second time stamp when the method has completed, removing the particular stack entry from the stack in response to the method completing and accessing the first time stamp, and determining execution time of the transaction based on the first time stamp from the stack entry and the second time stamp;
determining whether the performance data satisfies a filter by comparing the execution time of the transaction to a threshold; and
transmitting report data about the transaction from the computing device executing the application to a different computing device only if the execution time of the transaction satisfies the threshold;
the report data about the transaction includes an identification of the transaction, the execution time of the transaction, the parameter information from the stack entry and an indication of the one or more resources called by the method.

2. The machine implemented method of claim 1, wherein:

the monitoring is performed by probes in the application and an agent on the computing device executing the application.

3. The machine implemented method of claim 2, further comprising:

accessing existing object code for the application; and
automatically changing the existing object code for the application by adding the probes into the application and adding the agent to the application.

4. The machine implemented method of claim 1, further comprising:

accessing existing object code for the application;
automatically modifying the existing object code by changing the existing object code and adding new object code; and
using the new object code and the changed existing object code to perform the monitoring performance and generating performance data.

5. The machine implemented method of claim 1, further comprising:

reporting the report data on a graphical user interface.

6. An apparatus for monitoring software, comprising:

a first computing device that includes manager software; and
a second computing device in communication with the first computing device, the second computing device includes a software application and monitoring software, the monitoring software monitors the software application and generates performance data about the software application based on the monitoring, the monitoring software determines whether the performance data satisfies a filter, the monitoring software transmits a subset of the performance data to the managing software on the first computing device, performance data that is determined to satisfy the filter is transmitted from the monitoring software to the managing software, performance data that is determined to not satisfy the filter is not transmitted from the monitoring software to the managing software;
the monitoring software monitors the software application and generates performance data by acquiring parameter information for a transaction; creating a particular stack entry that identifies an invocation of a method, a first timestamp, parameter information and one or more resources called by the method; pushing the particular stack entry on a stack in response to the method being called; creating one or more additional stack entries for the one or more resources called by the method and pushing the one or more additional stack entries on to the stack; determining that the transaction has completed by detecting that the method has completed; acquiring a second time stamp when the method has completed; removing the particular stack entry from the stack in response to the method completing and accessing the first time stamp; and determining execution time of the transaction based on the first time stamp from the stack entry and the second time stamp;
the monitoring software determines whether the performance data satisfies a filter based on comparing the execution time to a threshold.

7. The apparatus of claim 6, wherein:

the monitoring software includes probes in the software application and an agent on the second computing device.

8. One or more processor readable storage devices having processor readable code embodied on said processor readable storage devices, said processor readable code for programming one or more processors to perform a method comprising:

accessing existing object code for an application;
automatically modifying the existing object code by changing the existing object code and adding new object code;
monitoring performance of the application using the new object code and the changed existing object code, the monitoring being performed on the computing device that is executing the application;
generating performance data about the performance of the application in response to the monitoring, the generating being performed on the computing device executing the application;
determining whether the performance data satisfies a filter; and
transmitting a subset of performance data from the computing device that is executing the application to a different computing device than the computing device that is executing the application, performance data that is determined to satisfy the filter is transmitted to the different computing device, performance data that is determined to not satisfy the filter is not transmitted to the different computing device;
wherein monitoring performance and generating performance data comprises: acquiring a first timestamp associated with a start of a transaction in response to a method being called, the method is called as part of the transaction, the method calls one or more resources to be performed as part of the transaction; acquiring parameter information for the transaction; creating a particular stack entry that identifies an invocation of the method, the first timestamp, the parameter information and the one or more resources called by the method; pushing the particular stack entry on a stack in response to the method being called; creating one or more additional stack entries for the one or more resources called by the method and pushing the one or more additional stack entries on to the stack; determining that the transaction has completed by detecting that the method has completed; acquiring a second time stamp when the method has completed; removing the particular stack entry from the stack in response to the method completing and accessing the first time stamp; and determining execution time of the transaction based on the first time stamp from the stack entry and the second time stamp, the determining whether the performance data satisfies a filter is based on comparing the execution time to a threshold.
Referenced Cited
U.S. Patent Documents
5157779 October 20, 1992 Washburn et al.
5375199 December 20, 1994 Harrow et al.
5655081 August 5, 1997 Bonnell et al.
5732272 March 24, 1998 Gochee
5737518 April 7, 1998 Grover et al.
5784553 July 21, 1998 Kolawa et al.
5898873 April 27, 1999 Lehr
5903730 May 11, 1999 Asai et al.
5978594 November 2, 1999 Bonnell et al.
5996092 November 30, 1999 Augsburg et al.
6141699 October 31, 2000 Luzzi et al.
6167535 December 26, 2000 Foote et al.
6260187 July 10, 2001 Cirne
6263298 July 17, 2001 Kerman et al.
6282701 August 28, 2001 Wygodny et al.
6295642 September 25, 2001 Blandy
6295643 September 25, 2001 Brown et al.
6332212 December 18, 2001 Organ et al.
6360332 March 19, 2002 Weinberg et al.
6449739 September 10, 2002 Landan
6457142 September 24, 2002 Klemm et al.
6530075 March 4, 2003 Beadle et al.
6604210 August 5, 2003 Alexander et al.
6609216 August 19, 2003 Almy et al.
6738933 May 18, 2004 Fraenkel et al.
6751789 June 15, 2004 Berry et al.
6792460 September 14, 2004 Oulu et al.
6810494 October 26, 2004 Weinberg et al.
7120874 October 10, 2006 Shah et al.
7167870 January 23, 2007 Avvari et al.
7225361 May 29, 2007 Cobb et al.
7310777 December 18, 2007 Cirne
7512935 March 31, 2009 Cobb
20020170036 November 14, 2002 Cobb et al.
20030018909 January 23, 2003 Cuomo et al.
20030101381 May 29, 2003 Mateev et al.
20050039187 February 17, 2005 Avakian et al.
Foreign Patent Documents
1 024 430 February 2000 EP
WO02071182 September 2002 WO
Other references
  • Notice of Allowance, dated Oct. 9, 2007, U.S. Appl. No. 10/318,327, filed Dec. 12, 2002; Allowed Claims.
Patent History
Patent number: 7870431
Type: Grant
Filed: Dec 12, 2002
Date of Patent: Jan 11, 2011
Patent Publication Number: 20040078691
Assignee: Computer Associates Think, Inc. (Islandia, NY)
Inventors: Lewis K. Cirne (Redwood City, CA), Daryl L. Puryear (San Mateo, CA)
Primary Examiner: Robert Beausoliel
Assistant Examiner: Elmira Mehrmanesh
Attorney: Vierra Magen Marcus & DeNiro LLP
Application Number: 10/318,272
Classifications
Current U.S. Class: 714/38; Output Recording (e.g., Signature Or Trace) (714/45); 714/47; Tracing (717/128); Using Breakpoint (717/129)
International Classification: G06F 11/00 (20060101);