Automatic problem management with anonymous reports

Martin Milata 65dc358ec2 Release 0.13 10 년 전
docs 91340705b1 Documentation cleanup 11 년 전
include 1851d7edd8 Implement duphash for kernel oopses 10 년 전
lib eba8bf1b5b Bump soname 10 년 전
python 1851d7edd8 Implement duphash for kernel oopses 10 년 전
tests b8a39c6e35 Merge pull request #146 from abrt/rhbz1040900-koops-hash 10 년 전
.dir-locals.el 59b4badb3d Coding style for Emacs 13 년 전
.gitignore ce4178727a make the build in the the build directory to not pollute the source tree 10 년 전
.travis.yml 1f32b8854e travis: show testsuite.log if tests fail 11 년 전
COPYING 6a3cb52d6b Initial commit 13 년 전
Makefile.am ce4178727a make the build in the the build directory to not pollute the source tree 10 년 전
NEWS 65dc358ec2 Release 0.13 10 년 전
README 91340705b1 Documentation cleanup 11 년 전
RELEASE 875c0ee95f Release 0.8 10 년 전
autogen.sh 6a3cb52d6b Initial commit 13 년 전
configure.ac 65dc358ec2 Release 0.13 10 년 전
satyr.1.in a2601cce5f Include version string in the man page 11 년 전
satyr.c ff0ec67b0f satyr: Add command for debugging duphashes 10 년 전
satyr.pc.in 3b15a487b8 Btparser shared library renamed to satyr. 11 년 전
satyr.spec.in 65dc358ec2 Release 0.13 10 년 전

README

Failures of computer programs are omnipresent in the information technology
industry: they occur during software development, software testing, and also in
production. Failures occur in programs from all levels of the system stack.
The program environment differ substantially between kernel space, user space
programs written in C or C++, Python scripts, and Java applications, but the
general structure of failures is surprisingly similar between the mentioned
environments due to imperative nature of the languages and common concepts such
as procedures, objects, exceptions.

Satyr is a collection of low-level algorithms for program failure processing,
analysis, and reporting supporting kernel space, user space, Python, and Java
programs. Considering failure processing, it allows to parse failure
description from various sources such as GDB-created stack traces, Python stack
traces with a description of uncaught exception, and kernel oops message.
Infromation can also be extracted from the core dumps of unexpectedly
terminated user space processes and from the machine executable code of
binaries. Considering failure analysis, the stack traces of failed processes
can be normalized, trimmed, and compared. Clusters of similar stack traces can
be calculated. In multi-threaded stack traces, the threads that caused the
failure can be discovered. Considering failure reporting, the library can
generate a failure report in a well-specified format, and the report can be
sent to a remote machine.

Due to the low-level nature of the library and implementors' use cases, most of
its functionality is currently limited to Linux-based operating systems using
ELF binaries. The library can be extended to support Microsoft Windows and OS
X platforms without changing its design, but dedicated engineering effort would
be required to accomplish that.