04-26-2019
How to analyze sosreport file that I generated.?
Hello Team,
Could You give me some hints how I should review the sosreport that I generated? I know how to analysis the SAR files however sosreport is my last hope - python script has hunged and I would like to know the root cause - for this is not performance issue.
Thanks in advance!
Regards,
Patryk
10 More Discussions You Might Find Interesting
1. Programming
I have created an executable using my login session in an AIX Version 5 Unix system. After to which I have change the file mode to set uid and rwsrwx--x and ownership to root:system by using the following Standard C Library functions.
chmod (name, S_ISUID|S_IRWXU|S_IRWXG|S_IXOTH|S_IROTH)
chown... (6 Replies)
Discussion started by: S.P.Prasad
6 Replies
2. Shell Programming and Scripting
Hi
I need to get the last generated file in a directory using ls -ltr. I need to store the output of ls -ltr in a variable.
it will like this
$xyz = -rw-rw-r-- 1 sblp003 siebel 1060 Dec 18 13:33
from this output, I need to do a substring to get this value alone "Dec 18... (8 Replies)
Discussion started by: ragha81
8 Replies
3. Linux
Some strange behavior.
Process is receiving Segmentation Fault. But no core files getting generated.
I have checked ulimit.
coredumpsize = unlimited.
In console, process is printing Segmentation Fault even through gdb also same behavior But No corefile.
Any possible reason ?
... (3 Replies)
Discussion started by: ashokd001
3 Replies
4. Shell Programming and Scripting
Hi guys,
I have multiple files (>5000) which I have in a folder. I read every file name and put it in a tmp variable "i" so that i can use it in the following task.
I have a large .txt file (>50 MB) in which I want to find the variable "i" and the lines after this variable, so that I can use... (4 Replies)
Discussion started by: Ashitaka007
4 Replies
5. UNIX for Dummies Questions & Answers
Hi ,
Log file is not getting generated. any suggestion? Thanks
date1=$(date '+%m/%d/%y-%H:%M:%S')
log="wrapper.log.$date1"
echo " somethng" > $log (2 Replies)
Discussion started by: ajincoep
2 Replies
6. UNIX for Dummies Questions & Answers
What command should I use to analyze file hashing of fixed flat files.
How much work does it take for multiple flat files. (3 Replies)
Discussion started by: jbjoat
3 Replies
7. Programming
Hi, I have two files:
Input_file1.txt
124
235
152
178
156
142
178
163
159
Input_file2.txt
124|5623
452|6698
178|9995
235|7542
159|8852 (1 Reply)
Discussion started by: cpp_beginner
1 Replies
8. UNIX for Dummies Questions & Answers
Hi Dears,
I use the below code to analyze lines in a file:
for line in `cat ucsv`
do
echo $line
//analyze statements
donehowever, if line contains space char, it will be broken. for example, if file content is:
#login,full name,email,project,role,action
gmwen,Bruce... (3 Replies)
Discussion started by: crest.boy
3 Replies
9. Shell Programming and Scripting
My shell script it.sh
#!/bin/sh
ORACLE_HOME=/var/opt/oracle/product/10g; export ORACLE_HOME
PATH=$PATH:$ORACLE_HOME/bin:/bin:/usr/bin; export PATH
today=`date "+%m-%d-%Y %H:%M:%S"`; export today
CUR_DIR=$1; export CUR_DIR
LOG_FILE=error.log; export LOG_FILE
# Direct script output to... (4 Replies)
Discussion started by: rafa_fed2
4 Replies
10. HP-UX
Hi,
May I know what is sosreport and how to get that report from HP-UX?
Regards,
Maddy (2 Replies)
Discussion started by: Maddy123
2 Replies
LEARN ABOUT DEBIAN
python-coverage
PYTHON-COVERAGE(1) General Commands Manual PYTHON-COVERAGE(1)
NAME
python-coverage - measure code coverage of Python program execution
SYNOPSIS
python-coverage -x module.py [ARG...]
python-coverage -e
python-coverage -r [-m]
python-coverage -a [file...]
DESCRIPTION
python-coverage executes a Python program and measures which of its statements are executed and which are not. It stores the information
in the file .coverage in the current working directory.
OPTIONS
-e Erase the .coverage file.
-x Execute a Python module, giving it the remaining command line arguments.
-r Produce a coverage report.
-m With -r, show the line numbers that were missed by the execution.
-a Annotate source files. For each source file foo, produce foo,cover, with executed lines prefixed by ">" and non-executed by "!".
--help Produce a help summary. It might be more helpful than this manual page.
AUTHOR
The python-coverage command is a one-line Python script which calls the coverage.py Python module to do all the work. The module was rigi-
nally developed by Gareth Rees, and is now developed by Ned Batchelder. The module's home page is
http://www.nedbatchelder.com/code/modules/coverage.html.
This manual page was cobbled together by Lars Wirzenius for Debian, by copy-pasting from the help texts from the module.
PYTHON-COVERAGE(1)