Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

report(1) [centos man page]

REPORT(1)							 LIBREPORT MANUAL							 REPORT(1)

NAME
report - uploads FILEs to specified ticket on TARGET. SYNOPSIS
report [-v] -T TARGET -t ID FILE... DESCRIPTION
This tool is provided to ease transition of users of report package to libreport. Recognized TARGETs are strata and bugzilla, first one invokes upload to RHTSupport and second - to Bugzilla. Configuration (such as login data) can be supplied via files /etc/libreport/plugins/bugzilla.conf and /etc/libreport/plugins/rhtsupport.conf, or via environment variables - read documentation of reporter-bugzilla and reporter-rhtsupport tools. OPTIONS
-T, --target "strata" or "bugzilla" -t, --ticket ID Ticket/case ID SEE ALSO
reporter-bugzilla(1), reporter-rhtsupport(1) AUTHORS
o ABRT team LIBREPORT 2.1.11 06/18/2014 REPORT(1)

Check Out this Related Man Page

REPORTER-UPLOAD(1)						 LIBREPORT MANUAL						REPORTER-UPLOAD(1)

NAME
reporter-upload - Uploads compressed tarball of problem directory. SYNOPSIS
reporter-upload [-c CONFFILE]... [-d DIR] [-u URL] DESCRIPTION
The tool is used to create a compressed tarball of the problem directory and upload it to a URL. Supported protocols include FTP, FTPS, HTTP, HTTPS, SCP, SFTP, TFTP and FILE. Configuration file Configuration file contains entries in a format "Option = Value". The options are: URL The URL where tarball should be uploaded. Integration with ABRT events reporter-upload can be used as a reporter, to allow users to upload compressed tarballs of problem directories to a configured URL. This usage can be configured in /etc/libreport/report_event.conf: EVENT=report_Upload reporter-upload It can be also used on the post-create event to upload it automatically. EVENT=post-create reporter-upload OPTIONS
-d DIR Path to problem directory. -c CONFFILE Path to configuration file. When used in ABRT event system, the file contains site-wide configuration. Users can change the values via environment variables. -u URL The URL where tarball should be uploaded. URL should have form protocol://[user[:pass]@]host/dir/[file.tar.gz] where protocol can be http(s), ftp, scp, or file. File protocol can't have user and host parts: file.tar.gz[1]. If URL ends with a slash, the archive name will be generated and appended to URL; otherwise, URL will be used as full file name. ENVIRONMENT VARIABLES
Environment variables take precedence over values provided in the configuration file. Upload_URL The URL where should be the tarball uploaded. AUTHORS
o ABRT team NOTES
1. file.tar.gz file:///dir/ LIBREPORT 2.1.11 06/18/2014 REPORTER-UPLOAD(1)
Man Page

15 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Date function question

hi guys! just want to ask if you could help me with the sript i'm working on. i need to automatically generate a summarized report everyday for all transactions the day before and ftp it to another machine. my only problem is that i need to name the file as the date yesterday. for example if i... (12 Replies)
Discussion started by: crpalermo
12 Replies

2. Shell Programming and Scripting

Formatting a report from 2 files

I have 2 files with sample data enclosed. 1. GL (already sorted in ascending order by Gl number) Gl number*glname*Year*opening balance 1000*Interest Income*2006*100.00 1005*Rental Income*2006*0.00 ... 2. Transactions (file is not sorted on GL number or any other field) Branch*Year*Gl... (12 Replies)
Discussion started by: augustinep
12 Replies

3. Shell Programming and Scripting

Split a Big Report.

Hi All, I am a newbie for Unix Script. I have report like the following: (file name: Report.txt): Report No.: AAA BE NO: 111 asfsdflsjdfklsdjfklsjfklsfsflsjdlk fsdfjsfkjsklfsfj Report No.: AAA BE NO: 111 sdfsdfjsdklfjsfkj fsdflkjsdfklsjkl Report No.: AAA (16 Replies)
Discussion started by: raychu65
16 Replies

4. Shell Programming and Scripting

Perl report problem...

Hi All, As my old group friends knows, I know shell scripting but very new to perl scripting. Hence struggling now for the simple task. This should be done using perl. Any help for the below requirement would be greatful for me... I've around 40 files, with the below layout: file1.csv... (18 Replies)
Discussion started by: ganapati
18 Replies

5. HP-UX

How to get performance report for previous date?

Hi, i need to compare system performance with previous days performance in terms of cpu,memory,swap utilisation by processes. with glance,top we can get but it will show only present utilisation. Anybody can let me know how to get this? OS : HP-UX 11i Thanks in advance.. (12 Replies)
Discussion started by: laxmikant
12 Replies

6. Shell Programming and Scripting

how to add up a total in a summary report?

Hi all i got a script up but i cant add up the summary report.. keep having synax error . mind helping me to take a look and tell me what went wrong.. i know is a bit long but i hope someone can hep me with it. thanks the error message come up when i try to run the sumary report.. i guess... (16 Replies)
Discussion started by: xiaojesus
16 Replies

7. Shell Programming and Scripting

Array Length Reports as Having Length when it is Empty?

Hello All, I have this script that does stuff like "starting, stopping & restarting" a Daemon Process running on my machine... My main question is why in part of my code (which you will see below) does the Array Length (i.e. ${#PIDS} ) return "1" when I know the Array is empty..? Here is... (17 Replies)
Discussion started by: mrm5102
17 Replies

8. SCO

du and dfspace reporting

Hi, I am using SCO UNIX version 6.0.0 release 5. I am using du and df space to see the used space in the / partition. I am using du -k option to get count in 1024 k so that it directly makes kb. In dfspace I subtracted the used mb from total size mb which should be the used space and then... (40 Replies)
Discussion started by: dextergenious
40 Replies

9. Shell Programming and Scripting

Health check report

Hi Team, I am writing a small script in that I want collect all servers of /opt and /stage. Below is my small script #!/bin/ksh #checking Media server opt_Disk_Space_logs myclient=`cat media_server.txt` > opt_logs.txt printf " Server Name\tsize\tused\tavail\tcapacity\tMounted... (12 Replies)
Discussion started by: bashi77
12 Replies

10. UNIX for Dummies Questions & Answers

How to count a string in a line and report it?

Hi, I have a text file full of such line (this is only 1 line, tab delimited): 1 108 . C T 553.90 . ... (19 Replies)
Discussion started by: a_bahreini
19 Replies

11. Shell Programming and Scripting

Disk space threshold report

Hi All, I have a code which will give me the result of the diskspace which reached the threshold limit 70% and am redirecting it to report.txt . The code is given below. df -g | awk '+$4 >= 70 {print}' >report.txt Now i need your help , I need to use IF ELSE condition statment for... (17 Replies)
Discussion started by: Kalaihari
17 Replies

12. Shell Programming and Scripting

Need help extracting data for report creation

Hi All, is there any way we can get the job names running with particular owner. Example: i want to get the job names running with owner as "autosys" (16 Replies)
Discussion started by: sdosanjh
16 Replies

13. Shell Programming and Scripting

Shell script - Asterisk logs report

Dear all, I start to build script(s) for few tasks, and I'll use log files to complete the following: 1) when ringnoanswer for a particular operator hits count 10 for waittime > 14000 send mail alert with summary of calls 2) per queue - exitwithtimout > 1 in any hour, then send mail... (12 Replies)
Discussion started by: bigbrobg
12 Replies

14. Shell Programming and Scripting

Help with awk command on report with headings

Hi all, I have a report that looks like this: ------------------------------------------------- -- AOC - XXXXXXX -- ------------------------------------------------- Thread Last Sequence Received Last Sequence Applied Difference ----------... (12 Replies)
Discussion started by: cougartrace
12 Replies

15. UNIX for Beginners Questions & Answers

Cron job scheduled is running once, but reports are generating twice

Team, Hope you all are doing fine I have one admin server which is being used dedicately to run cron jobs on hourly basis, fetching the details from Database which is in a different server.These cronjob are run on every hourly/5 minutes basis depending as per end user requirement.The script... (12 Replies)
Discussion started by: whizkidash
12 Replies