US7610514B2 - Identification of uninformative function names in call-stack traces - Google Patents
Identification of uninformative function names in call-stack traces Download PDFInfo
- Publication number
- US7610514B2 US7610514B2 US11/428,751 US42875106A US7610514B2 US 7610514 B2 US7610514 B2 US 7610514B2 US 42875106 A US42875106 A US 42875106A US 7610514 B2 US7610514 B2 US 7610514B2
- Authority
- US
- United States
- Prior art keywords
- call
- stack
- function
- function name
- counter
- 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.)
- Expired - Fee Related, expires
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING OR CALCULATING; COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F11/00—Error detection; Error correction; Monitoring
- G06F11/36—Prevention of errors by analysis, debugging or testing of software
Definitions
- the present invention relates to computer software maintenance and more particularly to diagnosis of software problems or failures.
- problem reports generated by software components frequently contain structured diagnostic information, which is more useful for automated matching than semi-structured or unstructured symptom descriptions provided by humans.
- Call-stack traces are the most prevalent type of information collected by software systems for post-failure diagnosis, for example, when a system ‘hangs’ or ‘crashes’. A function name is pushed each time the function is called and popped each time the function returns. Call-stacks may thus be used to reconstruct the sequence of function calls leading up to a failure.
- Stack trace matching is a useful way of identifying repeat occurrences of a software problem, particularly hard failures leading to a system crash. Normalization of stack traces prior to matching provides improved match results. Two ingredients of normalization are: (1) removal of function names from the stack that do not provide information about the nature of the problem or failure, and (2) removal of recursive function calls from the stack.
- Identification of function names of error handling routines is important in stack trace matching. This is analogous to stop word removal in the information retrieval domain. In document matching, stop words only increase complexity and may decrease classification accuracy to a small extent. However, identification of function names of error handling routines in stack trace matching can greatly affect the quality of the matching results.
- U.S. Patent Publication No. 20050028145 assigned by the inventors Amy H. Kang et al. to Sun Microsystems Inc. and published on Feb. 3, 2005, relates to a flexible error trace mechanism that records trace elements to identify errors.
- the errors may be debugged using information in the error trace elements.
- instrument software and libraries are disclosed for generating a stack that is helpful in identifying the root cause of the problem, even when the default error messages may not be very useful for identifying the root cause of the problem.
- identification of an error handling routine from a collection of call stack traces is not disclosed.
- U.S. Patent Publication No. 20050257086 assigned by the inventors Edward Triou JR et al. to Microsoft Corporation and published on Nov. 17, 2005, relates to systems and methods for automated classification and analysis of large volumes of test result data.
- the classification may be based on call-stack traces. However, identification of uninformative function names in call-stack traces is not disclosed.
- aspects of the present invention relate to methods, systems and computer program products for identifying uninformative function names in call-stack traces.
- An aspect of the present invention provides a method for identifying names of uninformative functions in call-stack traces.
- the method comprises the steps of obtaining a set of call-stacks and information indicative of which call-stack traces in the set match a particular call-stack trace; for each matching call-stack trace pair, incrementing a false negative counter for each function name above a first matching function name in a respective call-stack trace pair; for each non-matching call-stack trace pair, incrementing a false positive counter for each function name above a first non-matching function name in a respective call-stack pair; incrementing a frequency counter for each function name appearing in each of the call-stack traces; calculating an aggregate value for each of the function names as a function of respective ones of the false positive counter, the false negative counter and the frequency counter; and identifying uninformative ones of the function names based on the respective aggregate values.
- the uninformative function names may be identified based on a threshold value or on a comparison of the calculated aggregate values.
- the set of call-stack traces and information indicative of which call-stack traces in the set match a particular call-stack trace may be obtained from a repository of known software problems.
- Call-stack traces in a matching call-stack trace pair both relate to a common software problem, whereas call-stack traces in a non-matching call-stack trace pair relate to different software problems.
- the method may include the further steps of incrementing the false positive counter for each function name in a pair of identical call-stack traces and/or incrementing the false negative counter for each function name in a pair of call-stack traces that have no matching function names.
- the system comprises a repository for storing call-stack traces relating to known software problems and a computer system coupled to the repository.
- the computer system comprises a memory unit for storing data and instructions to be performed by a processing unit and a processing unit coupled to the memory unit.
- the processing unit is programmed to execute the steps of the above method.
- Yet another aspect of the present invention provides a computer program product comprising a computer readable medium comprising a computer program recorded therein for identifying names of uninformative functions in call-stack traces described herein.
- the computer program product comprises computer program code for executing the steps of the above method.
- FIG. 1 is a C++ generated call-stack trace.
- FIG. 2 is a flow diagram of a method for matching call-stack traces to identify known computer software problems.
- FIG. 3 is a flow diagram of a method for identifying uninformative function names in call-stack traces in accordance with an embodiment of the present invention.
- FIGS. 4 a and 4 b are graphs showing results of call-stack trace matching methods with and without removal of uninformative function names.
- FIG. 5 is a schematic block diagram of a computer system with which embodiments of the present invention may be practised.
- Embodiments of systems, methods, and computer program products are described hereinafter for identifying uninformative function names in call-stack traces.
- the embodiments described hereinafter have application in the field of computer software maintenance. Examples of such applications include, but are not limited to, help-desk scenarios and autonomic systems.
- the aim of autonomic systems is to remove the need for human intervention in system management. Desirable attributes of autonomic systems include self-healing and automatic identification of known problems. It is advantageous that false positives are minimized in such systems.
- FIG. 1 shows an example of a C++ call-stack trace generated by IBM's DB2 relational database management system.
- Each line in the call-stack trace relates to a separate function and begins with a hexadecimal number denoting the particular function's address in memory.
- the address is followed by the function's name separated by two underscores from the C++ “mangled” names of the arguments of the function and the offset of the instruction from the start of the function.
- the name of the deepest function in the call flow is at the top of the call-stack, whereas the entry point function name is at the bottom of the call-stack.
- the top five functions in the call-stack are error handling routines, which are invoked when an error or exception is detected. As such, these functions do not provide information about the nature of the problem and are thus uninformative functions.
- the bottom of the call-stack is the entry point, which is common across a large number of stacks.
- the last 3 functions in the call-stack are entry level routines, which also do not provide useful information about the nature of the problem and are thus uninformative functions.
- FIG. 2 is a flow diagram of a method for matching call-stack traces to identify known computer software problems. Embodiments described herein for identifying uninformative function names in call-stack traces may be practiced in conjunction with the method of FIG. 2 .
- a new notification of a software problem is received at step 210 .
- the text of the notification comprises at least one call-stack trace.
- the received call-stack trace is normalized (parsed) to remove uninformative function names and recursion.
- the normalized call-stack trace is used to search for similar call-stack traces stored in a call-stack trace repository that may relate to the same software problem. Since the number of call-stack traces stored in the repository may be large, indices are created and used to search more efficiently. Typically, a number of similar call-stack traces retrieved from the repository based on an index are ranked by a matching algorithm. The most similar traces or a fixed number of traces may be selected based on a threshold.
- FIG. 3 is a flow diagram of a method for identifying uninformative function names in call-stack traces.
- the method of FIG. 3 comprises a supervised learning method, which is capable of detecting uninformative function names more quickly and efficiently than previously known methods such as the document frequency based statistical approach commonly used in the information retrieval arena.
- a set of call-stack traces and information indicative of which call-stack traces in the set match a particular call-stack trace are obtained, at step 310 .
- the call-stack traces may be retrieved from a repository of call-stack traces.
- a false negative counter is incremented for each function name above a first matching function name in a respective matching call-stack trace pair. If call-stack trace pair has no matching function names, the false negative counter (FNC) is incremented for each function name in that pair of call-stack traces.
- a false positive counter is incremented for each (matching) function name above a first non-matching function name in a respective non-matching call-stack trace pair. If a call-stack trace pair is identical, the false positive counter (FPC) is incremented for each function name in that pair of call-stack traces.
- Steps 320 and 330 are repeated for each pair of call-stack traces in the set.
- a matching call-stack trace pair relate to a common software problem, whereas a non-matching call-stack trace pair relate to different software problems.
- a frequency counter (FC) is incremented for each function name appearing in the call-stack traces.
- an aggregate value for each of the function names is calculated as a function of the false positive counter (FPC), the false negative counter (FNC) and the frequency counter (FC) for the respective function name.
- the aggregated values are representative of whether the respective function names are uninformative or not and may comprise probability values.
- uninformative function names are identified based on the respective calculated aggregate values.
- One method for identifying the uninformative function names based on the calculated aggregate values is by comparing these values to a threshold. Function names with aggregate values higher than the threshold are identified as uninformative. However, numerous other methods for identifying the uninformative names may alternatively be practiced. For example, a fixed number of uninformative function names may be identified based on a comparison of the calculated aggregate values.
- the weight values may be determined in accordance with a system cost of a false positive compared to a system cost of a false negative.
- three variables are maintained for each function name appearing in the call-stack traces.
- the three variables are maintained only for functions appearing in the call-stack traces more than a certain number of times. This value may comprise a fixed threshold.
- the variables are initialized to zero before the method begins.
- FIGS. 4 a and 4 b are graphs showing results of call-stack trace matching methods with and without removal of uninformative function names.
- FIG. 4 a shows precision as a function of recall for: (1) call-stack trace matching without removal of uninformative function names, (2) call-stack trace matching with removal of 40 uninformative function names using the frequency based statistical method, and (3) call-stack trace matching with removal of 40 uninformative function names using the supervised learning method of an embodiment of the present invention.
- removal of uninformative function names from the top of the call-stack traces results in improved precision and recall when using either the frequency based statistical method or the supervised learning method of an embodiment of the present invention.
- the supervised learning method for uninformative function name removal performs considerably better than the frequency based statistical method.
- FIG. 4 b shows precision as a function of recall for: (1) call-stack trace matching without removal of uninformative function names, (2) call-stack trace matching with removal of 20 uninformative function names using the self learning method of an embodiment of the present invention, (3) call-stack trace matching with removal of 40 uninformative function names using the self learning method of an embodiment of the present invention, and (4) call-stack trace matching with removal of 60 uninformative function names using the self learning method of an embodiment of the present invention.
- FIG. 4 b shows precision as a function of recall for: (1) call-stack trace matching without removal of uninformative function names, (2) call-stack trace matching with removal of 20 uninformative function names using the self learning method of an embodiment of the present invention, (3) call-stack trace matching with removal of 40 uninformative function names using the self learning method of an embodiment of the present invention, and (4) call-stack trace matching with removal of 60 uninformative function names using the self learning method of an embodiment of
- FIG. 5 shows a schematic block diagram of a computer system 500 that can be used to practice the methods described herein. More specifically, the computer system 500 is provided for executing computer software that is programmed to assist in performing a method for identifying uninformative function names in call-stack traces.
- the computer software typically executes under an operating system such as MS Windows 2000, MS Windows XPTM or LinuxTM installed on the computer system 500 .
- the computer software involves a set of programmed logic instructions that may be executed by the computer system 500 for instructing the computer system 500 to perform predetermined functions specified by those instructions.
- the computer software may be expressed or recorded in any language, code or notation that comprises a set of instructions intended to cause a compatible information processing system to perform particular functions, either directly or after conversion to another language, code or notation.
- the computer software program comprises statements in a computer language.
- the computer program may be processed using a compiler into a binary format suitable for execution by the operating system.
- the computer program is programmed in a manner that involves various software components, or code, that perform particular steps of the methods described hereinbefore.
- the components of the computer system 500 comprise: a computer 520 , input devices 510 , 515 and a video display 590 .
- the computer 520 comprises: a processing unit 540 , a memory unit 550 , an input/output (I/O) interface 560 , a communications interface 565 , a video interface 545 , and a storage device 555 .
- the computer 520 may comprise more than one of any of the foregoing units, interfaces, and devices.
- the processing unit 540 may comprise one or more processors that execute the operating system and the computer software executing under the operating system.
- the memory unit 550 may comprise random access memory (RAM), read-only memory (ROM), flash memory and/or any other type of memory known in the art for use under direction of the processing unit 540 .
- the video interface 545 is connected to the video display 590 and provides video signals for display on the video display 590 .
- User input to operate the computer 520 is provided via the input devices 510 and 515 , comprising a keyboard and a mouse, respectively.
- the storage device 555 may comprise a disk drive or any other suitable non-volatile storage medium.
- the storage device 555 may be used as a repository for storing call-stack traces relating to known software problems.
- Each of the components of the computer 520 is connected to a bus 530 that comprises data, address, and control buses, to allow the components to communicate with each other via the bus 530 .
- the computer system 500 may be connected to one or more other similar computers via the communications interface 565 using a communication channel 585 to a network 580 , represented as the Internet.
- a network 580 represented as the Internet.
- the computer software program may be provided as a computer program product, and recorded on a portable storage medium.
- the computer software program is accessible by the computer system 500 from the storage device 555 .
- the computer software may be accessible directly from the network 580 by the computer 520 .
- a user can interact with the computer system 500 using the keyboard 510 and mouse 515 to operate the programmed computer software executing on the computer 520 .
- the computer system 500 has been described for illustrative purposes. Accordingly, the foregoing description relates to an example of a particular type of computer system such as a personal computer (PC) or workstation, which is suitable for practicing the methods and computer program products described hereinbefore.
- PC personal computer
- Embodiments of methods, systems, and computer program products have been described hereinbefore for identifying names of uninformative functions in call-stack traces.
- the embodiments described hereinbefore advantageously do not require the assistance of a domain expert or the software developer/s to identify such uninformative functions.
Landscapes
- Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Computer Hardware Design (AREA)
- Quality & Reliability (AREA)
- Physics & Mathematics (AREA)
- General Engineering & Computer Science (AREA)
- General Physics & Mathematics (AREA)
- Debugging And Monitoring (AREA)
Abstract
Description
-
- a large corpus of documents is required to provide reliable results,
- if the document class distribution is non-uniform, a wrong set of function names may be identified as uninformative (for example, if software component a is experiencing more problems than software component b, then the function names appearing in call-stacks of software component a are more likely to be identified as uninformative, even if those function names are informative), and
- the frequency threshold above which a word is considered a stop-word is ad-hoc and does not have an objective foundation.
F ƒ =w 1 *FPC ƒ +w 2 *FNC ƒ +w 3 *FC ƒ
-
- FPCƒis the false positive counter for the particular function name;
- FNCƒis the false negative counter for the particular function name; and
- FCƒis the frequency counter for the particular function name; and
- w1, w2, and w3 are weight values.
w 1=1/SUM(FPC);
w 2=1/SUM(FNC); and
w 3=1/SUM(FC).
In another embodiment, the weight values are determined in accordance with the formulae:
w 1=1/FPC max;
w 2=1/FNC max; and
w 3=1 /FC max.
Claims (23)
F ƒ =w 1 *FPC ƒ +w 2 *FNC ƒ +w 3 *FC ƒ;
w 1=1/SUM(FPC);
w 2=1/SUM(FNC); and
w 3=1/SUM(FC).
w 1=1/FPC max;
w 2=1/FNC max; and
w 3=1/FC max.
F ƒ =w 1 *FPC ƒ +w 2 *FNC ƒ +w 3 *FC ƒ;
F ƒ =w 1 *FPC ƒ +w 2 *FNC ƒ +w 3 *FC ƒ;
Priority Applications (1)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| US11/428,751 US7610514B2 (en) | 2006-07-05 | 2006-07-05 | Identification of uninformative function names in call-stack traces |
Applications Claiming Priority (1)
| Application Number | Priority Date | Filing Date | Title |
|---|---|---|---|
| US11/428,751 US7610514B2 (en) | 2006-07-05 | 2006-07-05 | Identification of uninformative function names in call-stack traces |
Publications (2)
| Publication Number | Publication Date |
|---|---|
| US20080010526A1 US20080010526A1 (en) | 2008-01-10 |
| US7610514B2 true US7610514B2 (en) | 2009-10-27 |
Family
ID=38920395
Family Applications (1)
| Application Number | Title | Priority Date | Filing Date |
|---|---|---|---|
| US11/428,751 Expired - Fee Related US7610514B2 (en) | 2006-07-05 | 2006-07-05 | Identification of uninformative function names in call-stack traces |
Country Status (1)
| Country | Link |
|---|---|
| US (1) | US7610514B2 (en) |
Cited By (7)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US20110214108A1 (en) * | 2010-02-26 | 2011-09-01 | Roland Grunberg | Architecture, system and method for generating visualizations from running executable code |
| US20130081000A1 (en) * | 2011-09-23 | 2013-03-28 | Microsoft Corporation | Test failure bucketing |
| US8578213B2 (en) | 2011-04-27 | 2013-11-05 | Microsoft Corporation | Analyzing software performance issues |
| US20130346806A1 (en) * | 2012-06-21 | 2013-12-26 | International Business Machines Corporation | Trace value correlation with data field declarations |
| US20140229770A1 (en) * | 2013-02-08 | 2014-08-14 | Red Hat, Inc. | Method and system for stack trace clustering |
| US9128832B2 (en) | 2012-12-14 | 2015-09-08 | International Business Machines Corporation | Performing diagnostic tracing of an executing application to identify suspicious pointer values |
| US9348852B2 (en) | 2011-04-27 | 2016-05-24 | Microsoft Technology Licensing, Llc | Frequent pattern mining |
Families Citing this family (5)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US8495587B2 (en) * | 2009-01-13 | 2013-07-23 | International Business Machines Corporation | Method, apparatus or software for selectively activating a trace function |
| US9009539B1 (en) * | 2014-03-18 | 2015-04-14 | Splunk Inc | Identifying and grouping program run time errors |
| US11416612B2 (en) * | 2018-03-16 | 2022-08-16 | Acronis International Gmbh | Protecting against malware code injections in trusted processes |
| US10761965B2 (en) * | 2018-09-28 | 2020-09-01 | Atlassian Pty Ltd. | Detecting method calls based on stack trace data |
| US11256603B2 (en) * | 2019-10-14 | 2022-02-22 | Microsoft Technology Licensing, Llc | Generating and attributing unique identifiers representing performance issues within a call stack |
Citations (12)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US4905204A (en) * | 1988-09-06 | 1990-02-27 | Exxon Production Research Company | Method of weighting a trace stack from a plurality of input traces |
| US5408650A (en) * | 1993-06-29 | 1995-04-18 | Digital Equipment Corporation | Memory analysis system for dynamically displaying memory allocation and de-allocation events associated with an application program |
| US5450575A (en) * | 1991-03-07 | 1995-09-12 | Digital Equipment Corporation | Use of stack depth to identify machine code mistakes |
| US5928369A (en) | 1996-06-28 | 1999-07-27 | Synopsys, Inc. | Automatic support system and method based on user submitted stack trace |
| US6604210B1 (en) * | 1999-09-09 | 2003-08-05 | International Business Machines Corporation | Method and system for detecting and recovering from in trace data |
| US6678883B1 (en) * | 2000-07-10 | 2004-01-13 | International Business Machines Corporation | Apparatus and method for creating a trace file for a trace of a computer program based on loaded module information |
| US6751789B1 (en) * | 1997-12-12 | 2004-06-15 | International Business Machines Corporation | Method and system for periodic trace sampling for real-time generation of segments of call stack trees augmented with call stack position determination |
| US20040237003A1 (en) * | 2003-05-09 | 2004-11-25 | Adkisson Richard W. | Increment/decrement circuit for performance counter |
| US20050028145A1 (en) | 2003-07-31 | 2005-02-03 | Sun Microsystems, Inc. | Flexible error trace mechanism |
| US20050257086A1 (en) | 2004-04-21 | 2005-11-17 | Microsoft Corporation | Systems and methods for automated classification and analysis of large volumes of test result data |
| US20070150871A1 (en) * | 2005-12-22 | 2007-06-28 | International Business Machines Corporation | Autonomically adjusting the collection of performance data from a call stack |
| US20070283338A1 (en) * | 2006-06-02 | 2007-12-06 | Rajeev Gupta | System and method for matching a plurality of ordered sequences with applications to call stack analysis to identify known software problems |
-
2006
- 2006-07-05 US US11/428,751 patent/US7610514B2/en not_active Expired - Fee Related
Patent Citations (12)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US4905204A (en) * | 1988-09-06 | 1990-02-27 | Exxon Production Research Company | Method of weighting a trace stack from a plurality of input traces |
| US5450575A (en) * | 1991-03-07 | 1995-09-12 | Digital Equipment Corporation | Use of stack depth to identify machine code mistakes |
| US5408650A (en) * | 1993-06-29 | 1995-04-18 | Digital Equipment Corporation | Memory analysis system for dynamically displaying memory allocation and de-allocation events associated with an application program |
| US5928369A (en) | 1996-06-28 | 1999-07-27 | Synopsys, Inc. | Automatic support system and method based on user submitted stack trace |
| US6751789B1 (en) * | 1997-12-12 | 2004-06-15 | International Business Machines Corporation | Method and system for periodic trace sampling for real-time generation of segments of call stack trees augmented with call stack position determination |
| US6604210B1 (en) * | 1999-09-09 | 2003-08-05 | International Business Machines Corporation | Method and system for detecting and recovering from in trace data |
| US6678883B1 (en) * | 2000-07-10 | 2004-01-13 | International Business Machines Corporation | Apparatus and method for creating a trace file for a trace of a computer program based on loaded module information |
| US20040237003A1 (en) * | 2003-05-09 | 2004-11-25 | Adkisson Richard W. | Increment/decrement circuit for performance counter |
| US20050028145A1 (en) | 2003-07-31 | 2005-02-03 | Sun Microsystems, Inc. | Flexible error trace mechanism |
| US20050257086A1 (en) | 2004-04-21 | 2005-11-17 | Microsoft Corporation | Systems and methods for automated classification and analysis of large volumes of test result data |
| US20070150871A1 (en) * | 2005-12-22 | 2007-06-28 | International Business Machines Corporation | Autonomically adjusting the collection of performance data from a call stack |
| US20070283338A1 (en) * | 2006-06-02 | 2007-12-06 | Rajeev Gupta | System and method for matching a plurality of ordered sequences with applications to call stack analysis to identify known software problems |
Non-Patent Citations (1)
| Title |
|---|
| Perterson, (Math Weighted averages), Nov. 3, 1998, 1-4. * |
Cited By (15)
| Publication number | Priority date | Publication date | Assignee | Title |
|---|---|---|---|---|
| US9047399B2 (en) * | 2010-02-26 | 2015-06-02 | Red Hat, Inc. | Generating visualization from running executable code |
| US20110214108A1 (en) * | 2010-02-26 | 2011-09-01 | Roland Grunberg | Architecture, system and method for generating visualizations from running executable code |
| US8578213B2 (en) | 2011-04-27 | 2013-11-05 | Microsoft Corporation | Analyzing software performance issues |
| US10013465B2 (en) | 2011-04-27 | 2018-07-03 | Microsoft Technology Licensing, Llc | Frequent pattern mining |
| US9348852B2 (en) | 2011-04-27 | 2016-05-24 | Microsoft Technology Licensing, Llc | Frequent pattern mining |
| US20130081000A1 (en) * | 2011-09-23 | 2013-03-28 | Microsoft Corporation | Test failure bucketing |
| US8782609B2 (en) * | 2011-09-23 | 2014-07-15 | Microsoft Corporation | Test failure bucketing |
| US8943370B2 (en) * | 2012-06-21 | 2015-01-27 | International Business Machines Corporation | Trace value correlation with data field declarations |
| US9471465B2 (en) | 2012-06-21 | 2016-10-18 | International Business Machines Corporation | Trace value correlation with data field declarations |
| US20130346806A1 (en) * | 2012-06-21 | 2013-12-26 | International Business Machines Corporation | Trace value correlation with data field declarations |
| US9128832B2 (en) | 2012-12-14 | 2015-09-08 | International Business Machines Corporation | Performing diagnostic tracing of an executing application to identify suspicious pointer values |
| US9164821B2 (en) | 2012-12-14 | 2015-10-20 | International Business Machines Corporation | Performing diagnostic tracing of an executing application to identify suspicious pointer values |
| US10423474B2 (en) | 2012-12-14 | 2019-09-24 | International Business Machines Corporation | Performing diagnostic tracing of an executing application to identify suspicious pointer values |
| US20140229770A1 (en) * | 2013-02-08 | 2014-08-14 | Red Hat, Inc. | Method and system for stack trace clustering |
| US9632911B2 (en) * | 2013-02-08 | 2017-04-25 | Red Hat, Inc. | Stack trace clustering |
Also Published As
| Publication number | Publication date |
|---|---|
| US20080010526A1 (en) | 2008-01-10 |
Similar Documents
| Publication | Publication Date | Title |
|---|---|---|
| US12135786B2 (en) | Method and system for identifying malware | |
| US8453027B2 (en) | Similarity detection for error reports | |
| Kabinna et al. | Examining the stability of logging statements | |
| Kim et al. | Which warnings should I fix first? | |
| CN110543356B (en) | Abnormal task detection method, device, equipment and computer storage medium | |
| US20130007527A1 (en) | System and method for automated solution of functionality problems in computer systems | |
| US20110154117A1 (en) | Methods and apparatus to perform log file analyses | |
| Zheng et al. | Statistical debugging of sampled programs | |
| US7610514B2 (en) | Identification of uninformative function names in call-stack traces | |
| US11586436B1 (en) | Systems and methods for version control in a computing device | |
| US20100174691A1 (en) | Methods, systems, and computer program prodcut for automatically categorizing defects | |
| Bian et al. | Detecting bugs by discovering expectations and their violations | |
| Wu et al. | Invalid bug reports complicate the software aging situation | |
| Galhotra et al. | Dataprism: Exposing disconnect between data and systems | |
| CN110888625A (en) | Method for controlling code quality based on demand change and project risk | |
| Liu et al. | Incident-aware duplicate ticket aggregation for cloud systems | |
| Yerramreddy et al. | An empirical assessment of machine learning approaches for triaging reports of static analysis tools | |
| CN117873856A (en) | Software testing method, storage medium and computer equipment | |
| Siddik et al. | Do Code Quality and Style Issues Differ Across (Non-) Machine Learning Notebooks? Yes! | |
| Galhotra et al. | Dataexposer: Exposing disconnect between data and systems | |
| CN119415378A (en) | Exception handling method, device, equipment, storage medium and program product | |
| Yamanaka et al. | Statistical validation of column matching in the database schema evolution of the brazilian public school census | |
| RU128741U1 (en) | SYSTEM FOR FORMING SOLVING PROBLEMS OF FUNCTIONING COMPUTER SYSTEMS | |
| Tommasel et al. | Identifying emerging smells in software designs based on predicting package dependencies | |
| US11010158B2 (en) | Determining the availability of memory optimizations by analyzing a running binary |
Legal Events
| Date | Code | Title | Description |
|---|---|---|---|
| AS | Assignment |
Owner name: INTERNATIONAL BUSINESS MACHINES CORPORATION, NEW Y Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:GUPTA, RAJEEV;MODANI, NATWAR;REEL/FRAME:017881/0189 Effective date: 20060519 |
|
| FEPP | Fee payment procedure |
Free format text: PAYOR NUMBER ASSIGNED (ORIGINAL EVENT CODE: ASPN); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY |
|
| REMI | Maintenance fee reminder mailed | ||
| LAPS | Lapse for failure to pay maintenance fees | ||
| STCH | Information on status: patent discontinuation |
Free format text: PATENT EXPIRED DUE TO NONPAYMENT OF MAINTENANCE FEES UNDER 37 CFR 1.362 |
|
| STCH | Information on status: patent discontinuation |
Free format text: PATENT EXPIRED DUE TO NONPAYMENT OF MAINTENANCE FEES UNDER 37 CFR 1.362 |
|
| FP | Lapsed due to failure to pay maintenance fee |
Effective date: 20131027 |