Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

abrt-action-analyze-java(1) [centos man page]

ABRT-ACTION-ANALYZ(1)						    ABRT Manual 					     ABRT-ACTION-ANALYZ(1)

NAME
abrt-action-analyze-java - Calculate and save UUID & DUPHASH and determine the level of usability for reporting of a Java stack trace. SYNOPSIS
abrt-action-analyze-java [-v] [-d DIR] [-o] [-f FILE] DESCRIPTION
The tool reads the file named backtrace from a problem data directory, processes it and generates a universally unique identifier (UUID). Then it saves this data as new element uuid. It also checks whether the stack trace contains a remote address in any of its frames and if so it creates not-reportable element whose contents explains why the stack trace should not be reported into a bug tracking system. Integration with ABRT events abrt-action-analyze-java can be used to generate the UUID & DUPHAS of a newly saved Java stack trace. EVENT=post-create analyzer=Java abrt-action-analyze-java OPTIONS
-d DIR Path to a problem directory. The tool reads the backtrace from stdin when neither this option nor -f is provided. -f FILE Path to a stack trace. The tool reads the backtrace from stdin when neither this option nor -d is provided. -o Print the result to stdout. -v Be more verbose. Can be given multiple times. AUTHORS
o ABRT team abrt-java-connector 01/19/2014 ABRT-ACTION-ANALYZ(1)

Check Out this Related Man Page

ABRT-ACTION-NOTIFY(1)						    ABRT Manual 					     ABRT-ACTION-NOTIFY(1)

NAME
abrt-action-notify - Announces a new occurrence of problem via all accessible channels SYNOPSIS
abrt-action-notify [-h] -d PROBLEM_DIR [-v] [-a] [-e AUTOREPORTING_EVENT] DESCRIPTION
The current implementation emits a D-Bus signal on System bus in path /org/freedesktop/problems of org.freedesktop.problems interface for Crash member. Integration with ABRT events abrt-action-notify is used to notify new problems and consecutive occurrences of a single problem for all crash types. EVENT=notify package!= abrt-action-notify OPTIONS
-v, --verbose Be verbose -d, --problem-dir PROBLEM_DIR Problem directory [Default: current directory] -h, --help Show help message -a, --autoreporting Force to run autoreporting event -e, --autoreporting-event AUTOREPORTING_EVENT Overwrite autoreporting event name ENVIRONMENT
ABRT_VERBOSE ABRT verbosity level FILES
/etc/abrt/abrt.conf AutoreportingEnabled If enabled, abrt-action-notify runs AutoreportingEvent AutoreportingEvent Name of event to be run if autoreporting is enabled SEE ALSO
abrt.conf(5) AUTHORS
o ABRT team abrt 2.1.11 06/18/2014 ABRT-ACTION-NOTIFY(1)
Man Page

15 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

To all the Java guru...

Please forgive me if this is the wrong place for this post. I didn't see a good place to post this topic in. :D I would like to know what's the most popular and reliable Java IDE out there nowadays? A FREE one would be awesome! :D Thanks for your suggestion! Cheers! (10 Replies)
Discussion started by: laila63
10 Replies

2. UNIX for Advanced & Expert Users

help required - stack trace

Hi all, One of our programs written in Java, produced this logfile. This job runs 48 threads and only one thread failed with this error. The code is a blackbox(external product), so cant look at the source code. From what I can infer from the log, the job was trying to write the log messages into... (9 Replies)
Discussion started by: ranj@chn
9 Replies

3. Programming

need java to c converter

Hello, does anyone know a program able to convert Java sourcecode to C or C++ sourcecode ? Thanks. Regards... JAGDISH (5 Replies)
Discussion started by: jagdish.machhi@
5 Replies

4. Shell Programming and Scripting

problem with spaces and argument parsing

public class HelloWorld { public static void main(String args) { System.out.println("Welcome, master"); } } and I compiled using javac HelloWorld.java ] Suppose that I execute the following command directly from the shell: java -XX:OnError="gdb - %p" HelloWorld Then it works... (8 Replies)
Discussion started by: fabulous2
8 Replies

5. Red Hat

Re : Java from Shell Script(BASH) Hangs

Hello All, Hope all is well. I am newbie to Shell programming and when I execute simple Java program from Shell script it does not return the control to the command prompt ... it hangs. When I hit "ENTER" or any other command , I get the control back. My java code has nothing but... (10 Replies)
Discussion started by: samshaw
10 Replies

6. AIX

UnsatisfiedLinkError with Java1.6 in AIX6.1

Hi Folks, I'm facing the below error when loading my library on AIX6.1 java.lang.UnsatisfiedLinkError: marimba (A file or directory in the path name do es not exist.) at java.lang.ClassLoader.loadLibraryWithPath(ClassLoader.java:1013) at... (7 Replies)
Discussion started by: Bharath_M
7 Replies

7. Programming

How to get the value from address?

No, I am not a novice in c - not at all! I have plenty of experience in c, c++, java etc. But I am facing a awkward problem in c (gcc in RHEL) - I am not able to get the value pointed by the pointer :wall: :wall: Look at the following code - #include <stdio.h> int main() { int... (5 Replies)
Discussion started by: nsinha
5 Replies

8. Shell Programming and Scripting

sed appending problem

i have a number of java files containing eg: --------------myfile.java-------------- package zip.fun.myfiles; import java.* import something..; import sdfdfdsa; ... ... -------------------------------------------- Now I need to append / insert a line as follows: ... (10 Replies)
Discussion started by: linuxadmin
10 Replies

9. Red Hat

Java patching

hello, I'm a Solaris admin and I was asked to patch some RHEL servers. I'm having trouble trying to figure out the RHEL java version. Can someone help me? This what I do in Solaris java -version java version "1.5.0_34" java(TM) 2 Runtime Envirement, Standard Edition (build 1.5.0_34-b03)... (5 Replies)
Discussion started by: bitlord
5 Replies

10. Programming

Java 7 installation problem

Hi, I am trying to install java7.6 on redhat 6.2 but got the below error message. In fact this error comes up for all the supported OS of JDK 7 and JRE 7. I am running this as root and I dont have any other Java version installed. # rpm -i jre-7u6-linux-x64.rpm Unpacking JAR files... ... (5 Replies)
Discussion started by: nvk_vinoth
5 Replies

11. Programming

Java: Repeat a command

I came across a site to learn java and they give you practice problems to do. I was wondering if anyone can help me with this since I am totally new to Java. Here is the first problem: Write a program that will read in a name from the command line and write it out 100 times. Thank you for any... (10 Replies)
Discussion started by: totoro125
10 Replies

12. Programming

Java Date Class

I am looking at a website to learn Java and this is one of the exercises. Write a program that will show different time and date information based on what number you send it. The codes are: 0 - number of milliseconds since January 1, 1970 1 - number of seconds since January 1, 1970 2 -... (6 Replies)
Discussion started by: totoro125
6 Replies

13. Programming

How to replicate Ruby´s binary file reading with Java?

Hello to all guys, Maybe some expert could help me. I have a working ruby script shown below that reads a big binary file (more than 2GB). The chunks of data I want to analyze is separated by the sequence FF47 withing the binary. So, in the ruby script is defined as "line separator" =... (10 Replies)
Discussion started by: Ophiuchus
10 Replies

14. Shell Programming and Scripting

Java stack trace parser in awk

I want the developers to get a mail with Java stack traces on a daily bases. When something is flaged as known issue and will get a fix but mean while this does not need to get sent each dayl. This is what I got so far. It's a bash script that runs some AWK in it. To get the files that needs to... (6 Replies)
Discussion started by: chipmunken
6 Replies

15. UNIX for Beginners Questions & Answers

Need to filter the result set within 2 time frame

my sample file is like this $cat onefile 05/21/18 13:10:07 ABRT US1CPDAY Status 1 05/21/18 21:18:54 ABRT DailyBackup_VFFPRDAPENTL01 Status 6 05/21/18 21:26:24 ABRT DailyBackup_VFFPRDAPENTL02 Status 6 05/21/18 21:57:36 ABRT DailyBackup_vm-ea1ffpreng01 Status 6... (7 Replies)
Discussion started by: gotamp
7 Replies