Blame doc/abrt-retrace-client.txt

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