专利摘要:
An end-to-end response time measurement method monitors the performance of a computer program by measuring the time between related messages that traverse inbound and outbound message queues.
公开号:US20010002463A1
申请号:US09/761,904
申请日:2001-01-17
公开日:2001-05-31
发明作者:Paul Klein;Raymond Ammerman
申请人:Klein Paul F.;Ammerman Raymond P.;
IPC主号:G06F11-3419
专利说明:
[0001] 1. Field of the Invention [0001]
[0002] This invention relates generally to computer hardware and software, and more particularly to an end-to-end response time measurement for computer programs. [0002]
[0003] 2. Description of Related Art [0003]
[0004] In today's environment, it is common for desktop computers to run many different local and/or network applications simultaneously. Within such computing environments, it is not unusual for one application to execute significantly slower than other applications. Further, it is not uncommon for the operation of one application to seriously impact the performance of other applications on the computer. As a result, the user may have to wait an inordinate amount of time for applications to respond. Obviously, the wait time experienced by a user is directly related to that person's productivity and business opportunity. [0004]
[0005] It can be difficult for the user to determine the performance of individual applications, based only on their observable behavior. For example, a user may be unable to reliably detect whether abnormal performance for a specific application is the result of operations performed by that application, or whether it is the result of the impact from another application, or whether it is the result of the performance of a remote system. Further, since each application may be able to perform many different kinds of processing, the user may have no idea that certain requests have significantly worse performance. Thus, there is a need in the art for techniques that allow the performance of various applications to be accurately and automatically measured. [0005] SUMMARY OF THE INVENTION
[0006] To overcome the limitations in the prior art described above, and to overcome other limitations that will become apparent upon reading and understanding the present specification, the present invention discloses a method, apparatus, and article of manufacture for measuring end-to-end response time for computer programs. [0006]
[0007] The method comprises the steps of detecting start and end times of a transaction, storing the start and end times in a memory of a computer, and subtracting the start time from the end time to calculate an end-to-end response time. [0007]
[0008] Various advantages and features of novelty which characterize the invention are pointed out with particularity in the claims annexed hereto and form a part hereof. However, for a better understanding of the invention, its advantages, and the objects obtained by its use, reference should be made to the drawings which form a further part hereof, and to accompanying descriptive matter, in which there is illustrated and described specific examples in accordance with the invention. [0008] BRIEF DESCRIPTION OF THE DRAWINGS
[0009] Referring now to the drawings in which like numbers represent similar features throughout: [0009]
[0010] FIG. 1 illustrates an exemplary hardware environment that could be used to implement the preferred embodiment of the present invention; [0010]
[0011] FIG. 2 is a block diagram that illustrates the various software components of the present invention; and [0011]
[0012] FIG. 3 is a flow chart illustrating the steps used in the present invention. [0012] DETAILED DESCRIPTION OF THE PREFERRED EMBODIMENT
[0013] In the following description of the preferred embodiment, reference is made to the accompanying drawings which form a part hereof, and in which is shown by way of illustration the specific embodiment in which the invention may be practiced. It is to be understood that other embodiments may be utilized and structural and functional changes may be made without departing from the scope of the present invention. [0013] Hardware Environment
[0014] FIG. 1 illustrates an exemplary hardware environment that could be used to implement the preferred embodiment of the present invention. The exemplary hardware environment may include, inter alia, a client computer [0014] 100 and/or a server computer 102 connected to the client 100. Both the client 100 and server 102 generally include, inter alia, a processor, random access memory (RAM), read only memory (ROM), a monitor 104, data storage devices, data communications devices, etc. The client 100 and server 102 may also include data input devices such as a mouse pointing device 106 and a keyboard 108. Of course, those skilled in the art will recognize that any combination of the above components, or any number of different components, peripherals, and other devices, may be used with the client and/or server.
[0015] The client [0015] 100 and the server 102 each operate under the control of their respective operating systems, such as OS/2™, Windows NT, UNIX, MVS, etc. The respective operating systems of the client 100 and server will also control the operation of any computer programs executed by the client 100 and the server 102.
[0016] The present invention comprises a monitoring function that is preferably implemented by one or more computer programs executed by the client [0016] 100. Generally, these computer programs are tangibly embodied in or readable from a computer-readable medium or carrier, e.g., one or more of the fixed and/or removable data storage data devices and/or data communications devices attached to the client or the server. These computer programs comprise instructions which, when read and executed by client 100, cause the client 100 to perform the steps necessary to execute the steps or elements of the present invention.
[0017] Those skilled in the art will recognize that the exemplary environment illustrated in FIG. 1 is not intended to limit the present invention. Indeed, those skilled in the art will recognize that other alternative hardware environments may be used without departing from the scope of the present invention. [0017] Monitoring Functions
[0018] The computer program that implements the monitoring functions of the present invention (referred to as the “monitor program”) uses standard “hooks” in the operating system to monitor the message queues used to communicate commands and/or data sent by other computer programs (referred to as “applications” herein) to and from other entities, such as the graphical user interface (GUI) component provided by the operating system, hardware devices, or other computers. Keeping track of the messages traversing these message queues, by application, provides the basis for measuring an application's end-to-end response time. [0018]
[0019] The message queues are monitored for certain message types to initiate, update, and/or end a measured end-to-end response time between a user interaction with the client [0019] 100, an operation performed by an application, and the resulting display of data on the monitor 104 of the client 100. Such message types may include messages that indicate mouse movements, pressing mouse 106 buttons, keyboard 108 operations, window creations, window “painting”, or other device functions.
[0020] For example, message types relating to mouse [0020] 106 clicks, depressing the ENTER key, window creation in the GUI, and other window or device events in the GUI may be used to initiate or start the monitoring function. Similarly, message types relating to mouse 106 clicks, window “painting” or updates in the GUI, window destruction in the GUI, and other window events in the GUI may be used to update or end the monitoring function. The resulting measured end-to-end response time between these events comprises performance data that may be dynamically displayed for the user (e.g., as timing measurements are initiated or updated) and/or stored for later reporting and analysis.
[0021] In the preferred embodiment of the present invention, the operating system provides the ability for the monitor program to examine the content of messages on a given message queue. This interface is provided through an Application Program Interface (API) provided by the operating system. To compute an application's end-to-end response time, the monitor program issues the appropriate API call and registers itself as a listener of all messages in a queue. Thereafter, any messages that traverse the queue are also presented to the monitor program. [0021]
[0022] When the monitor program receives notification of an inbound message to the application (usually generated as a result of a mouse [0022] 106, keyboard 108, window event, or other device event), the monitor program samples the value of a clock to mark the beginning of a transaction. Thereafter, the application also receives the inbound message and begins its processing. When processing by the application is complete, an outbound message is generated from the application. When the monitor program receives notification of the outbound message from the application, the monitor program again samples the value of a clock to mark the ending of the transaction. The difference between the sampled time values associated with the inbound and outbound messages is the end-to-end response time for the application.
[0023] However, an application can and frequently does generate multiple outbound messages as part of its processing. Moreover, between these outbound messages, the application can continue to perform its processing associated with a transaction. Because of this, it becomes hard to determine the true end of the application's processing, which is needed to accurately measure the end-to-end response time. So, in order to be sure the monitor program has captured the entire processing time of the transaction, the end-to-end response time is always reported as the difference in time between receipt of the inbound message and the last outbound message generated by the application. If multiple outbound messages are generated before another inbound message is received, then the end-to-end response time is updated multiple times to reflect the difference in time between the inbound message and the last-received outbound message. [0023] Software Components
[0024] FIG. 2 is a block diagram that illustrates the various software components of the present invention. The client [0024] 100 includes a monitor program 110, application 112, inbound message queue 114, and outbound message queue 116. Although only one application 112 is shown in FIG. 2, many applications 112 could be running simultaneously and the monitor program 110 would collect data for each independently. Further, there may be multiple queues 114 and 116 that can be monitored.
[0025] The monitor program [0025] 110 registers its interest in seeing messages on the inbound message queue 114 and outbound message queue 116 by issuing an API call to the operating system (called WinSetHook in OS/2 and similarly named in Windows NT). The API call provides for the creation of “clones” of messages and the transmission of these clones to computer programs registered with the operating system. Once this API call is made, the monitor program 110 is ready to receive all messages sent to and from the application 112.
[0026] User input via the mouse [0026] 106 or keyboard 108 initiates a request (also called a transaction) for information that causes the operating system to create an inbound message that is sent to the inbound message queue 114. Similarly, the operating system itself can also generate inbound messages in response to “window” or other device events, that are also sent to the inbound message queue 114. Once a message arrives at inbound message queue 114, it is “cloned” and sent to the monitor program 110 before being sent to the application 112.
[0027] To start the monitoring function, the monitor program [0027] 110 takes note of the inbound message, such as a mouse 106 or keyboard 108 or “window event” message, by sampling the current time value of a clock function provided by the client 100 and labeling this as the “start time” for the transaction. The application 112 then processes the inbound message, which may, for example, result in the generation of a request to the server 102, which is also transmitted as a message through the outbound message queue 116. The server 102 processes the request and then returns the results back to the application 112 as a message via the inbound message queue 114. When the processing by the application 112 is completed, it generates an outbound message, such as a “window paint” message, which is sent to the outbound message queue 116.
[0028] The monitor program [0028] 110 receives a “clone” of each outbound message, because it is registered to see messages on outbound message queue 116. The monitor program 110 takes note of the outbound “window paint” message by again sampling the current time value of the clock function provided by the client 100 and labeling this as the “end time” for the transaction. The time difference between the “end time” and the “start time” comprises the measured end-to-end response time for the entire transaction (which may include the interaction between the client 100 and server 102 as illustrated above).
[0029] Depending on how the application [0029] 112 is constructed, it may still continue to process data after the first outbound “window paint” message is sent to outbound message queue 116. The monitor program 110 continues to monitor for outbound “window paint” messages from application 112 sent to the outbound message queue 116 and updates the end-to-end response time accordingly. More specifically, upon notification of subsequent outbound “window paint” messages, before receipt of another inbound mouse 106 or keyboard 108 or window event message, the monitor program 110 updates the response time using the sampled time associated with the last outbound “window paint” message as the “end time” of the transaction.
[0030] In addition to monitoring end-to-end response time for a specific application [0030] 112, the monitor program 110 can also monitor end-to-end response times for client-server requests (as described above) or for multiple windows associated with a specific application. For example, if the application 112 includes multiple windows, the monitor program 110 can identify the name (i.e., title) given each window and their associated inbound and outbound mouse or keyboard or window event messages. Detailed Control Flow and Message Recording Method
[0031] In the preferred embodiment, the response time information obtained by the present invention is stored in a double linked, circular list [0031] 118, although other data structures may be used as well. When all the list 118 entries are used up, the list 118 will “wrap” or start to re-use oldest list 118 entries first. In addition, the list 118 may be written to a data storage device, so no loss of information occurs.
[0032] The analysis and reporting of response time measurements goes through three basic conversation points: initiate, update and terminate. These conversation points use different messages and message queues to obtain the information. A discussion of these conversation points follows. [0032]
[0033] For example, a response time measurement of an application that interacts with the GUI component of the operating system may be initiated by monitoring the inbound message queue for one of the following message types: [0033]
[0034] Window Create [0034]
[0035] Mouse Button 1 Down [0035]
[0036] Enter Key [0036]
[0037] Button Activation [0037]
[0038] As a message is examined, its process id (pid), thread id (tid), message queue handle (msgq) and session id (sessid) are determined through standard API functions provided by the operating system. If the message is one of the above, the list [0038] 118 is searched backwards to find an active list 118 entry with the corresponding pid, tid and msgq. An active entry is defined as a list 118 entry that has been initiated but not yet marked closed.
[0039] If an active entry is found with a matching pid, tid and msgq, and the message is a “window create” message, the window handle is saved if the sessid indicates that it is a title-bar window. This will be used later to determine the title of the window or the transaction name. Next, the message is discarded and a return to the operating system is executed. If an active entry is found with a matching pid, tid and msgq, and the message is not a “window create” message, the list [0039] 118 entry is marked closed and no new timings are reported for that list 118 entry. At this point, a new list 118 entry is initiated. The executable file name of the application 112 and the time are determined and stored away in the list 118 entry along with the pid, tid and msgq.
[0040] Similarly, a response time measurement of an application that interacts with the GUI component of the operating system may be updated by monitoring the outbound message queue [0040] 116 for message types:
[0041] Window Paint [0041]
[0042] If the message being examined on the outbound message queue is a “window paint” message, the list [0042] 118 is searched for an active entry with a matching pid, tid and msgq. When found, the current time value is obtained and subtracted from the time value the transaction started. Next, the text is queried from the title bar window handle to get the name of the transaction. Thereafter, the transaction's executable file name, pid, tid, start time, current elapsed time, and transaction name may be displayed by the monitor program 110.
[0043] An application [0043] 112 may receive any number of “window paint” messages during the course of a transaction. The present invention provides a dynamic update mechanism that automatically reports the information each time a “window paint” message is encountered for a given active application 112. Also note that the present invention will report on any number of active applications 112 that may or may not be executing simultaneously.
[0044] Finally, a response time measurement of an application that interacts with the GUI component of the operating system may be terminated or closed by monitoring the inbound message queue [0044] 114 for one of the following message types:
[0045] Mouse Button 1 Down [0045]
[0046] Mouse Button 2 Down [0046]
[0047] When either of the above messages are encountered on the inbound message queue [0047] 114, the list 118 is searched for a matching pid, tid and msgq. If found, the entry is marked closed and no new timings will be reported for that list 118 entry. This mechanism must be used to close the transaction since in a message-driven GUI environment, there is no message that indicates that the transaction has finished updating or painting the window displayed by the GUI component of the operating system.
[0048] When the list [0048] 118 entry is marked closed, the last reported timing from an update or “window paint” message is not altered, so the true transaction response time is not affected by this user interaction. If the user triggered a Mouse Button 1 Down, then in some cases this will be seen on the outbound message queue 116 and a new response time measurement will be initiated for the window or application 112 in focus. If the user triggered a Mouse Button 2 Down, then no new response time measurement will be initiated.
[0049] In addition to the scenario described above, client/server applications, such as the Netscape web browser, can be monitored to provide a means of “bracketing” transactions in a more automated fashion, particularly when the application's response time measurement is started and stopped. [0049]
[0050] In this situation, the enabling and disabling of the Stop button window displayed by the Netscape web browser may serve as the transaction initiation and termination identifiers, respectively. This allows the user to discern the difference between the retrieval of information from the Internet (this is the true response time) and the display of the information, once downloaded from the Internet, on the monitor [0050] 104, which may continue indefinitely for some web sites.
[0051] The response time measurement is initiated by monitoring the outbound message queue [0051] 116 for the Stop button window id and the Window Enable message. When the above situation is encountered, a new list 118 entry is initiated as described above. In addition, message traffic between the Netscape web browser and the server 102 may also be monitored.
[0052] The updating of the transaction response time for the Netscape web browser is the same as the generic update method described above. The response time measurement is terminated by monitoring the outbound message queue [0052] 116 for the Stop button window id and the Window Disable message. When the above situation is encountered, the list 118 entries are searched for an active matching pid, tid and msgq. When found, a final time value is recorded and the response time is updated with this last time delta, thereby providing the true response time of the targeted web site. The list 118 entry is then marked closed and Netscape message traffic recording is disabled. Logic
[0053] FIG. 3 is a flow chart illustrating the logic of the present invention. Block [0053] 120 represents the monitor program 110 waiting for a message to traverse either the inbound or outbound message queue. Block 122 is a decision block that represents the monitor program 110 determining whether the message traversed the inbound message queue. If so, control transfers to Block 124 which represents the monitor program 110 sampling a time value from a clock for the start time. Thereafter, control transfers back to Block 120. Block 126 is a decision block that represents the monitor program 110 determining whether the message is traversing the outbound message queue. If so, control transfers to Block 128 which represents the monitor program sampling a time value from the clock for the in time and Block 130 which represents the monitor program 110 calculating the response time. Thereafter, control transfers back to Block 120. Conclusion
[0054] The foregoing description of the preferred embodiment of the invention has been presented for the 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. It is intended that the scope of the invention be limited not by this detailed description, but rather by the claims appended hereto. [0054]
权利要求:
Claims (18)
[1" id="US-20010002463-A1-CLM-00001] 1. A method for measuring end-to-end response time for a transaction performed by a computer, comprising the steps of:
monitoring a first queue and a second queue in a computer;
assigning a start time when a first message is received at the first queue;
assigning a stop time when a second message, sent in response to the first message, is received at the second queue; and
subtracting the start time from the stop time to calculate an end-to-end response time.
[2" id="US-20010002463-A1-CLM-00002] 2. The method of
claim 1 , further comprising the steps of:
updating the stop time when a third message, sent in response to the first message, is received at the second queue; and
subtracting the start time from the stop time to calculate the end-to-end response time.
[3" id="US-20010002463-A1-CLM-00003] 3. The method of
claim 1 , wherein the end-to-end response time is calculated for a plurality of computer programs executed by the computer.
[4" id="US-20010002463-A1-CLM-00004] 4. The method of
claim 1 , wherein the end-to-end response time is calculated for a plurality of windows displayed by a computer program executed by the computer.
[5" id="US-20010002463-A1-CLM-00005] 5. The method of
claim 1 , wherein the second message is selected from a group comprising a window create message, a mouse button 1 down message, an enter key message, and a button activation message.
[6" id="US-20010002463-A1-CLM-00006] 6. The method of
claim 1 , wherein the first message is a window paint message.
[7" id="US-20010002463-A1-CLM-00007] 7. A computerized apparatus for measuring end-to-end response time for a transaction performed by a computer, comprising:
a computer;
a first queue and a second queue in the computer, the first queue and the second queue containing messages;
a start time, assigned to a first message when the first message is received at the first queue;
a stop time, assigned to a second message when the second message, sent in response to the first message, is received at the second queue; and
an end-to-end response time, calculated by subtracting the start time from the stop time.
[8" id="US-20010002463-A1-CLM-00008] 8. The computerized apparatus of
claim 7 , further comprising:
a third message, sent in response to the first message, received at the second queue and receiving a second stop time; and
the end-to-end response time being calculated by subtracting the second stop time from the start time.
[9" id="US-20010002463-A1-CLM-00009] 9. The computerized apparatus of
claim 7 , wherein the end-to-end response time is calculated for a plurality of computer programs executed by the computer.
[10" id="US-20010002463-A1-CLM-00010] 10. The computerized apparatus of
claim 7 , wherein the end-to-end response time is calculated for a plurality of windows displayed by a computer program executed by the computer.
[11" id="US-20010002463-A1-CLM-00011] 11. The computerized apparatus of
claim 7 , wherein the second message is selected from a group comprising a window create message, a mouse button 1 down message, an enter key message, and a button activation message.
[12" id="US-20010002463-A1-CLM-00012] 12. The computerized apparatus of
claim 7 , wherein the first message is a window paint message.
[13" id="US-20010002463-A1-CLM-00013] 13. An article of manufacture comprising a program storage medium readable by a computer having a memory, the medium tangibly embodying one or more programs of instructions executable by the computer to perform method steps for measuring end-to-end response time for a transaction performed by the computer, the method comprising the steps of:
monitoring a first queue and a second queue in a computer;
assigning a start time when a first message is received at the first queue;
assigning a stop time when a second message, sent in response to the first message, is received at the second queue; and
subtracting the start time from the stop time to calculate an end-to-end response time.
[14" id="US-20010002463-A1-CLM-00014] 14. The method of
claim 13 , further comprising the steps of:
updating the stop time when a third message, sent in response to the first message, is received at the second queue; and
subtracting the start time from the stop time to calculate the end-to-end response time.
[15" id="US-20010002463-A1-CLM-00015] 15. The method of
claim 13 , wherein the end-to-end response time is calculated for a plurality of computer programs executed by the computer.
[16" id="US-20010002463-A1-CLM-00016] 16. The method of
claim 13 , wherein the end-to-end response time is calculated for a plurality of windows displayed by a computer program executed by the computer.
[17" id="US-20010002463-A1-CLM-00017] 17. The method of
claim 13 , wherein the second message is selected from a group comprising a window create message, a mouse button 1 down message, an enter key message, and a button activation message.
[18" id="US-20010002463-A1-CLM-00018] 18. The method of
claim 13 , wherein the first message is a window paint message.
类似技术:
公开号 | 公开日 | 专利标题
US5991705A|1999-11-23|End-to-end response time measurement for computer programs using starting and ending queues
US5872976A|1999-02-16|Client-based system for monitoring the performance of application programs
US10348809B2|2019-07-09|Naming of distributed business transactions
KR100322152B1|2002-02-04|client-based application availability and response monitoring and reporting for distributed computing enviroments
KR100447041B1|2004-09-07|Method and system for making performance test scenarios and for testing, analyzing and motoring the performance of servers in multi-tier distributed computing environment.
EP1226698B1|2009-01-28|Communication between client and server computers via http, method, computer program product and system
US8171133B2|2012-05-01|Management apparatus and management method for computer system
US7797415B2|2010-09-14|Automatic context-based baselining for transactions
US6526371B1|2003-02-25|Round trip response time measurement for computer programs
US6917971B1|2005-07-12|Method and apparatus for determining a response time for a segment in a client/server computing environment
US20160226728A1|2016-08-04|Automatic capture of detailed analysis information for web application outliers with very low overhead
US10191844B2|2019-01-29|Automatic garbage collection thrashing monitoring
KR19990048443A|1999-07-05|Communication Event / Message Tracking Method of RPC-based Distributed Processing Program
US10223407B2|2019-03-05|Asynchronous processing time metrics
KR100221375B1|1999-09-15|Method and apparatus for detecting performance problems in a computer system
US20080232263A1|2008-09-25|System and method for correlating a network packet exchange with a period of a transaction
US8521472B2|2013-08-27|Method to compute wait time
US9935856B2|2018-04-03|System and method for determining end user timing
JP2002215475A|2002-08-02|System and method for measuring web server response time, and recording medium
Tsykin2001|ON WEB QUALITY OF SERVICE: APPROACHES TO MEASUREMENT OF END-TO-END RESPONSE TIME |
US20110029506A1|2011-02-03|Method and apparatus for bounding large query operations
同族专利:
公开号 | 公开日
US20020091959A1|2002-07-11|
US6202036B1|2001-03-13|
US5991705A|1999-11-23|
US6484129B2|2002-11-19|
US6341260B2|2002-01-22|
引用文献:
公开号 | 申请日 | 公开日 | 申请人 | 专利标题
US4849879A|1986-09-02|1989-07-18|Digital Equipment Corp|Data processor performance advisor|
US4868785A|1987-01-27|1989-09-19|Tektronix, Inc.|Block diagram editor system and method for controlling electronic instruments|
US4930093A|1988-08-01|1990-05-29|Ncr Corporation|Method of measuring message response time performance of a data processing system including data terminals|
US5109486A|1989-01-06|1992-04-28|Motorola, Inc.|Distributed computer system with network and resource status monitoring|
US5068814A|1989-11-07|1991-11-26|Array Analysis, Inc.|Interactive adaptive inference system|
US5511185A|1990-11-27|1996-04-23|Mercury Interactive Corporation|System for automatic testing of computer software having output synchronization and capable of responding to asynchronous events|
US5412803A|1992-02-20|1995-05-02|International Business Machines Corporation|Communications system having plurality of originator and corresponding recipient buffers with each buffer having three different logical areas for transmitting messages in single transfer|
US5483468A|1992-10-23|1996-01-09|International Business Machines Corporation|System and method for concurrent recording and displaying of system performance data|
US5553235A|1992-10-23|1996-09-03|International Business Machines Corporation|System and method for maintaining performance data in a data processing system|
US5506955A|1992-10-23|1996-04-09|International Business Machines Corporation|System and method for monitoring and optimizing performance in a data processing system|
US5519438A|1994-06-30|1996-05-21|Intel Corporation|Computer with a video subsystem that contains timers which are used to create calibration tables correlating time intervals with the decoding and converting of video input signals|
US5717745A|1995-04-24|1998-02-10|Mci Communications Corporation|System and method of efficiently evaluating different messages by a server in a telecommunications environment|
US5802302A|1995-06-29|1998-09-01|International Business Machines Corporation|System and method for response time measurement in high speed data transmission networks|
US5872976A|1997-04-01|1999-02-16|Landmark Systems Corporation|Client-based system for monitoring the performance of application programs|
US5991705A|1997-07-23|1999-11-23|Candle Distributed Solutions, Inc.|End-to-end response time measurement for computer programs using starting and ending queues|US6216163B1|1997-04-14|2001-04-10|Lucent Technologies Inc.|Method and apparatus providing for automatically restarting a client-server connection in a distributed network|
US5991705A|1997-07-23|1999-11-23|Candle Distributed Solutions, Inc.|End-to-end response time measurement for computer programs using starting and ending queues|
JP3125006B2|1998-04-07|2001-01-15|コナミ株式会社|Character image display control method and apparatus, recording medium|
WO2000019320A1|1998-09-30|2000-04-06|Netscout Service Level Corporation|Evaluating computer resources by end-user emulation|
JP3704243B2|1998-10-07|2005-10-12|ソニーケミカル株式会社|VDT work monitoring apparatus and monitoring method|
US7376741B1|1999-03-19|2008-05-20|Hewlett-Packard Development Corporation, L.P.|System for aborting response to client request if detecting connection between client server is closed by examining local server information|
US6587878B1|1999-05-12|2003-07-01|International Business Machines Corporation|System, method, and program for measuring performance in a network system|
US6526371B1|1999-10-27|2003-02-25|Candle Distributed Solutions, Inc.|Round trip response time measurement for computer programs|
US7887551B2|1999-12-02|2011-02-15|Smith & Nephew, Inc.|Soft tissue attachment and repair|
US7153312B1|1999-12-02|2006-12-26|Smith & Nephew Inc.|Closure device and method for tissue repair|
US7120676B2|2000-04-28|2006-10-10|Agilent Technologies, Inc.|Transaction configuration system and method for transaction-based automated testing|
US7555542B1|2000-05-22|2009-06-30|Internap Network Services Corporation|Method and system for directing requests for content to a content server based on network performance|
US6981055B1|2000-08-22|2005-12-27|Internap Network Services Corporation|Method and system for optimizing routing through multiple available internet route providers|
US6567767B1|2000-09-19|2003-05-20|Unisys Corporation|Terminal server simulated client performance measurement tool|
US20020112049A1|2000-12-14|2002-08-15|International Business Machines Corporation|Measuring response time for a computer accessing information from a network|
US20020174134A1|2001-05-21|2002-11-21|Gene Goykhman|Computer-user activity tracking system and method|
US7024477B2|2001-06-29|2006-04-04|International Business Machines Corporation|Service time analysis methods for the WSM QOS monitor|
US7051339B2|2001-06-29|2006-05-23|Goldman, Sachs & Co.|System and method to measure latency of transaction information flowing through a computer system|
US20030131120A1|2002-01-09|2003-07-10|International Business Machines Corporation|Automation and dynamic matching of business to business processes|
US7099816B2|2002-06-17|2006-08-29|International Business Machines Corporation|Method, system and article of manufacture for an analytic modeling technique for handling multiple objectives|
US6810361B1|2002-06-19|2004-10-26|Hewlett-Packard Development Company, L.P.|Estimating utilization of an electronic system component|
AU2003294379A1|2002-12-20|2004-07-29|Tokyo Electron Limited|Method and apparatus for determining consumable lifetime|
US9314235B2|2003-02-05|2016-04-19|Smith & Nephew, Inc.|Tissue anchor and insertion tool|
US7484209B2|2003-08-12|2009-01-27|Hewlett-Packard Development Company, L.P.|Instrumenting java code by modifying bytecodes|
US20050039171A1|2003-08-12|2005-02-17|Avakian Arra E.|Using interceptors and out-of-band data to monitor the performance of Java 2 enterprise editionapplications|
US7493622B2|2003-08-12|2009-02-17|Hewlett-Packard Development Company, L.P.|Use of thread-local storage to propagate application context in Java 2 enterprise editionapplications|
US7437734B2|2003-08-12|2008-10-14|Hewlett-Packard Development Company, L.P.|Propagating web transaction context into common object modelbusiness logic components|
US7496903B2|2003-08-12|2009-02-24|Hewlett-Packard Development Company, L.P.|Synthesizing application response measurementinstrumentation|
US20060224925A1|2005-04-05|2006-10-05|International Business Machines Corporation|Method and system for analyzing an application|
US20060293709A1|2005-06-24|2006-12-28|Bojarski Raymond A|Tissue repair device|
US20070016687A1|2005-07-14|2007-01-18|International Business Machines Corporation|System and method for detecting imbalances in dynamic workload scheduling in clustered environments|
US8079037B2|2005-10-11|2011-12-13|Knoa Software, Inc.|Generic, multi-instance method and GUI detection system for tracking and monitoring computer applications|
US7756973B2|2006-04-27|2010-07-13|International Business Machines Corporation|Identifying a configuration for an application in a production environment|
US20080026819A1|2006-07-05|2008-01-31|Aruze Gaming America, Inc.|Slot machine and playing method thereof|
US20080032766A1|2006-07-18|2008-02-07|Aruze Gaming America, Inc.|Slot machine and playing method thereof|
US8856804B2|2008-02-08|2014-10-07|Microsoft Corporation|Performance indicator for measuring responsiveness of user interface applications to user input|
US8046195B2|2008-08-26|2011-10-25|Red Hat, Inc.|Performance testing of enterprise service bus|
JP5112277B2|2008-12-18|2013-01-09|株式会社日立製作所|Reproduction processing method, computer system, and program|
US20110022899A1|2009-07-27|2011-01-27|Vitali Greenberg|Producing or executing a script for an operation test of a terminal server|
US8584123B2|2009-10-08|2013-11-12|International Business Machines Corporation|Linking transactions|
US9117013B2|2009-10-08|2015-08-25|International Business Machines Corporation|Combining monitoring techniques|
US10157117B2|2009-10-08|2018-12-18|International Business Machines Corporation|Processing transaction timestamps|
US8849975B2|2010-02-02|2014-09-30|Webtrends Inc.|Method and system for test-duration estimation|
US9225772B2|2011-09-26|2015-12-29|Knoa Software, Inc.|Method, system and program product for allocation and/or prioritization of electronic resources|
US8719196B2|2011-12-19|2014-05-06|Go Daddy Operating Company, LLC|Methods for monitoring computer resources using a first and second matrix, and a feature relationship tree|
US8600915B2|2011-12-19|2013-12-03|Go Daddy Operating Company, LLC|Systems for monitoring computer resources|
WO2017123218A1|2016-01-13|2017-07-20|Entit Software Llc|Determining a functional state of a system under test|
US10165071B2|2016-01-15|2018-12-25|Google Llc|Client-side activity monitoring|
CN106713573B|2016-12-29|2019-08-16|努比亚技术有限公司|A kind of performance testing device and method of terminal device|
法律状态:
2004-09-27| AS| Assignment|Owner name: INTERNATIONAL BUSINESS MACHINES CORPORATION, NEW Y Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:CANDLE DISTRIBUTED SOLUTIONS, INC.;REEL/FRAME:015177/0726 Effective date: 20030923 Owner name: INTERNATIONAL BUSINESS MACHINES CORPORATION,NEW YO Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:CANDLE DISTRIBUTED SOLUTIONS, INC.;REEL/FRAME:015177/0726 Effective date: 20030923 |
2005-07-07| FPAY| Fee payment|Year of fee payment: 4 |
2009-07-17| FPAY| Fee payment|Year of fee payment: 8 |
2013-08-30| REMI| Maintenance fee reminder mailed|
2014-01-22| LAPS| Lapse for failure to pay maintenance fees|
2014-02-17| STCH| Information on status: patent discontinuation|Free format text: PATENT EXPIRED DUE TO NONPAYMENT OF MAINTENANCE FEES UNDER 37 CFR 1.362 |
2014-03-11| FP| Lapsed due to failure to pay maintenance fee|Effective date: 20140122 |
优先权:
申请号 | 申请日 | 专利标题
US08/899,195|US5991705A|1997-07-23|1997-07-23|End-to-end response time measurement for computer programs using starting and ending queues|
US09/428,271|US6202036B1|1997-07-23|1999-10-27|End-to-end response time measurement for computer programs using starting and ending queues|
US09/761,904|US6341260B2|1997-07-23|2001-01-17|End-to-end response time measurement for computer programs using starting and ending queues|US09/761,904| US6341260B2|1997-07-23|2001-01-17|End-to-end response time measurement for computer programs using starting and ending queues|
US09/849,322| US7171483B2|1997-07-23|2001-05-04|Reducing information transmission time by adapting information delivery to the speed of a given network connection|
US09/995,427| US6484129B2|1997-07-23|2001-11-27|End-to-end response time measurement for computer programs|
[返回顶部]