US20090044053A1 - Method, computer system, and computer program product for problem determination using system run-time behavior analysis - Google Patents

Method, computer system, and computer program product for problem determination using system run-time behavior analysis Download PDF

Info

Publication number
US20090044053A1
US20090044053A1 US12/250,857 US25085708A US2009044053A1 US 20090044053 A1 US20090044053 A1 US 20090044053A1 US 25085708 A US25085708 A US 25085708A US 2009044053 A1 US2009044053 A1 US 2009044053A1
Authority
US
United States
Prior art keywords
behaviors
behavior
computer system
trace
execution
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Abandoned
Application number
US12/250,857
Inventor
Sanjiv Chandane
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
International Business Machines Corp
Original Assignee
International Business Machines Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by International Business Machines Corp filed Critical International Business Machines Corp
Priority to US12/250,857 priority Critical patent/US20090044053A1/en
Publication of US20090044053A1 publication Critical patent/US20090044053A1/en
Abandoned legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F11/00Error detection; Error correction; Monitoring
    • G06F11/36Preventing errors by testing or debugging software
    • G06F11/3604Software analysis for verifying properties of programs
    • G06F11/3612Software analysis for verifying properties of programs by runtime analysis

Definitions

  • the present invention relates to problem determination using system run-time behavior analysis.
  • Problem determination involves detecting system problems and isolating the underlying causes of such system problems. Problem determination is identified as a core technology in the field of autonomic computing, and is considered an important yet difficult task.
  • Some existing problem determination techniques such as log-and-trace preview approaches, analyze log files to generate events and make use of these events by searching a symptom database for possible remedies. Creating a symptom database is, however, a significant task and this approach has in many cases not been particularly successful.
  • execution context The run-time behavior of a system is referred to as the system “execution context”.
  • This execution context includes, for example, a function calling sequence (function stack), conditions that are evaluated to true or false, loops that are iterated, an iteration count, any “goto” statements that transfer the flow of control.
  • execution context can even include states of registers, and similar details. An execution context depends on a particular application, but may include such indicative details.
  • a “trace” is a message or statement that is recorded in a log file, and indicates the occurrence of a predetermined run-time event.
  • a log file of traces indicates how the system behaves at run-time. This run-time behavior can thus be analyzed using the log file of traces that are generated at run-time. As computing systems generate a number of log files, such records can be used for problem determination. Each individual operation is monitored throughout its execution, to analyze the run-time behavior of the system during the execution of that operation.
  • Such behavior may be a “problem” behavior, namely a behavior leading to a failure, also termed a problem situation.
  • R r if R r does not belong to set R, then R r is treated as a problem behavior and if R r belongs to set R, then R r is considered a correct behavior.
  • R r if the monitored operation does lead to a failure, then R r is treated as a problem behavior.
  • the problem behavior R r is compared with correct behaviors listed in set R.
  • the identified differences between the known behaviors (set R) and the problem behavior R r provide a basis for determining the causes of the particular problem.
  • the fourth step described above identifies the relevant problem, while the sixth step above identifies the underlying causes of the problem. Possible causes may be, for example, that a statement in the relevant code is incorrect, or that a condition is incorrect.
  • a symptom database is not used. Instead, log files containing traces are used to identify the run-time behavior of the system, and hence can be compared with recorded instances of actual system behavior to identify differences that indicate a cause of the problem behavior.
  • FIG. 1 is a flow chart of steps involved in a procedure for performing the problem determination techniques described herein.
  • FIG. 2 is a schematic representation of a computer system of a type suitable for performing the described problem determination techniques.
  • a client-server application in which a client sends a request to a server, and the server executes some operation to satisfy the client's request.
  • a cluster of file servers store files, and clients request the file servers to STORE, RETREIVE or DELETE these files.
  • a file server upon receiving a request from a client, executes corresponding operations to STORE, RETREIVE or DELETE the files, depending on the request.
  • the run-time behavior is essentially the same for all successful executions of the same operation.
  • the run-time behavior is the function calling sequence, the conditions which are evaluated to true or false, loops that are executed, and so on.
  • a trace written in a log file records run-time behavior.
  • the traces that are generated during the successful execution of an operation are essentially the same, across different executions. Such trace can be used for problem determination.
  • FIG. 1 is a flow chart of steps involved in problem determination, which are described below.
  • a software entity that is being monitored typically incorporates functionality, referred to as a logger, that records traces in log files, which are stored on a storage medium.
  • a further component termed a differential analyzer, compares the traces of system behavior recorded in log files.
  • log files are generated for different operations, and further different log files are generated for different successful executions of an operation, provided that such successful operations are distinct.
  • Table 1 below presents log files that may be generated following successive Store, Create and Delete operations.
  • the traces for each successful operation that is executed are stored in particular log files for future reference. If an operation fails, which is indicated by an error code, or an assertion of memory fault, then the differential analyzer compares the log files generated during the failed execution with those already stored. This comparison assist in identifying the cause or causes of an error by indicating deviations from behavior deemed correct. This may be, for example, the name of a function that is executed, or a condition that is evaluated false, and so on.
  • the system captures and stores log files for each successful operation that is executed. Later when there are sufficient log files for comparisons, the system operates as an expert system with the differential analyzer comparing the logs generated by each operation and finding out the differences in the traces to determine causes of failure.
  • traces that are generated in a testing phase. Since testing involves traversing each line of code at least once, the traces can be collated for successful operations. Otherwise, the system can determine that a complete set R of traces is achieved.
  • the trace R r repeatedly belongs to set R then the system is considered to have acquired a stable level of intelligence concerning valid system behaviors.
  • policies for the logger such as in case of assertion or abort, as soon as the logger receives a trace indicating an assertion or abort, pass on the trace to the differential analyzer indicating a failure. Other policies may also be set depending on the applications need.
  • the logger records the traces in a format possible for the differential analyzer to determine the differences that identify a reason for failure.
  • Table 2 below presents a format that can be used to mark begin and end of a log file.
  • Table 3 presents a format for traces that record a function calling sequence during the execution of an operation.
  • Table 4 below presents other formats that can be used to record a condition that is evaluated, loops that are iterated, and what memory operations are performed.
  • condition-expression> is ⁇ true/false>
  • Loop ⁇ condition-expression > is iterated ⁇ X > number of times Memory Operation: ⁇ statement ... ⁇ ptr-value> ⁇ ptr-value> ... >
  • the memory operation statement requires that whatever pointer values that are printed through it start with “0x”.
  • the logger checks if any pointer value is NULL or not. If any of the pointer value turns out to be NULL, then the logger directly indicates to the differential analyzer that the memory operation is faulty and passes on the currently generated log file for the operation. The differential analyzer then shows in its output that the same memory operation is faulty.
  • a statement such as “Abort: assertion” can be recorded just before an assertion.
  • the logger checks if the statement contains an “assertion” string or not. If the logger find an “assertion” string in the trace, the logger indicates to the differential analyzer that an assertion is reached in the code, and the execution is about to terminate. Further, the current log file for the operation is also passed to the differential analyzer. The differential analyzer further shows in its output that the assertion has occurred. Table 5 below presents pseudo-code for the logger.
  • Step 1 Keep looping up inside a loop.
  • Step 2 Receive a trace from the system being monitored.
  • Step 3 If message is a “Log_begin” message, then this indicates that a new operation is started. Open a new file to store the log file for this particular operation. Write this “Log_begin” message into the log file and go to step 7.
  • Step 4 If any policy set on the logger, such as received trace message contains an Abort or Assert, then write that message and close the log file. Give the log file to the differential analyzer and go to step 7.
  • Step 5 If the operation is successful, as indicated in the “Log_end” message, and if the run- time behavior exhibited during the current execution is distinct from those already stored, then write this “Log_end” message into the log file and store the message onto the disk. Then, go to step 7.
  • Step 6 If the operation fails, as indicated in the “Log_end” message, then write the message and close the log file. Pass the log file to the differential analyzer for root-cause analysis and go to step 7. Step 7 Continue in the loop with next iteration.
  • Step 1 Keep looping up inside a loop.
  • Step 2 Receive a log file from the logger.
  • Step 3 From the already stored log files for that particular operation, find out the log file which best matches with the log file just received from logger.
  • Step 4 Determine the differences between the two log files, and output these differences.
  • Step 5 Continue in the loop.
  • the traces are now presented to assist a clear understanding of the problem determination techniques described herein.
  • the traces are generated for an operation of creating a directory in the Andrew File System.
  • the file server upon receiving a request for creating a new directory from a client, executes an operation called SRXAFS_MakeDir( ) to create the directory.
  • Table 7 presents a trace obtained when this MakeDir operation is successful, and is thus a member of the Set R.
  • AdjustDiskUsage( ) returned an error of ENOSPC, which is passed to Alloc_NewVnode( ) which is also seen to be failing because there is no space in the file system to create the directory.
  • a third case presents a memory fault that occurs during the execution of MakeDir operation.
  • FIG. 2 is a schematic representation of a computer system 200 of a type that is suitable for executing computer software for the described problem determination techniques.
  • Computer software executes under a suitable operating system installed on the computer system 200 , and may be thought of as comprising various software code means for achieving particular steps.
  • the components of the computer system 200 include a computer 220 , a keyboard 210 and mouse 215 , and a video display 290 .
  • the computer 220 includes a processor 240 , a memory 250 , input/output (I/O) interfaces 260 , 265 , a video interface 245 , and a storage device 255 .
  • I/O input/output
  • the processor 240 is a central processing unit (CPU) that executes the operating system and the computer software executing under the operating system.
  • the memory 250 includes random access memory (RAM) and read-only memory (ROM), and is used under direction of the processor 240 .
  • the video interface 245 is connected to video display 290 and provides video signals for display on the video display 290 .
  • User input to operate the computer 220 is provided from the keyboard 210 and mouse 215 .
  • the storage device 255 can include a disk drive or any other suitable storage medium.
  • Each of the components of the computer 220 is connected to an internal bus 230 that includes data, address, and control buses, to allow components of the computer 220 to communicate with each other via the bus 230 .
  • the computer system 200 can be connected to one or more other similar computers via a input/output (I/O) interface 265 using a communication channel 285 to a network, represented as the Internet 280 .
  • I/O input/output
  • the computer software may be recorded on a portable storage medium, in which case, the computer software program is accessed by the computer system 200 from the storage device 255 .
  • the computer software can be accessed directly from the Internet 280 by the computer 220 .
  • a user can interact with the computer system 200 using the keyboard 210 and mouse 215 to operate the programmed computer software executing on the computer 220 .
  • set R which is the set of all the traces for successful execution of an operation.
  • software systems make use of “log-levels” to record traces for problem determination.
  • a high “log-level” provides detailed system information compared to a low “log-level”.
  • Analysing compact log files for particular operations is more readily achieved, compared with analysing the level of detail used in log files, and can be varied depending on what details the developer wishes to record.
  • the log level can be set as 1. If the developer wants to know only the conditions that are evaluated, then the log level can be set to “2”, for loops level can be set as “3” and so on.
  • the traces generated to optimize set R are thus suitably detailed, as specified.

Abstract

Run-time behavior is recorded using traces that are generated at run-time. A set of valid system behaviors is maintained. A recorded behavior can be added to the set of valid system behaviors if the run-time operation is completed successfully. Otherwise, the recorded behavior can be compared with members of the set of valid behaviors to determine differences. Such differences can be analysed to determine the cause of run-time errors.

Description

    FIELD OF THE INVENTION
  • The present invention relates to problem determination using system run-time behavior analysis.
  • BACKGROUND
  • Problem determination involves detecting system problems and isolating the underlying causes of such system problems. Problem determination is identified as a core technology in the field of autonomic computing, and is considered an important yet difficult task.
  • Some existing problem determination techniques, such as log-and-trace preview approaches, analyze log files to generate events and make use of these events by searching a symptom database for possible remedies. Creating a symptom database is, however, a significant task and this approach has in many cases not been particularly successful.
  • Other techniques, such as those involving probing technology, make use of statistical data analysis for problem determination. Such techniques are complex in terms of the calculations involved.
  • Further techniques, such as the “pinpoint” technique, attempt to identify faulty components in a system. Such an approach can be helpful, but is not applicable if a system is not suitably modularized. Modularization can help to curb apparent system complexity to some extent. Regardless, detecting problems or failures and isolating their root causes is difficult whatever the level of system modularization.
  • Yet another technique is described in U.S. Patent Application No. 2002073063 filed Aug. 9, 2001 in the name of Faraj Mazen for International Business Machines Corporation, and published Jun. 13, 2002. This publication describes the generation of run-time traces for applications, in which problem determination is performed by generating and analyzing an application's trace data. A monitor is used for launching Java language virtual machines to generate event data. The event data is placed on an event queue, and the monitor then forwards the event data to a logging service. The logging service records the event data in a log file. A defined product description is used in conjunction with the log file data to provide an analysis to a user, based on a required level of analysis selected by the user. A graphical display of the data reflecting events from the product's run-time facilitates problem determination as the user is able to visually determine the execution path that the application followed.
  • Accordingly, in view of these and other observations, a need clearly exists for problem determination techniques that assist in analyzing the behavior of computer software applications.
  • SUMMARY
  • The run-time behavior of a system is referred to as the system “execution context”. This execution context includes, for example, a function calling sequence (function stack), conditions that are evaluated to true or false, loops that are iterated, an iteration count, any “goto” statements that transfer the flow of control. At a lower level, the execution context can even include states of registers, and similar details. An execution context depends on a particular application, but may include such indicative details.
  • A “trace” is a message or statement that is recorded in a log file, and indicates the occurrence of a predetermined run-time event. A log file of traces indicates how the system behaves at run-time. This run-time behavior can thus be analyzed using the log file of traces that are generated at run-time. As computing systems generate a number of log files, such records can be used for problem determination. Each individual operation is monitored throughout its execution, to analyze the run-time behavior of the system during the execution of that operation.
  • The following protocol is used in the described approach to problem determination. First, all “correct” run-time behaviors of the system are recorded. These are behaviors that the system exhibits during the execution of a successful operation. Valid behaviors are listed in a set R={R1, R2, . . . Rn}. Second, the system and its run-time behavior are monitored as the system is executing an operation. The run-time behavior exhibited is referred to as Rr. Third, the exhibited run-time behavior Rr is compared with those behaviors listed in set R.
  • Fourth, if the system is exhibiting a run-time behavior that does not match any of the known run-time behaviors first exhibited, then such a behavior can be treated as extraordinary. Such behavior may be a “problem” behavior, namely a behavior leading to a failure, also termed a problem situation.
  • Accordingly, if Rr does not belong to set R, then Rr is treated as a problem behavior and if Rr belongs to set R, then Rr is considered a correct behavior. Fifth, if the monitored operation does lead to a failure, then Rr is treated as a problem behavior. To determine the causes of a failure, the problem behavior Rr is compared with correct behaviors listed in set R. Sixth, the identified differences between the known behaviors (set R) and the problem behavior Rr, provide a basis for determining the causes of the particular problem.
  • The fourth step described above identifies the relevant problem, while the sixth step above identifies the underlying causes of the problem. Possible causes may be, for example, that a statement in the relevant code is incorrect, or that a condition is incorrect.
  • A symptom database is not used. Instead, log files containing traces are used to identify the run-time behavior of the system, and hence can be compared with recorded instances of actual system behavior to identify differences that indicate a cause of the problem behavior.
  • DESCRIPTION OF THE DRAWINGS
  • FIG. 1 is a flow chart of steps involved in a procedure for performing the problem determination techniques described herein.
  • FIG. 2 is a schematic representation of a computer system of a type suitable for performing the described problem determination techniques.
  • DETAILED DESCRIPTION
  • Consider a client-server application, in which a client sends a request to a server, and the server executes some operation to satisfy the client's request. As an example, a cluster of file servers store files, and clients request the file servers to STORE, RETREIVE or DELETE these files.
  • A file server, upon receiving a request from a client, executes corresponding operations to STORE, RETREIVE or DELETE the files, depending on the request. During the execution of an operation at the server, the run-time behavior is essentially the same for all successful executions of the same operation. As defined earlier, the run-time behavior is the function calling sequence, the conditions which are evaluated to true or false, loops that are executed, and so on.
  • A trace written in a log file records run-time behavior. The traces that are generated during the successful execution of an operation are essentially the same, across different executions. Such trace can be used for problem determination.
  • FIG. 1 is a flow chart of steps involved in problem determination, which are described below.
      • Step 1 List all the traces that are recorded during the successful execution of an operation. There can be different traces generated during each execution of the same operation, and hence all such log files are stored. The traces form a set R={R1, R2, R3 . . . Rn}, where each member identifies one complete successful execution of the operation.
      • Step 2 Start monitoring the system and the traces that are generated at run-time, during the execution of the same operation. This run-time trace is denoted Rr.
      • Step 3 Wait for the operation to complete. Check whether or not the operation is successful. If the operation is successful then check if Rr belongs to set R. If so then output that the “operation is successful”, else add Rr to set R and then output that “operation is successful”.
        • If the operation fails, as indicated by an error code, or by a function return value of 1 or −1. In this case, first output that “operation is failed” and then proceed to step 4 to determine the cause of the failure.
        • If the operation leads to an end condition in the code, such as an “abort” in the code that stops execution, then the operation does not actually come to an end and does not return any error code as such. In such a case, since the traces are closely monitored, as soon as a trace indicates that an end condition is reached in the code (such as if the trace contains an “abort” string), the system indicates that a failure is occurred, proceed Rr to step 4 for finding the causes.
      • Step 4 Identify the differences between Rr and each of R1, R 2, R 3 . . . Rn. The cause of such differences may be a bad function calling sequence a loop executing in an incorrect fashion.
  • A software entity that is being monitored typically incorporates functionality, referred to as a logger, that records traces in log files, which are stored on a storage medium. A further component, termed a differential analyzer, compares the traces of system behavior recorded in log files.
  • Different log files are generated for different operations, and further different log files are generated for different successful executions of an operation, provided that such successful operations are distinct. Table 1 below presents log files that may be generated following successive Store, Create and Delete operations.
  • TABLE 1
    Store_1.log, Store_2.log
    Create_1.log, Create_2.log, Create_3.log
    Delete_1.log,
  • The traces for each successful operation that is executed are stored in particular log files for future reference. If an operation fails, which is indicated by an error code, or an assertion of memory fault, then the differential analyzer compares the log files generated during the failed execution with those already stored. This comparison assist in identifying the cause or causes of an error by indicating deviations from behavior deemed correct. This may be, for example, the name of a function that is executed, or a condition that is evaluated false, and so on.
  • Initially, the system captures and stores log files for each successful operation that is executed. Later when there are sufficient log files for comparisons, the system operates as an expert system with the differential analyzer comparing the logs generated by each operation and finding out the differences in the traces to determine causes of failure.
  • To help the system have a complete set R of traces for successful executions, one can use traces that are generated in a testing phase. Since testing involves traversing each line of code at least once, the traces can be collated for successful operations. Otherwise, the system can determine that a complete set R of traces is achieved. Each time the system generates a log file Rr following a successful execution, if the trace Rr repeatedly belongs to set R then the system is considered to have acquired a stable level of intelligence concerning valid system behaviors.
  • One can set policies for the logger, such as in case of assertion or abort, as soon as the logger receives a trace indicating an assertion or abort, pass on the trace to the differential analyzer indicating a failure. Other policies may also be set depending on the applications need.
  • Formats for the Traces
  • The logger records the traces in a format possible for the differential analyzer to determine the differences that identify a reason for failure.
  • Table 2 below presents a format that can be used to mark begin and end of a log file.
  • TABLE 2
    Log_begin: <Operation-Name> Operation
    Log_end: <Operation-Name> Successful
    Log_end: <Operation-Name> failed with <error_code>
  • Table 3 below presents a format for traces that record a function calling sequence during the execution of an operation.
  • TABLE 3
    Function <Name-of-the-function> called
    Function <Name-of-the-function> returned
    Function <Name-of-the-function> failed with <error_code>
  • Table 4 below presents other formats that can be used to record a condition that is evaluated, loops that are iterated, and what memory operations are performed.
  • TABLE 4
    Condition <condition-expression> is <true/false>
    Loop < condition-expression > is iterated < X > number of times
    Memory Operation: <statement ...<ptr-value> <ptr-value> ... >
  • The memory operation statement requires that whatever pointer values that are printed through it start with “0x”. During the period in which a memory operation statement is recorded by the logger, the logger checks if any pointer value is NULL or not. If any of the pointer value turns out to be NULL, then the logger directly indicates to the differential analyzer that the memory operation is faulty and passes on the currently generated log file for the operation. The differential analyzer then shows in its output that the same memory operation is faulty. A statement such as “Abort: assertion” can be recorded just before an assertion.
  • During the time when this abort statement is recorded by the logger, the logger checks if the statement contains an “assertion” string or not. If the logger find an “assertion” string in the trace, the logger indicates to the differential analyzer that an assertion is reached in the code, and the execution is about to terminate. Further, the current log file for the operation is also passed to the differential analyzer. The differential analyzer further shows in its output that the assertion has occurred. Table 5 below presents pseudo-code for the logger.
  • TABLE 5
    Step 1 Keep looping up inside a loop.
    Step 2 Receive a trace from the system being monitored.
    Step 3 If message is a “Log_begin” message, then this indicates that a new operation is started.
    Open a new file to store the log file for this particular operation. Write this
    “Log_begin” message into the log file and go to step 7.
    Step 4 If any policy set on the logger, such as received trace message contains an Abort or
    Assert, then write that message and close the log file. Give the log file to the
    differential analyzer and go to step 7.
    Step 5 If the operation is successful, as indicated in the “Log_end” message, and if the run-
    time behavior exhibited during the current execution is distinct from those already
    stored, then write this “Log_end” message into the log file and store the message onto
    the disk. Then, go to step 7.
    Step 6 If the operation fails, as indicated in the “Log_end” message, then write the message
    and close the log file. Pass the log file to the differential analyzer for root-cause
    analysis and go to step 7.
    Step 7 Continue in the loop with next iteration.
  • Table 6 below presents pseudo-code for the differential analyzer.
  • TABLE 6
    Step 1 Keep looping up inside a loop.
    Step 2 Receive a log file from the logger.
    Step 3 From the already stored log files for that particular operation,
    find out the log file which best matches with the
    log file just received from logger.
    Step 4 Determine the differences between the two log files, and output
    these differences.
    Step 5 Continue in the loop.
  • Example Traces
  • Some example traces are now presented to assist a clear understanding of the problem determination techniques described herein. The traces are generated for an operation of creating a directory in the Andrew File System. The file server, upon receiving a request for creating a new directory from a client, executes an operation called SRXAFS_MakeDir( ) to create the directory. Table 7 below presents a trace obtained when this MakeDir operation is successful, and is thus a member of the Set R.
  • TABLE 7
     1. Log_Begin: <Make Dir> Operation
     2. Function: <SRXAFS_MakeDir> called
     3. Function: <SAFSS_MakeDir> called
     4. Function: <GetVolumePackage> called
     5. Function: <GetVolumePackage> Successful
     6. Function: <Alloc_NewVnode> called
     7. Function: <Alloc_NewVnode> successful
     8. Function: <Update_ParentVnodeStatus> called
     9. Function: <Update_ParentVnodeStatus> returned
    10. Memory Operation:
       BCOPY(parentptr=0x303b68a8,newACL=0x303b6a38,192)
    11. Function: <Update_TargetVnodeStatus> called
    12. Function: <Update_TargetVnodeStatus> returned
    13. Function: <BreakCallBack> called
    14. Function: <BreakCallBack> returned
    15. Function: <SetCallBackStruct> called
    16. Function: <SetCallBackStruct> returned
    17. Function: <PutVolumePackage> called
    18. Function: <VPutVnode> called
    19. Function: <VPutVnode_r> called
    20. Function: <VPutVnode_r> returned
    21. Function: <VPutVnode> returned
    22. Function: <VPutVnode> called
    23. Function: <VPutVnode_r> called
    24. Function: <VPutVnode_r> returned
    25. Function: <VPutVnode> returned
    26. Function: <PutVolumePackage> returned
    27. Function: <SAFSS_MakeDir> successful
    28. Log_End: <Make Dir> successful
  • First Case—Assertion during the Execution of the Make Dir Operation
  • An assertion occurs during the execution of a Make Dir operation.
      • Step 1 Set R, with a trace for successful execution of MakeDir operation, is available in Table 7 above.
      • Step 2 The MakeDir operation is monitored and the traces logged. Table 8 below presents the traces that are generated.
  • TABLE 8
     1. Mon Aug 25 15:00:00 2003 Log_Begin: <Make Dir> Operation
     2. Mon Aug 25 15:00:00 2003 Function: <SRXAFS_MakeDir> called
     3. Mon Aug 25 15:00:00 2003 Function: <SAFSS_MakeDir> called
     4. Mon Aug 25 15:00:00 2003 Function: <GetVolumePackage> called
     5. Mon Aug 25 15:00:00 2003 Function: <GetVolumePackage>
       Successful
     6. Mon Aug 25 15:00:00 2003 Function: <Alloc_NewVnode> called
     7. Mon Aug 25 15:00:00 2003 Function: <Alloc_NewVnode> successful
     8. Mon Aug 25 15:00:00 2003 Function: <Update_ParentVnodeStatus>
       called
     9. Mon Aug 25 15:00:00 2003 Function: <Update_ParentVnodeStatus>
       returned
    10. Mon Aug 25 15:00:00 2003 Memory Operation:
       BCOPY(parentptr=0x303b68a8,newACL=0x303b6b60,192)
    11. Mon Aug 25 15:00:00 2003 Function: <Update_TargetVnodeStatus>
       called
    12. Mon Aug 25 15:00:00 2003 Function: <Update_TargetVnodeStatus>
       returned
    13. Mon Aug 25 15:00:00 2003 Function: <BreakCallBack> called
    14. Mon Aug 25 15:00:00 2003 Function: <BreakCallBack> returned
    15. Mon Aug 25 15:00:00 2003 Function: <SetCallBackStruct> called
    16. Mon Aug 25 15:00:00 2003 Function: <SetCallBackStruct> returned
    17. Mon Aug 25 15:00:00 2003 Function: <PutVolumePackage> called
    18. Mon Aug 25 15:00:00 2003 Function: <VPutVnode> called
    19. Mon Aug 25 15:00:00 2003 Function: <VPutVnode_r> called
    20. Mon Aug 25 15:00:00 2003 Condition: <vnp->nUsers != 0> FALSE
    21. Mon Aug 25 15:00:00 2003 Abort: assertion
      • Step 3 As soon as an end condition is reached in the code, that is, an assertion indicated by the trace at line 21, failure is indicated. The log file Rr is passed to the differential analyzer to determine the causes of the failure.
      • Step 4 The differential analyzer compares Rr with that of the member of set R. After line number 20 the trace Rr generated does not match with that of the member of set R. Table 9 below presents the differences in the traces.
  • TABLE 9
    20. Condition: <vnp->nUsers != 0> FALSE
    21. Abort: assertion
  • These differences indicate the cause of the failure, which is that vnp->nUsers is determined to be zero. This condition causes an assert, and the file server stops accordingly.
  • Second Case—Make Dir Operation Fails with an Error
  • An error occurs during the execution of a MakeDir operation.
      • Step 1 Set T as above with a trace of the successful execution of MakeDir operation.
      • Step 2 The MakeDir operation is monitored and the traces are recorded. Table 10 below presents the traces that are recorded.
  • TABLE 10
     1. Mon Aug 25 15:30:24 2003 Log_Begin: <Make Dir> Operation
     2. Mon Aug 25 15:30:24 2003 Function: <SRXAFS_MakeDir> called
     3. Mon Aug 25 15:30:24 2003 Function: <SAFSS_MakeDir> called
     4. Mon Aug 25 15:30:24 2003 Function: <GetVolumePackage> called
     5. Mon Aug 25 15:30:24 2003 Function: <GetVolumePackage>
       Successful
     6. Mon Aug 25 15:30:24 2003 Function: <Alloc_NewVnode> called
     7. Mon Aug 25 15:30:24 2003 Condition: <errorCode =
       AdjustDiskUsage( )> TRUE
     8. Mon Aug 25 15:30:24 2003 Function: <Alloc_NewVnode>
       failed with ENOSPC
     9. Mon Aug 25 15:30:24 2003 Condition: <errorCode =
       Alloc_NewVnode( )> TRUE
    10. Mon Aug 25 15:30:24 2003 Function: <PutVolumePackage> called
    11. Mon Aug 25 15:30:24 2003 Function: <VPutVnode> called
    12. Mon Aug 25 15:30:24 2003 Function: <VPutVnode_r> called
    13. Mon Aug 25 15:30:24 2003 Function: <VPutVnode_r> returned
    14. Mon Aug 25 15:30:24 2003 Function: <VPutVnode> returned
    15. Mon Aug 25 15:30:24 2003 Function: <PutVolumePackage> returned
    16. Mon Aug 25 15:30:24 2003 Function: <SAFSS_MakeDir> failed with
       ENOSPC
    17. Mon Aug 25 15:30:24 2003 Log_End: <Make Dir> failed with
       ENOSPC
      • Step 3 The “Log_End” trace indicates the end of the operation. The return value of the operation is checked, and in this case the operation fails. The log file is presented to the differential analyzer to determine the causes of the failure.
      • Step 4 The differential analyzer compares Rr with the member of set R, which determines that the traces do not match. The difference in the form of the lines which are not matching are indicated by line numbers 7, 8 and 9 in Table 11 below.
  • TABLE 11
    7. Mon Aug 25 15:30:24 2003 Condition: <errorCode =
       AdjustDiskUsage( )> TRUE
    8. Mon Aug 25 15:30:24 2003 Function: <Alloc_NewVnode>
       failed with ENOSPC
    9. Mon Aug 25 15:30:24 2003 Condition: <errorCode =
       Alloc_NewVnode( )> TRUE
  • The cause is AdjustDiskUsage( ) returned an error of ENOSPC, which is passed to Alloc_NewVnode( ) which is also seen to be failing because there is no space in the file system to create the directory.
  • Third Case—Memory Operation Failure Causing a Memory Fault
  • The second case described above appears to be simple, since the error code indicates the cause of the failure. A third case presents a memory fault that occurs during the execution of MakeDir operation.
      • Step 1 Set R is the same as in the second case with a trace of the successful execution of MakeDir operation.
      • Step 2 The MakeDir operation is monitored and the traces are logged. Table 12 below presents the traces that are generated in this case.
  • TABLE 12
     1. Mon Aug 25 11:35:01 2003 Log_Begin: <Make Dir> Operation
     2. Mon Aug 25 11:35:01 2003 Function: <SRXAFS_MakeDir> called
     3. Mon Aug 25 11:35:01 2003 Function: <SAFSS_MakeDir> called
     4. Mon Aug 25 11:35:01 2003 Function: <GetVolumePackage> called
     5. Mon Aug 25 11:35:01 2003 Function: <GetVolumePackage>
       Successful
     6. Mon Aug 25 11:35:01 2003 Function: <Alloc_NewVnode> called
     7. Mon Aug 25 11:35:01 2003 Function: <Alloc_NewVnode> successful
     8. Mon Aug 25 11:35:01 2003 Function: <Update_ParentVnodeStatus>
       called
     9. Mon Aug 25 11:35:01 2003 Function: <Update_ParentVnodeStatus>
       returned
    10. Mon Aug 25 11:35:01 2003 Memory Operation:
       BCOPY(parentptr=0x303b6658,newACL=0x0,192)
      • Step 3 Wait until the system operation completes. But, as soon as the trace for line no. 10 is received (a memory operation), a check is first made of whether the pointer values produce a NULL verification. In this case, the newACL pointer is NULL. Accordingly, the operation fails and corresponding output passes the log file to the differential analyzer.
      • Step 4 The differential analyzer compares the traces, and finds that the execution stopped after line no. 10. Also, differential analyzer determines that the newACL pointer is NULL. The pointer values do not match since these values are different for different executions.
  • Computer Hardware
  • FIG. 2 is a schematic representation of a computer system 200 of a type that is suitable for executing computer software for the described problem determination techniques. Computer software executes under a suitable operating system installed on the computer system 200, and may be thought of as comprising various software code means for achieving particular steps.
  • The components of the computer system 200 include a computer 220, a keyboard 210 and mouse 215, and a video display 290. The computer 220 includes a processor 240, a memory 250, input/output (I/O) interfaces 260, 265, a video interface 245, and a storage device 255.
  • The processor 240 is a central processing unit (CPU) that executes the operating system and the computer software executing under the operating system. The memory 250 includes random access memory (RAM) and read-only memory (ROM), and is used under direction of the processor 240.
  • The video interface 245 is connected to video display 290 and provides video signals for display on the video display 290. User input to operate the computer 220 is provided from the keyboard 210 and mouse 215. The storage device 255 can include a disk drive or any other suitable storage medium.
  • Each of the components of the computer 220 is connected to an internal bus 230 that includes data, address, and control buses, to allow components of the computer 220 to communicate with each other via the bus 230.
  • The computer system 200 can be connected to one or more other similar computers via a input/output (I/O) interface 265 using a communication channel 285 to a network, represented as the Internet 280.
  • The computer software may be recorded on a portable storage medium, in which case, the computer software program is accessed by the computer system 200 from the storage device 255. Alternatively, the computer software can be accessed directly from the Internet 280 by the computer 220. In either case, a user can interact with the computer system 200 using the keyboard 210 and mouse 215 to operate the programmed computer software executing on the computer 220.
  • Other configurations or types of computer systems can be equally well used to execute computer software that assists in implementing the techniques described herein.
  • Conclusion
  • The effectiveness of the described technique depends on the size and contents of set R, which is the set of all the traces for successful execution of an operation. Typically, software systems make use of “log-levels” to record traces for problem determination. A high “log-level” provides detailed system information compared to a low “log-level”.
  • Analysing compact log files for particular operations is more readily achieved, compared with analysing the level of detail used in log files, and can be varied depending on what details the developer wishes to record. Like, if the developer wants to record only the function calling sequence, then the log level can be set as 1. If the developer wants to know only the conditions that are evaluated, then the log level can be set to “2”, for loops level can be set as “3” and so on. The traces generated to optimize set R are thus suitably detailed, as specified.
  • Various alterations and modifications can be made to the techniques and arrangements described herein, as would be apparent to one skilled in the relevant art.

Claims (22)

1-16. (canceled)
17. A computer implemented method for analyzing computer system behavior, the method comprising the steps of:
a) detecting first actual computer system behaviors occurring during first run time executions in the computer system of operations including store operations, retrieve operations, create operations, and delete operations;
b) storing respective records of valid traces relating to the computer system execution responsive to detecting that ones of the respective first run times resulted in respective valid system executions, wherein the records are stored in respective sets corresponding to valid system executions of the respective store, retrieve, create, and delete operations;
c) detecting a failure for a second run time execution of the computer system;
d) responsive to the failure detection in c), comparing i) a trace record of second behavior of the computer system during the second run time execution and ii) a selected one of the sets of the trace records of the first behaviors, wherein the selected set is for a same type of operation as an operation of the second run time execution;
e) selecting one of the first behavior trace records responsive to the comparing in d), wherein the selected first behavior trace record has, in comparison to the trace record of the second behavior, fewer differences than any of the other trace records of the selected first behavior trace record set; and
f) determining and presenting one or more differences between the selected one of the first behavior trace records and the trace record of the second behavior, wherein the one more differences between the selected one of the first behavior trace records and the trace record of the second behavior indicate a cause of the detected failure.
18. The method as claimed in claim 17, wherein the first and second behaviors are selected from among behaviors including sequences of functions called during run times.
19. The method as claimed in claim 17, wherein the first and second behaviors are selected from among behaviors including conditions evaluated as true during run times.
20. The method as claimed in claim 17, wherein the first and second behaviors are selected from among behaviors including conditions evaluated as false during run times.
21. The method as claimed in claim 17, wherein the first and second behaviors are selected from among behaviors including loops encountered and numbers of iterations of the encountered loops during run times.
22. The method as claimed in claim 17, wherein the first and second behaviors are selected from among behaviors including goto statements encountered that affect execution flow during run times.
23. The method as claimed in claim 17, wherein the second run time execution is an execution of a type of operation selected from a group including a store operation, a retrieve operation and a delete operation.
24. A computer system comprising:
a processor; and
a storage device connected to the processor, wherein the storage device has stored thereon a system behavior analysis program for controlling the processor, and wherein the processor is operative with the program to execute the program for performing the steps of:
a) detecting first actual computer system behaviors occurring during first run time executions in the computer system of operations including store operations, retrieve operations, create operations, and delete operations;
b) storing respective records of valid traces relating to the computer system execution responsive to detecting that ones of the respective first run times resulted in respective valid system executions, wherein the records are stored in respective sets corresponding to valid system executions of the respective store, retrieve, create, and delete operations;
c) detecting a failure for a second run time execution of the computer system;
d) responsive to the failure detection in c), comparing i) a trace record of second behavior of the computer system during the second run time execution and ii) a selected one of the sets of the trace records of the first behaviors, wherein the selected set is for a same type of operation as an operation of the second run time execution;
e) selecting one of the first behavior trace records responsive to the comparing in d), wherein the selected first behavior trace record has, in comparison to the trace record of the second behavior, fewer differences than any of the other trace records of the selected first behavior trace record set; and
f) determining and presenting one or more differences between the selected one of the first behavior trace records and the trace record of the second behavior, wherein the one more differences between the selected one of the first behavior trace records and the trace record of the second behavior indicate a cause of the detected failure.
25. The computer system of claim 24, wherein the first and second behaviors are selected from among behaviors including sequences of functions called during run times.
26. The computer system of claim 24, wherein the first and second behaviors are selected from among behaviors including conditions evaluated as true during run times.
27. The computer system of claim 24, wherein the first and second behaviors are selected from among behaviors including conditions evaluated as false during run times.
28. The computer system of claim 24, wherein the first and second behaviors are selected from among behaviors including loops encountered and numbers of iterations of the encountered loops during run times.
29. The computer system of claim 24, wherein the first and second behaviors are selected from among behaviors including goto statements encountered that affect execution flow during run times.
30. The computer system of claim 24, wherein the second run time execution is an execution of a type of operation selected from a group including a store operation, a retrieve operation and a delete operation.
31. A computer program product recorded on a storage device for analyzing system behavior, the computer program product having instructions for execution by a computer, wherein the instructions, when executed by the computer, cause the computer to implement a method comprising the steps of:
a) detecting first actual computer system behaviors occurring during first run time executions in the computer system of operations including store operations, retrieve operations, create operations, and delete operations;
b) storing respective records of valid traces relating to the computer system execution responsive to detecting that ones of the respective first run times resulted in respective valid system executions, wherein the records are stored in respective sets corresponding to valid system executions of the respective store, retrieve, create, and delete operations;
c) detecting a failure for a second run time execution of the computer system;
d) responsive to the failure detection in c), comparing i) a trace record of second behavior of the computer system during the second run time execution and ii) a selected one of the sets of the trace records of the first behaviors, wherein the selected set is for a same type of operation as an operation of the second run time execution;
e) selecting one of the first behavior trace records responsive to the comparing in d), wherein the selected first behavior trace record has, in comparison to the trace record of the second behavior, fewer differences than any of the other trace records of the selected first behavior trace record set; and
f) determining and presenting one or more differences between the selected one of the first behavior trace records and the trace record of the second behavior, wherein the one more differences between the selected one of the first behavior trace records and the trace record of the second behavior indicate a cause of the detected failure.
32. The computer program product of claim 31, wherein the first and second behaviors are selected from among behaviors including sequences of functions called during run times.
33. The computer program product of claim 31, wherein the first and second behaviors are selected from among behaviors including conditions evaluated as true during run times.
34. The computer program product of claim 31, wherein the first and second behaviors are selected from among behaviors including conditions evaluated as false during run times.
35. The computer program product of claim 31, wherein the first and second behaviors are selected from among behaviors including loops encountered and numbers of iterations of the encountered loops during run times.
36. The computer program product of claim 31, wherein the first and second behaviors are selected from among behaviors including goto statements encountered that affect execution flow during run times.
37. The computer program product of claim 31, wherein the second run time execution is an execution of a type of operation selected from a group including a store operation, a retrieve operation and a delete operation.
US12/250,857 2005-01-04 2008-10-14 Method, computer system, and computer program product for problem determination using system run-time behavior analysis Abandoned US20090044053A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
US12/250,857 US20090044053A1 (en) 2005-01-04 2008-10-14 Method, computer system, and computer program product for problem determination using system run-time behavior analysis

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US11/029,782 US7475387B2 (en) 2005-01-04 2005-01-04 Problem determination using system run-time behavior analysis
US12/250,857 US20090044053A1 (en) 2005-01-04 2008-10-14 Method, computer system, and computer program product for problem determination using system run-time behavior analysis

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
US11/029,782 Continuation US7475387B2 (en) 2005-01-04 2005-01-04 Problem determination using system run-time behavior analysis

Publications (1)

Publication Number Publication Date
US20090044053A1 true US20090044053A1 (en) 2009-02-12

Family

ID=36642171

Family Applications (2)

Application Number Title Priority Date Filing Date
US11/029,782 Expired - Fee Related US7475387B2 (en) 2005-01-04 2005-01-04 Problem determination using system run-time behavior analysis
US12/250,857 Abandoned US20090044053A1 (en) 2005-01-04 2008-10-14 Method, computer system, and computer program product for problem determination using system run-time behavior analysis

Family Applications Before (1)

Application Number Title Priority Date Filing Date
US11/029,782 Expired - Fee Related US7475387B2 (en) 2005-01-04 2005-01-04 Problem determination using system run-time behavior analysis

Country Status (1)

Country Link
US (2) US7475387B2 (en)

Cited By (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9747193B1 (en) * 2013-03-13 2017-08-29 Ca, Inc. System and method for automatic root cause detection
US20200327004A1 (en) * 2016-04-22 2020-10-15 Entit Software Llc Determining probable root cause of performance issues
US20230063814A1 (en) * 2021-09-02 2023-03-02 Charter Communications Operating, Llc Scalable real-time anomaly detection

Families Citing this family (32)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US8099695B1 (en) * 2006-08-02 2012-01-17 Cadence Design Systems, Inc. Automated debugging method and system for over-constrained circuit verification environment
US7823130B2 (en) * 2006-09-22 2010-10-26 Sap Ag Testing machine-readable instructions
US20080086515A1 (en) * 2006-10-06 2008-04-10 International Business Machines Corporation Method and System for a Soft Error Collection of Trace Files
US20090232032A1 (en) * 2007-01-17 2009-09-17 Verbal World, Inc. Methods and Apparatus for the Manipulation of Conferenced Data
US8260622B2 (en) * 2007-02-13 2012-09-04 International Business Machines Corporation Compliant-based service level objectives
US8655623B2 (en) 2007-02-13 2014-02-18 International Business Machines Corporation Diagnostic system and method
US8161457B2 (en) * 2007-03-06 2012-04-17 International Business Machines Corporation Detection of errors caused by interactions of independent software vendor code with host code
US20090063578A1 (en) * 2007-08-27 2009-03-05 International Business Machines Corporation Management of data needed to resolve pointer errors in heirarchical database management systems
US8201151B2 (en) * 2007-12-20 2012-06-12 International Business Machines Corporation Method and system for providing post-mortem service level debugging
JP2009259089A (en) * 2008-04-18 2009-11-05 Nec Corp Device and method for tracking program execution path, and program
US9779234B2 (en) * 2008-06-18 2017-10-03 Symantec Corporation Software reputation establishment and monitoring system and method
US8140565B2 (en) * 2009-01-20 2012-03-20 International Business Machines Corporation Autonomic information management system (IMS) mainframe database pointer error diagnostic data extraction
JP5414292B2 (en) * 2009-01-29 2014-02-12 ルネサスエレクトロニクス株式会社 Defect analysis apparatus, method and program
US20110154221A1 (en) * 2009-12-22 2011-06-23 International Business Machines Corporation Subject suggestion based on e-mail recipients
US8140905B2 (en) * 2010-02-05 2012-03-20 International Business Machines Corporation Incremental problem determination and resolution in cloud environments
US8140907B2 (en) 2010-06-29 2012-03-20 International Business Machines Corporation Accelerated virtual environments deployment troubleshooting based on two level file system signature
US8244839B2 (en) 2010-06-30 2012-08-14 International Business Machines Corporation Network problem determination
US8949675B2 (en) 2010-11-30 2015-02-03 Microsoft Corporation Error report processing using call stack similarity
US8751872B2 (en) * 2011-05-27 2014-06-10 Microsoft Corporation Separation of error information from error propagation information
KR102028663B1 (en) * 2012-07-24 2019-10-04 삼성전자주식회사 Apparatus and method for error detection
GB2507505A (en) 2012-10-31 2014-05-07 Ibm Recording dump data of a computer process which provides trace data
US9164821B2 (en) 2012-12-14 2015-10-20 International Business Machines Corporation Performing diagnostic tracing of an executing application to identify suspicious pointer values
US9582402B2 (en) * 2013-05-01 2017-02-28 Advanced Micro Devices, Inc. Remote task queuing by networked computing devices
CN104239312B (en) * 2013-06-11 2019-03-15 富泰华工业(深圳)有限公司 File management system and method
US10049027B2 (en) * 2013-12-23 2018-08-14 International Business Machines Corporation Creating trace data from recent software output and activity
US9880915B2 (en) 2014-03-05 2018-01-30 Microsoft Technology Licensing, Llc N-gram analysis of inputs to a software application
US9329980B2 (en) 2014-03-05 2016-05-03 Microsoft Technology Licensing, Llc Security alerting using n-gram analysis of program execution data
US20150254163A1 (en) * 2014-03-05 2015-09-10 Concurix Corporation Origin Trace Behavior Model for Application Behavior
US9594665B2 (en) 2014-03-05 2017-03-14 Microsoft Technology Licensing, Llc Regression evaluation using behavior models of software applications
US9355016B2 (en) 2014-03-05 2016-05-31 Microsoft Technology Licensing, Llc Automated regression testing for software applications
US9632841B2 (en) * 2014-05-29 2017-04-25 Mediatek Inc. Electronic device capable of configuring application-dependent task based on operating behavior of application detected during execution of application and related method thereof
US11809406B2 (en) * 2020-11-19 2023-11-07 Hewlett Packard Enterprise Development Lp Event records in a log file

Citations (13)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5327568A (en) * 1989-07-31 1994-07-05 Hitachi, Ltd. Apparatus for supporting graphic data driven program development and for displaying instruction execution results superimposed on the graphic program
US5928369A (en) * 1996-06-28 1999-07-27 Synopsys, Inc. Automatic support system and method based on user submitted stack trace
US5950003A (en) * 1995-08-24 1999-09-07 Fujitsu Limited Profile instrumentation method and profile data collection method
US6230313B1 (en) * 1998-12-23 2001-05-08 Cray Inc. Parallelism performance analysis based on execution trace information
US20020073063A1 (en) * 2000-08-10 2002-06-13 International Business Machines Corporation Generation of runtime execution traces of applications and associated problem determination
US20020100023A1 (en) * 2000-05-31 2002-07-25 Katsuhiko Ueki Computer system and method for aiding log base debugging
US20020166112A1 (en) * 2001-03-05 2002-11-07 Martin Grant Edmund Method and apparatus for a statistically based estimate of embedded software execution time
US20020184065A1 (en) * 2001-03-30 2002-12-05 Cody Menard System and method for correlating and diagnosing system component performance data
US20030028825A1 (en) * 2001-08-01 2003-02-06 George Hines Service guru system and method for automated proactive and reactive computer system analysis
US20030084071A1 (en) * 2001-11-01 2003-05-01 International Business Machines Corporation Method and system for managing computer performance
US20030115581A1 (en) * 2001-12-13 2003-06-19 Brian Fahs Method and system to analyze inlined functions
US20030200462A1 (en) * 1999-05-11 2003-10-23 Software Systems International Llc Method and system for establishing normal software system behavior and departures from normal behavior
US20030208511A1 (en) * 2002-05-02 2003-11-06 Earl Leroy D. Database replication system

Patent Citations (13)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5327568A (en) * 1989-07-31 1994-07-05 Hitachi, Ltd. Apparatus for supporting graphic data driven program development and for displaying instruction execution results superimposed on the graphic program
US5950003A (en) * 1995-08-24 1999-09-07 Fujitsu Limited Profile instrumentation method and profile data collection method
US5928369A (en) * 1996-06-28 1999-07-27 Synopsys, Inc. Automatic support system and method based on user submitted stack trace
US6230313B1 (en) * 1998-12-23 2001-05-08 Cray Inc. Parallelism performance analysis based on execution trace information
US20030200462A1 (en) * 1999-05-11 2003-10-23 Software Systems International Llc Method and system for establishing normal software system behavior and departures from normal behavior
US20020100023A1 (en) * 2000-05-31 2002-07-25 Katsuhiko Ueki Computer system and method for aiding log base debugging
US20020073063A1 (en) * 2000-08-10 2002-06-13 International Business Machines Corporation Generation of runtime execution traces of applications and associated problem determination
US20020166112A1 (en) * 2001-03-05 2002-11-07 Martin Grant Edmund Method and apparatus for a statistically based estimate of embedded software execution time
US20020184065A1 (en) * 2001-03-30 2002-12-05 Cody Menard System and method for correlating and diagnosing system component performance data
US20030028825A1 (en) * 2001-08-01 2003-02-06 George Hines Service guru system and method for automated proactive and reactive computer system analysis
US20030084071A1 (en) * 2001-11-01 2003-05-01 International Business Machines Corporation Method and system for managing computer performance
US20030115581A1 (en) * 2001-12-13 2003-06-19 Brian Fahs Method and system to analyze inlined functions
US20030208511A1 (en) * 2002-05-02 2003-11-06 Earl Leroy D. Database replication system

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US9747193B1 (en) * 2013-03-13 2017-08-29 Ca, Inc. System and method for automatic root cause detection
US10248544B2 (en) 2013-03-13 2019-04-02 Ca, Inc. System and method for automatic root cause detection
US20200327004A1 (en) * 2016-04-22 2020-10-15 Entit Software Llc Determining probable root cause of performance issues
US11836034B2 (en) * 2016-04-22 2023-12-05 Micro Focus Llc Determining probable root cause of performance issues
US20230063814A1 (en) * 2021-09-02 2023-03-02 Charter Communications Operating, Llc Scalable real-time anomaly detection

Also Published As

Publication number Publication date
US7475387B2 (en) 2009-01-06
US20060150163A1 (en) 2006-07-06

Similar Documents

Publication Publication Date Title
US7475387B2 (en) Problem determination using system run-time behavior analysis
CN109284269B (en) Abnormal log analysis method and device, storage medium and server
US7877642B2 (en) Automatic software fault diagnosis by exploiting application signatures
US7328376B2 (en) Error reporting to diagnostic engines based on their diagnostic capabilities
US7987390B2 (en) Techniques for automatically tracking software errors
Chen Path-based failure and evolution management
KR102268355B1 (en) Cloud deployment infrastructure validation engine
Dumitraş et al. Why do upgrades fail and what can we do about it? Toward dependable, online upgrades in enterprise system
US7698691B2 (en) Server application state
US7320114B1 (en) Method and system for verification of soft error handling with application to CMT processors
US10031830B2 (en) Apparatus, system, and method for database management extensions
US8140565B2 (en) Autonomic information management system (IMS) mainframe database pointer error diagnostic data extraction
US20070006037A1 (en) Automated test case result analyzer
US7882495B2 (en) Bounded program failure analysis and correction
US7712087B2 (en) Methods and systems for identifying intermittent errors in a distributed code development environment
US8065565B2 (en) Statistical debugging using paths and adaptive profiling
Lo et al. Efficient mining of recurrent rules from a sequence database
US8533523B2 (en) Data recovery in a cross domain environment
Ding et al. Automatic Software Fault Diagnosis by Exploiting Application Signatures.
Bowman et al. 1A processor: Maintenance software
CA2420008C (en) Panic message analyzer
Jiang et al. Trace analysis for fault detection in application servers
CN115640236B (en) Script quality detection method and computing device
ChuahM et al. Failure diagnosis for cluster systems using partial correlations
CN117407207B (en) Memory fault processing method and device, electronic equipment and storage medium

Legal Events

Date Code Title Description
STCB Information on status: application discontinuation

Free format text: ABANDONED -- FAILURE TO RESPOND TO AN OFFICE ACTION