Blame doc/abrt-retrace-client.txt

Packit 8ea169
abrt-retrace-client(1)
Packit 8ea169
======================
Packit 8ea169
Packit 8ea169
NAME
Packit 8ea169
----
Packit 8ea169
abrt-retrace-client - Handles the communication with Retrace server.
Packit 8ea169
Packit 8ea169
SYNOPSIS
Packit 8ea169
--------
Packit 8ea169
'abrt-retrace-client' <operation> [options]
Packit 8ea169
Packit 8ea169
DESCRIPTION
Packit 8ea169
-----------
Packit 8ea169
This tool is able to communicate with Retrace server: create a new task,
Packit 8ea169
ask about task's status, download log or backtrace of a finished task.
Packit 8ea169
Packit 8ea169
Integration with libreport events
Packit 8ea169
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Packit 8ea169
'abrt-retrace-client' can be used as an analyzer for
Packit 8ea169
application crashes which dump core.
Packit 8ea169
Packit 8ea169
Example usage in report_event.conf:
Packit 8ea169
Packit 8ea169
------------
Packit 8ea169
EVENT=analyze analyzer=CCpp
Packit 8ea169
        abrt-retrace-client
Packit 8ea169
------------
Packit 8ea169
Packit 8ea169
OPERATIONS
Packit 8ea169
----------
Packit 8ea169
create::
Packit 8ea169
   Creates a new task. Prints task ID and password to stdout.
Packit 8ea169
   Either -d or -c is required.
Packit 8ea169
Packit 8ea169
status::
Packit 8ea169
   Prints task\'s status to stdout. Both -t and -p are required.
Packit 8ea169
Packit 8ea169
log::
Packit 8ea169
   Prints finished task\'s log to stdout. Both -t and -p are required.
Packit 8ea169
Packit 8ea169
backtrace::
Packit 8ea169
   Print finished task\'s backtrace to stdout. Both -t and -p are required.
Packit 8ea169
Packit 8ea169
batch::
Packit 8ea169
   Runs all operations in one step: creates a new task, periodically
Packit 8ea169
   asks for status (the period is specified by --status-delay option)
Packit 8ea169
   and downloads the result when finished. If the task was successful
Packit 8ea169
   backtrace file is saved, otherwise log is printed to stdout.
Packit 8ea169
   Either -c or -d is required.
Packit 8ea169
Packit 8ea169
OPTIONS
Packit 8ea169
-------
Packit 8ea169
-v, --verbose::
Packit 8ea169
   be verbose
Packit 8ea169
Packit 8ea169
-s, --syslog::
Packit 8ea169
   log to syslog
Packit 8ea169
Packit 8ea169
-k, --insecure::
Packit 8ea169
   allow insecure connection to retrace server
Packit 8ea169
Packit 8ea169
--url URL::
Packit 8ea169
   retrace server URL
Packit 8ea169
Packit 8ea169
--headers::
Packit 8ea169
   (debug) show received HTTP headers
Packit 8ea169
Packit 8ea169
-d, --dir DIR::
Packit 8ea169
   read data from ABRT problem directory
Packit 8ea169
Packit 8ea169
-c, --core COREDUMP::
Packit 8ea169
   read data from coredump
Packit 8ea169
Packit 8ea169
-l, --status-delay::
Packit 8ea169
   delay for polling operations (seconds)
Packit 8ea169
Packit 8ea169
--no-unlink::
Packit 8ea169
   (debug) do not delete temporary archive created in /tmp
Packit 8ea169
Packit 8ea169
-t, --task ID::
Packit 8ea169
   ID of the task on server
Packit 8ea169
Packit 8ea169
-p, --password PWD::
Packit 8ea169
   password of the task on server
Packit 8ea169
Packit 8ea169
AUTHORS
Packit 8ea169
-------
Packit 8ea169
* ABRT team