Primeiro, como escreveu o ETL, ative mod_status
com ExtendedStatus On
para ver as solicitações atuais e seus estados, tempos de execução ... etc. Você também pode usar um apachetop
para obter informações sobre qual arquivo é mais popular. Se não for informação suficiente para você, como timmeyh escreveu, você pode usar strace
, mas eu sugiro -ff
e -p
switches (tenha certeza que você especificou o ID do processo principal do apache).
-ff
switch
If the -o filename option is in effect, each processes trace is written to filename.pid where pid is the numeric process id of each process. This is incompatible with -c, since no per-process counts are kept.
-p
switch
Attach to the process with the process ID pid and begin tracing. The trace may be terminated at any time by a keyboard interrupt signal (CTRL-C). strace will respond by detaching itself from the traced process(es) leaving it (them) to continue running.