blob: 468f71e4372844810a86d1aeaf4a8bd62baa6cea [file] [log] [blame]
Thomas Vachuska15370d22018-01-30 13:57:38 -08001#!/bin/bash
2
3#
4# Copyright 2015-present Open Networking Foundation
5#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17#
18
19# -----------------------------------------------------------------------------
20# Tool to collect cluster-wide diagnostics into a single tar stream.
21# -----------------------------------------------------------------------------
22function usage() {
Thomas Vachuskaa7be50d2018-04-16 14:02:18 -070023 echo "usage: $(basename $0) [-x] [-n name] [-P port] [-u user] [-p password] [ip1 ip2...]"
Thomas Vachuska15370d22018-01-30 13:57:38 -080024 echo ""
25 echo "Environment Variables:"
26 echo " ONOS_INSTANCES IPs or hostnames of ONOS cluster machines"
27 echo " ONOS_WEB_USER username for REST API"
28 echo " ONOS_WEB_PASS password for REST API"
29 echo ""
30 echo "Example Usages:"
31 echo " # Collect compressed diagnostics for the cluster."
32 echo " # REST API user and password are drawn from environment variables."
33 echo " # Collection archive will be named /tmp/onos-diags.tar.gz"
34 echo " # The cluster node IPs will be drawn from ONOS_INSTANCES variable."
35 echo " > $(basename $0) "
36 echo ""
37 echo " # Collect diagnostics for the cluster and leave them extracted. "
38 echo " # Collection directory will be named /tmp/prague-diags/"
39 echo " # Collection archive will be named /tmp/prague-diags.tar.gz."
40 echo " # REST API user name is 'onos' and password is 'rules'."
41 echo " # The cluster node IPs will be drawn from ONOS_INSTANCES variable."
42 echo " > $(basename $0) -x -n prague -u onos -p rules"
43 echo ""
44 echo " # Collect compressed diagnostics for a cluster."
45 echo " # REST API user name is 'onos' and password is 'rules'."
46 echo " # Collection archive will be named /tmp/onos-diags.tar.gz"
47 echo " # The cluster node IPs are listed explicitly."
48 echo " > $(basename $0) -u onos -p rules 172.17.0.11 172.17.0.12 172.17.0.13"
49
50 exit 1
51}
52
Thomas Vachuskaa7be50d2018-04-16 14:02:18 -070053ONOS_WEB_USER=${ONOS_WEB_USER:-onos} # ONOS WEB User defaults to 'onos'
54ONOS_WEB_PASS=${ONOS_WEB_PASS:-rocks} # ONOS WEB Password defaults to 'rocks'
55ONOS_WEB_PORT=${ONOS_WEB_PORT:-8181} # REST API port defaults to '8181'
56
57. $(dirname $0)/_find-node
58
Charles Chanc6576fa2018-03-08 14:59:42 -080059# TODO We should make SR commands optional
Thomas Vachuska15370d22018-01-30 13:57:38 -080060CLI_COMMANDS=(
Thomas Vachuskaa40aa0b2018-02-01 15:52:10 -080061 "feature:repo-list"
Thomas Vachuska15370d22018-01-30 13:57:38 -080062 "feature:list"
63 "bundle:list"
64 "scr:list"
65
66 "summary"
67 "nodes"
68 "apps -s"
69 "netcfg"
70 "cfg get"
71
72 "devices"
73 "links"
74 "hosts"
Pier4099f052018-04-05 20:45:40 +020075 "interfaces"
Thomas Vachuska15370d22018-01-30 13:57:38 -080076
77 "ports -e"
78 "portstats -nz"
79
Thomas Vachuska7f2a3562018-02-28 10:02:16 -080080 "packet-processors"
81 "packet-requests"
82
Thomas Vachuska15370d22018-01-30 13:57:38 -080083 "intents"
84 "flows -s"
85 "groups"
86
87 "roles"
88 "masters"
89
Charles Chanc6576fa2018-03-08 14:59:42 -080090 "fpm-connections"
Thomas Vachuska15370d22018-01-30 13:57:38 -080091 "routes"
92 "obj-next-ids"
93 "obj-pending-nexts"
Charles Chan8b7df412018-04-24 10:23:21 -070094 "obj-queues"
Thomas Vachuska15370d22018-01-30 13:57:38 -080095
Charles Chanc6576fa2018-03-08 14:59:42 -080096 "sr-device-subnets"
97 "sr-ecmp-spg"
Charles Chan8bc75ee2018-04-17 18:56:53 -070098 "sr-should-program"
Charles Chanc6576fa2018-03-08 14:59:42 -080099 "sr-link-state"
100 "sr-mcast-next"
101 "sr-mcast-tree"
Pier954b3682018-04-18 08:50:29 +0200102 "sr-mcast-leader"
Charles Chanc6576fa2018-03-08 14:59:42 -0800103 "sr-next-hops"
Andreas Pantelopoulosff691b72018-03-12 16:30:20 -0700104 "sr-pw-list"
Charles Chanc6576fa2018-03-08 14:59:42 -0800105 "dhcp-relay"
Pier4099f052018-04-05 20:45:40 +0200106
107 "mcast-host-routes"
108 "mcast-host-show"
Thomas Vachuska15370d22018-01-30 13:57:38 -0800109)
110
Thomas Vachuskaa7be50d2018-04-16 14:02:18 -0700111port=${ONOS_WEB_PORT}
112user=${ONOS_WEB_USER}
113password=${ONOS_WEB_PASS}
114
Thomas Vachuska15370d22018-01-30 13:57:38 -0800115# Scan arguments for user/password or other options...
Thomas Vachuskaa7be50d2018-04-16 14:02:18 -0700116while getopts n:P:u:p:x?h o; do
Thomas Vachuska15370d22018-01-30 13:57:38 -0800117 case "$o" in
118 n) name=$OPTARG;;
Thomas Vachuskaa7be50d2018-04-16 14:02:18 -0700119 P) port=$OPTARG;;
Thomas Vachuska15370d22018-01-30 13:57:38 -0800120 u) user=$OPTARG;;
121 p) password=$OPTARG;;
122 x) extract=true;;
123 *) usage;;
124 esac
125done
Thomas Vachuska7f2a3562018-02-28 10:02:16 -0800126
Thomas Vachuska15370d22018-01-30 13:57:38 -0800127let OPC=$OPTIND-1
128shift $OPC
129
130[ $# -lt 1 -a -z "$ONOS_INSTANCES" ] && usage;
131
132diags=/tmp/${name:-onos}-diags
133rm -fr $diags $diags.tar.gz; mkdir -p $diags
134
135[ -z $1 ] && nodes=$ONOS_INSTANCES || nodes=$*
136
137# Collect diagnostics from each cluster node
138for node in $nodes; do
139 printf "Collecting diagnostics on $node..."
140
141 # Prepare a clean place for collecting the node diagnostic data
142 cd $diags; rm -fr $node; mkdir -p $node; cd $node;
143
144 # Acquire locally obtained diagnostics via REST API and extract them
145 printf "logs "
146 curl -sS --fail --user $user:$password \
Thomas Vachuskaa7be50d2018-04-16 14:02:18 -0700147 http://$node:$port/onos/v1/diagnostics > ../$node.tar.gz
Thomas Vachuska7f2a3562018-02-28 10:02:16 -0800148 tar zxf ../$node.tar.gz && rm ../$node.tar.gz
Thomas Vachuska15370d22018-01-30 13:57:38 -0800149
150 # Acquire remotely obtained diagnostics via ssh CLI
151 for cmd in "${CLI_COMMANDS[@]}"; do
152 cmdLog="$(echo $cmd | cut -d\ -f1 | sed 's/:/-/g').txt"
153 printf "$cmdLog "
154 onos $node $cmd 2>/dev/null >$cmdLog
155 done
156
Thomas Vachuska15370d22018-01-30 13:57:38 -0800157 printf " Done.\n"
Thomas Vachuska15370d22018-01-30 13:57:38 -0800158done
159
160# Tar-up diagnostics from all the nodes
161cd $diags
162tar zcf $diags.tar.gz *
163[ -z $extract ] && rm -fr $diags