tom | 82d6bde | 2014-09-23 17:33:58 -0700 | [diff] [blame] | 1 | #!/bin/bash |
Pavlin Radoslavov | 9141379 | 2014-10-15 11:00:32 -0700 | [diff] [blame] | 2 | # ----------------------------------------------------------------------------- |
tom | 82d6bde | 2014-09-23 17:33:58 -0700 | [diff] [blame] | 3 | # Checks the logs of the remote ONOS instance and makes sure they are clean. |
Pavlin Radoslavov | 9141379 | 2014-10-15 11:00:32 -0700 | [diff] [blame] | 4 | # ----------------------------------------------------------------------------- |
tom | 82d6bde | 2014-09-23 17:33:58 -0700 | [diff] [blame] | 5 | |
Ayaka Koshibe | bad156d | 2015-09-18 17:30:14 -0700 | [diff] [blame] | 6 | function __usage() { |
| 7 | cat << _EOM_ |
| 8 | |
| 9 | usage: |
| 10 | $(basename $0) [node] ['old'] |
| 11 | |
| 12 | options: |
| 13 | - [node] : The node whose logs to inspect. The default is \$OCI. |
| 14 | - ['old'] : If 'old' is specified, the logs are simply searched for errors |
| 15 | and exceptions, and they are displayed. |
| 16 | |
| 17 | summary: |
| 18 | Checks the logs of the remote ONOS instance and makes sure they are clean. |
| 19 | |
| 20 | _EOM_ |
| 21 | } |
| 22 | |
| 23 | [ "$1" = "-h" ] && __usage && exit 0 |
| 24 | |
tom | 82d6bde | 2014-09-23 17:33:58 -0700 | [diff] [blame] | 25 | [ ! -d "$ONOS_ROOT" ] && echo "ONOS_ROOT is not defined" >&2 && exit 1 |
| 26 | . $ONOS_ROOT/tools/build/envDefaults |
| 27 | |
| 28 | remote=$ONOS_USER@${1:-$OCI} |
| 29 | |
Thomas Vachuska | 77a9a44 | 2015-05-19 17:35:52 -0700 | [diff] [blame] | 30 | LOG=$ONOS_INSTALL_DIR/log/karaf.log* |
tom | 82d6bde | 2014-09-23 17:33:58 -0700 | [diff] [blame] | 31 | |
Thomas Vachuska | 77a9a44 | 2015-05-19 17:35:52 -0700 | [diff] [blame] | 32 | aux=/tmp/log.$$ |
| 33 | |
| 34 | if [ "$2" = "old" ]; then |
| 35 | ssh $remote "egrep 'ERROR|Exception|Error' $LOG" |
| 36 | |
| 37 | else |
| 38 | ssh $remote " |
Ayaka Koshibe | bad156d | 2015-09-18 17:30:14 -0700 | [diff] [blame] | 39 | [ "'`uname`'" != "'"Linux"'" ] && alias tac='tail -r' |
Thomas Vachuska | 77a9a44 | 2015-05-19 17:35:52 -0700 | [diff] [blame] | 40 | tac $LOG | awk ' |
| 41 | BEGIN { off = 0; fail = 0; } |
| 42 | / org.apache.karaf.main.lock.SimpleFileLock lock/ { |
| 43 | off = 1; |
| 44 | exit fail; |
| 45 | } |
| 46 | |
| 47 | / ERROR / { |
| 48 | if (!off) { |
| 49 | print \$0; |
| 50 | exc = 0; |
| 51 | fail = 1; |
| 52 | } |
| 53 | } |
| 54 | / WARN / { |
| 55 | if (!off && exc) { |
| 56 | print \$0; |
| 57 | exc = 0; |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | /^[a-zA-Z0-9.]*(Exception|Error)/ { |
| 62 | if (!off) { |
| 63 | print \$0; |
| 64 | exc = 1; |
| 65 | fail = 1; |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | / at / { |
| 70 | if (!off) { |
| 71 | print \$0; |
| 72 | } |
| 73 | } |
| 74 | END { exit fail; } |
| 75 | ' > $aux |
| 76 | status=\$? |
| 77 | tac $aux && rm $aux |
| 78 | exit \$status |
| 79 | " |
| 80 | fi |