forked from dcos/dcos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fetch_cluster_logs.bash
executable file
·234 lines (211 loc) · 8.29 KB
/
fetch_cluster_logs.bash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
#!/bin/bash
#
# SUMMARY:
# Helper script that can fetch all logs for any cluster and outputs them in the current working directory.
# Fetched logs are comprised of journald logs, mesos logs, sandbox logs and diagnostics bundles for all nodes.
#
# USAGE:
# bash fetch_cluster_logs.bash open <ssh-user> <master-public-ip> [--login-token=<token>] [--identity-file=<path>] [--max-artifact-size] [--debug] [--cli-version] [--cli-provider]
# bash fetch_cluster_logs.bash enterprise <ssh-user> <master-public-ip> [--username=<username>] [--password=<password>] [--identity-file=<path>] [--max-artifact-size] [--debug] [--cli-version] [--cli-provider]
#
# COMMANDS
# open Fetch the logs for an open cluster.
# enterprise Fetch the logs for an enterprise cluster.
#
# REQUIRED ARGUMENTS
# <ssh-user> ssh user to access the nodes of your cluster.
# <master-public-ip> Public ip for the master node of your cluster.
#
# OPTIONAL ARGUMENTS
# --login-token=<token> Token used to log in to your open DC/OS cluster. If omitted, you will be prompted for it during the DC/OS CLI cluster setup.
# --username=<username> Username to log in to your enterprise DC/OS cluster. If omitted, you will be prompted for it during the DC/OS CLI cluster setup.
# --password=<password> Password to log in to your DC/OS enterprise cluster. If omitted, you will be prompted for it during the DC/OS CLI cluster setup.
# --identity-file=<path> Path to the private ssh key that will be used to ssh into the nodes. If omitted, that key must be added to your ssh-agent.
# --max-artifact-size=<size> Maximum size (in megabytes) of artifacts produced by this script. Any artifact exceeding that limit will be deleted.
# --debug Turn on debug logging for the DC/OS CLI.
# --cli-version Version of the DC/OS CLI e.g. 0.7.5
# --cli-provider The DC/OS CLI authentication provider to use for login e.g. dcos-oidc-auth0
set +e
set -x
check_max_artifact_size() {
# checks that a given artifact is under the maximum allowed size. If it exceeds that limit, delete it.
artifact_name=$1
artifact_size=$(du --summarize --block-size=1M ${artifact_name} | grep -Po "\d+" | head -1)
if (( $artifact_size > $max_artifact_size )); then
sudo rm -rf $artifact_name
echo "Deleting artifact ${artifact_name}. Size of ${artifact_size}MB is exceeding limit of ${max_artifact_size}MB."
fi
}
dcos_variant=$1
if [[ -z $dcos_variant ]] || ([[ $dcos_variant != "open" ]] && [[ $dcos_variant != "enterprise" ]]); then
echo "ERROR: You must specify either the 'open' or 'enterprise' command depending on your cluster type."
exit 0
fi
shift
ssh_user=$1
if [[ -z $ssh_user ]]; then
echo "ERROR: Required argument 'ssh_user' was either not specified or null."
exit 0
fi
shift
master_public_ip=$1
if [[ -z $master_public_ip ]]; then
echo "ERROR: Required argument 'master_public_ip' was either not specified or null."
exit 0
fi
shift
if [[ $dcos_variant == "open" ]]; then
for i in "$@"
do
case $i in
--debug)
debug_options="-vv"
shift
;;
--login-token=*)
dcos_login_token_input="<<< ${i#*=}"
shift
;;
--identity-file=*)
identity_file="${i#*=}"
shift
;;
--max-artifact-size=*)
max_artifact_size="${i#*=}"
shift
;;
--cli-version=*)
cli_version="${i#*=}"
shift
;;
--cli-provider=*)
cli_provider="${i#*=}"
shift
;;
*)
echo "ERROR: Unrecognized argument '$i' for command '$dcos_variant'"
exit 0
;;
esac
done
else
for i in "$@"
do
case $i in
--debug)
debug_options="-vv"
shift
;;
--username=*)
dcos_username=$i
shift
;;
--password=*)
dcos_password=$i
shift
;;
--identity-file=*)
identity_file="${i#*=}"
shift
;;
--max-artifact-size=*)
max_artifact_size="${i#*=}"
shift
;;
--cli-version=*)
cli_version="${i#*=}"
shift
;;
--cli-provider=*)
cli_provider="${i#*=}"
shift
;;
*)
echo "ERROR: Unrecognized argument '$i' for command '$dcos_variant'"
exit 0
;;
esac
done
fi
if [[ -z $max_artifact_size ]]; then
# default to 2GB
max_artifact_size=2000
fi
if [[ -z $cli_version ]]; then
cli_version="0.7.5"
fi
if [[ -z $cli_provider ]]; then
cli_provider="dcos-oidc-auth0"
fi
ssh_options="-A -T -l $ssh_user -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null"
if [[ ! -z $identity_file ]]; then
ssh_options="-i $identity_file ${ssh_options}"
fi
# download the DC/OS CLI
if [ ! -f dcos-cli ]; then
wget "https://downloads.dcos.io/cli/releases/binaries/dcos/linux/x86-64/${cli_version}/dcos" --output-document=dcos-cli
chmod +x dcos-cli
fi
# link the CLI with the cluster
if [[ $dcos_variant == "open" ]]; then
bash -c "./dcos-cli $debug_options cluster setup $master_public_ip --provider=$cli_provider --insecure $dcos_login_token_input"
else
./dcos-cli $debug_options cluster setup $master_public_ip $dcos_username $dcos_password --insecure
fi
# generate diagnostics bundle
bundle_name=$(./dcos-cli $debug_options node diagnostics create all | grep -o bundle-.*)
echo "diagnostics bundle name: ${bundle_name}"
# wait for the diagnostics job to complete
status_output="$(./dcos-cli $debug_options node diagnostics --status)"
while [[ $status_output =~ "is_running: True" ]]; do
echo "Diagnostics job still running. Retrying in 5 seconds."
sleep 5
status_output="$(./dcos-cli $debug_options node diagnostics --status)"
done
# get diagnostics bundle
./dcos-cli $debug_options node diagnostics download $bundle_name
check_max_artifact_size "$bundle_name"
# copy the identity file to the master node so we don't need the ssh-agent when agent forwarding
if [[ ! -z $identity_file ]]; then
scp -i $identity_file -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null $identity_file ${ssh_user}@${master_public_ip}:~/$identity_file
fi
nodes_info_json=$(./dcos-cli $debug_options node --json)
for node_info in $(echo "$nodes_info_json" | jq -r '.[] | @base64'); do
_jq() {
echo "$node_info" | base64 --decode | jq -r ${1}
}
id=$(_jq '.id')
pid=$(_jq '.pid')
ip=$(_jq '.hostname')
# converting the dots to underscores in the ip for log file names
ip_underscores=${ip//./_}
if [[ $pid == *"master"* ]]; then
# get journald logs
ssh $ssh_options $master_public_ip -- journalctl -x --no-pager > master_journald.log
check_max_artifact_size "master_journald.log"
# get mesos logs
./dcos-cli $debug_options node log --leader > mesos_master.log
check_max_artifact_size "mesos_master.log"
else
mesos_sandbox_size=$(ssh $ssh_options $master_public_ip -- ssh $ssh_options $ip -- sudo du --summarize --block-size=1M /var/lib/mesos/slave/ | grep -Po "\d+")
free_space=$(ssh $ssh_options $master_public_ip -- ssh $ssh_options $ip -- sudo df --block-size=1M | grep -Po "\d+\s+\d+%\ /$" | grep -Po "\d+" | head -1)
if (( $free_space > $mesos_sandbox_size )); then
# remove unnecessary, bulky artifacts
ssh $ssh_options $master_public_ip -- ssh $ssh_options $ip -- sudo cp -a /var/lib/mesos/slave/ mesos_sandbox
ssh $ssh_options $master_public_ip -- ssh $ssh_options $ip -- sudo rm -rf mesos_sandbox/store
ssh $ssh_options $master_public_ip -- ssh $ssh_options $ip -- sudo find mesos_sandbox -name "*tar.gz" -type f -delete -o -name "*.jar" -type f -delete -o -name "*.so" -type f -delete
# get sandbox logs
ssh $ssh_options $master_public_ip -- ssh $ssh_options $ip -- sudo tar --exclude=provisioner -zc mesos_sandbox > sandbox_${ip_underscores}.tar.gz
check_max_artifact_size "sandbox_${ip_underscores}.tar.gz"
ssh $ssh_options $master_public_ip -- ssh $ssh_options $ip -- sudo rm -rf mesos_sandbox
else
echo "Cannot copy and collect mesos sandbox: sandbox size of ${mesos_sandbox_size}MB exceeds free space of ${free_space}MB."
fi
# get journald logs
ssh $ssh_options $master_public_ip -- ssh $ssh_options $ip -- journalctl -x --no-pager > agent_${ip_underscores}_journald.log
check_max_artifact_size "agent_${ip_underscores}_journald.log"
# get mesos logs
./dcos-cli $debug_options node log --mesos-id=$id > mesos_agent_${ip_underscores}.log
check_max_artifact_size "mesos_agent_${ip_underscores}.log"
fi
done