Обсуждение: log file: showing disconnects as well as connects?

Поиск
Список
Период
Сортировка

log file: showing disconnects as well as connects?

От
Mark Harrison
Дата:
Here's a quickie script to watch a particular session:

tail -f $LOG | awk '
/connection received: host='$1'/ { pid = $3 }
$3 == pid { print }'

Is there something in the log file which will indicate
a disconnect as well?

Many TIA,
Mark