Hi.
Doing some tests on fed/centos boxes.. Running a test app, that in turn kicks off a bunch of python apps.. The test is long running. for hours!
However, somewhere along the way, the py apps die/crash. In looking over the /var/log/messages logs, I see the abrt indicating it's captured data for the crash, but it seems to also then delete the data it collected.
An example of what I'm seeing is below.
I'm trying to figure out what parameters I can set, and where I need to set the attributes, to be able to capture/analyse the resulting data to figure out why the test py app is crashing..
Thoughts/comments would be useful..
Thanks
Jul 29 08:37:07 dell2 abrt: detected unhandled Python exception in '/home/ihubuser/crawltest_denny/rprofParse.py' Jul 29 08:37:07 dell2 abrtd: New client connected Jul 29 08:37:07 dell2 abrtd: Directory 'pyhook-2014-07-29-08:37:07-27994' creation detected Jul 29 08:37:07 dell2 abrt-server[29478]: Saved Python crash dump of pid 27994 to /var/spool/abrt/pyhook-2014-07-29-08:37:07-27994 Jul 29 08:37:07 dell2 abrtd: Executable '/home/ihubuser/crawltest_denny/rprofParse.py' doesn't belong to any package and ProcessUnpackaged is set to 'no' Jul 29 08:37:07 dell2 abrtd: 'post-create' on '/var/spool/abrt/pyhook-2014-07-29-08:37:07-27994' exited with 1 Jul 29 08:37:07 dell2 abrtd: Deleting problem directory '/var/spool/abrt/pyhook-2014-07-29-08:37:07-27994' Jul 29 08:40:29 dell2 abrt: detected unhandled Python exception in '/home/ihubuser/crawltest_denny/rprofParse.py' Jul 29 08:40:29 dell2 abrtd: New client connected Jul 29 08:40:29 dell2 abrtd: Directory 'pyhook-2014-07-29-08:40:29-6868' creation detected Jul 29 08:40:29 dell2 abrt-server[7944]: Saved Python crash dump of pid 6868 to /var/spool/abrt/pyhook-2014-07-29-08:40:29-6868 Jul 29 08:40:29 dell2 abrtd: Executable '/home/ihubuser/crawltest_denny/rprofParse.py' doesn't belong to any package and ProcessUnpackaged is set to 'no' Jul 29 08:40:29 dell2 abrtd: 'post-create' on '/var/spool/abrt/pyhook-2014-07-29-08:40:29-6868' exited with 1 Jul 29 08:40:29 dell2 abrtd: Deleting problem directory '/var/spool/abrt/pyhook-2014-07-29-08:40:29-6868' Jul 29 08:40:47 dell2 abrt: detected unhandled Python exception in '/home/ihubuser/crawltest_denny/rprofParse.py'
On Tue, 29 Jul 2014 13:11:56 -0400 bruce badouglas@gmail.com wrote:
Hi.
Doing some tests on fed/centos boxes.. Running a test app, that in turn kicks off a bunch of python apps.. The test is long running. for hours!
However, somewhere along the way, the py apps die/crash. In looking over the /var/log/messages logs, I see the abrt indicating it's captured data for the crash, but it seems to also then delete the data it collected.
An example of what I'm seeing is below.
I'm trying to figure out what parameters I can set, and where I need to set the attributes, to be able to capture/analyse the resulting data to figure out why the test py app is crashing..
Thoughts/comments would be useful..
It saw a crash from a python script that is not part of any package in Fedora. So, there's no where to report it to. :)
You would need to consult with whoever wrote/setup: /home/ihubuser/crawltest_denny/rprofParse.py on your machine.
kevin
Hi Kevin,
The py app is a test that we created.. I was hopeful that abrt might have stored something like, appX crashed at line Y!!
thanks
On Tue, Jul 29, 2014 at 1:36 PM, Kevin Fenzi kevin@scrye.com wrote:
On Tue, 29 Jul 2014 13:11:56 -0400 bruce badouglas@gmail.com wrote:
Hi.
Doing some tests on fed/centos boxes.. Running a test app, that in turn kicks off a bunch of python apps.. The test is long running. for hours!
However, somewhere along the way, the py apps die/crash. In looking over the /var/log/messages logs, I see the abrt indicating it's captured data for the crash, but it seems to also then delete the data it collected.
An example of what I'm seeing is below.
I'm trying to figure out what parameters I can set, and where I need to set the attributes, to be able to capture/analyse the resulting data to figure out why the test py app is crashing..
Thoughts/comments would be useful..
It saw a crash from a python script that is not part of any package in Fedora. So, there's no where to report it to. :)
You would need to consult with whoever wrote/setup: /home/ihubuser/crawltest_denny/rprofParse.py on your machine.
kevin
-- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
On Tue, 29 Jul 2014 14:01:08 -0400 bruce badouglas@gmail.com wrote:
Hi Kevin,
The py app is a test that we created.. I was hopeful that abrt might have stored something like, appX crashed at line Y!!
Just edit:
/etc/abrt/abrt-action-save-package-data.conf
and set:
ProcessUnpackaged = no
to yes, restart abrtd and it should show the crash with more information.
kevin
hey kevin.
Thanks. I'll try, we'll see what the results are!
'ppreciate it.
On Tue, Jul 29, 2014 at 6:05 PM, Kevin Fenzi kevin@scrye.com wrote:
On Tue, 29 Jul 2014 14:01:08 -0400 bruce badouglas@gmail.com wrote:
Hi Kevin,
The py app is a test that we created.. I was hopeful that abrt might have stored something like, appX crashed at line Y!!
Just edit:
/etc/abrt/abrt-action-save-package-data.conf
and set:
ProcessUnpackaged = no
to yes, restart abrtd and it should show the crash with more information.
kevin
-- users mailing list users@lists.fedoraproject.org To unsubscribe or change subscription options: https://admin.fedoraproject.org/mailman/listinfo/users Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines Have a question? Ask away: http://ask.fedoraproject.org
On 29Jul2014 18:19, bruce badouglas@gmail.com wrote:
hey kevin. Thanks. I'll try, we'll see what the results are!
[...]
On Tue, Jul 29, 2014 at 6:05 PM, Kevin Fenzi kevin@scrye.com wrote:
On Tue, 29 Jul 2014 14:01:08 -0400 bruce badouglas@gmail.com wrote:
Hi Kevin, The py app is a test that we created.. I was hopeful that abrt might have stored something like, appX crashed at line Y!!
Just edit: /etc/abrt/abrt-action-save-package-data.conf
[...]
Hi bruce,
Just a tangent to this abrt stuff; you _do_ save the stderr of your python apps to log files don't you?
If the app aborts because of a regular python exception then there will be a nice stack trace in the stderr log file. Simple and direct.
Cheers, Cameron Simpson cs@zip.com.au