blob: da286bf85a66ff8e5805f4a20b853242d87477f5 [file] [log] [blame]
tom82d6bde2014-09-23 17:33:58 -07001#!/bin/bash
Pavlin Radoslavov91413792014-10-15 11:00:32 -07002# -----------------------------------------------------------------------------
tom82d6bde2014-09-23 17:33:58 -07003# Checks the logs of the remote ONOS instance and makes sure they are clean.
Pavlin Radoslavov91413792014-10-15 11:00:32 -07004# -----------------------------------------------------------------------------
tom82d6bde2014-09-23 17:33:58 -07005
6[ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1
7. $ONOS_ROOT/tools/build/envDefaults
8
9remote=$ONOS_USER@${1:-$OCI}
Thomas Vachuska756fb292014-10-21 20:35:10 -070010instance=$2
tom82d6bde2014-09-23 17:33:58 -070011
Thomas Vachuska756fb292014-10-21 20:35:10 -070012[ -n "$instance" ] && \
13 LOG=$ONOS_INSTALL_DIR/$KARAF_DIST/instances/$instance/data/log/karaf.log || \
14 LOG=$ONOS_INSTALL_DIR/log/karaf.log
tom82d6bde2014-09-23 17:33:58 -070015
16ssh $remote "egrep 'ERROR|Exception' $LOG"