0

I am having a load test run on a linux machine which is generating huge .core files. My question is how do I analyse these. GDB is an option but would it mean to start the load test from inside GDB. Is there other tool which can be used?

Twaha Mehmood
  • 737
  • 3
  • 9
  • 26

1 Answers1

0

hopefully you are running your debug version of the binary, then after a core dump, you can just do

 $ gdb <Your_binary> <core_dump_file>
 (gdb) bt

then you can examine the stack trace.