forked from jasonacox/Powerwall-Dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
verify.sh
executable file
·311 lines (297 loc) · 9.32 KB
/
verify.sh
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
#!/bin/bash
# Stop on Errors
set -e
# Formatting
default="\033[39m"
white="\033[97m"
green="\033[32m"
red="\033[91m"
yellow="\033[33m"
bold="\033[0m${white}\033[1m"
subbold="\033[0m${green}"
normal="${white}\033[0m"
dim="\033[0m${white}\033[2m"
alert="\033[0m${red}\033[1m"
alertdim="\033[0m${red}\033[2m"
# Check for no-color mode
if [ $# -ne 0 ]; then
# no color
bold=""
subbold=""
normal=""
dim=""
alert=""
alertdim=""
fi
# Set Globals
UKN="${alertdim}Unknown${normal}"
GOOD="${subbold}GOOD${normal}"
CURRENT=$UKN
ALLGOOD=1
if [ -f VERSION ]; then
CURRENT=`cat VERSION`
fi
TZ=`cat tz`
# Service Running Helper Function
running() {
local url=${1:-http://localhost:80}
local code=${2:-200}
if [[ $3 == 1 ]]; then
head="--head"
else
head=""
fi
local status=$(curl ${head} --location --connect-timeout 5 --write-out %{http_code} --silent --output /dev/null ${url})
[[ $status == ${code} ]]
}
echo -e "${bold}Verify Powerwall-Dashboard - Version ${subbold}${CURRENT}${normal} - Timezone: ${subbold}${TZ}${dim}"
echo -e "----------------------------------------------------------------------------"
echo -e "This script will attempt to verify all the services needed to run"
echo -e "Powerwall-Dashboard. Use this output when you open an issue for help:"
echo -e "https://github.com/jasonacox/Powerwall-Dashboard/issues/new"
echo -e ""
# Check compose env file
COMPOSE_ENV_FILE="compose.env"
if [ ! -f ${COMPOSE_ENV_FILE} ]; then
echo -e " - WARNING: You are missing ${COMPOSE_ENV_FILE}"
fi
echo -e ""
# pypowerwall
echo -e "${bold}Checking pypowerwall${dim}"
echo -e "----------------------------------------------------------------------------"
CONTAINER="pypowerwall"
VER=$UKN
PWVER=$UKN
PWSTATE="${alert}ERROR: Not Connected${dim}"
ENV_FILE="pypowerwall.env"
PORT="8675"
echo -e -n "${dim} - Config File ${ENV_FILE}: "
if [ ! -f ${ENV_FILE} ]; then
echo -e "${alert}ERROR: Missing$"
ALLGOOD=0
else
echo -e $GOOD
fi
echo -e -n "${dim} - Container ($CONTAINER): "
RUNNING=$(docker inspect --format="{{.State.Running}}" $CONTAINER 2>/dev/null)
if [ "$RUNNING" = "true" ]; then
echo -e $GOOD
echo -e -n "${dim} - Service (port $PORT): "
if running http://localhost:$PORT/stats 200 0 2>/dev/null; then
echo -e $GOOD
VER=`curl --silent http://localhost:8675/stats | awk '{print $2" "$3" "$4}' | cut -d\" -f 2 2>/dev/null`
# check connection with powerwall
if running http://localhost:8675/version 200 0 2>/dev/null; then
PWSTATE="CONNECTED"
PWVER=`curl --silent http://localhost:8675/version | awk '{print $2}' | cut -d\" -f 2 2>/dev/null`
fi
else
echo -e "${alert}ERROR: Not Listening${normal}"
ALLGOOD=0
fi
else
echo -e "${alert}ERROR: Stopped${normal}"
ALLGOOD=0
fi
echo -e "${dim} - Version: ${subbold}$VER"
echo -e "${dim} - Powerwall State: ${subbold}$PWSTATE${dim} - Firmware Version: $PWVER${normal}"
# Check to see that TZ is set in pypowerwall
if ! grep -q "TZ=" pypowerwall.env; then
echo -e "${dim} - ${alertdim}ERROR: Your pypowerwall settings are missing TZ.${normal}"
fi
echo -e ""
# telegraf
echo -e "${bold}Checking telegraf${dim}"
echo -e "----------------------------------------------------------------------------"
CONTAINER="telegraf"
VER=$UKN
PORT=""
CONF_FILE="telegraf.conf"
echo -e -n "${dim} - Config File ${CONF_FILE}: "
if [ ! -f ${CONF_FILE} ]; then
echo -e "${alert}ERROR: Missing${normal}"
ALLGOOD=0
else
echo -e $GOOD
fi
CONF_FILE="telegraf.local"
echo -e -n "${dim} - Local Config File ${CONF_FILE}: "
if [ ! -f ${CONF_FILE} ]; then
echo -e "${alert}ERROR: Missing${normal}"
ALLGOOD=0
else
echo -e $GOOD
fi
echo -e -n "${dim} - Container ($CONTAINER): "
RUNNING=$(docker inspect --format="{{.State.Running}}" $CONTAINER 2>/dev/null)
if [ "$RUNNING" = "true" ]; then
echo -e $GOOD
VER=`docker exec --tty telegraf telegraf --version`
else
echo -e "${alert}ERROR: Stopped${normal}"
ALLGOOD=0
fi
echo -e "${dim} - Version: ${subbold}$VER"
echo -e ""
# influxdb
echo -e "${bold}Checking influxdb${dim}"
echo -e "----------------------------------------------------------------------------"
CONTAINER="influxdb"
VER=$UKN
CONF_FILE="pypowerwall.env"
PORT="8086"
echo -e -n "${dim} - Config File ${CONF_FILE}: "
if [ ! -f ${CONF_FILE} ]; then
echo -e "${alert}ERROR: Missing${normal}"
ALLGOOD=0
else
echo -e $GOOD
fi
echo -e -n "${dim} - Container ($CONTAINER): "
RUNNING=$(docker inspect --format="{{.State.Running}}" $CONTAINER 2>/dev/null)
if [ "$RUNNING" = "true" ]; then
echo -e $GOOD
echo -e -n "${dim} - Service (port $PORT): "
if running http://localhost:$PORT/ping 204 1 2>/dev/null; then
echo -e $GOOD
VER=`docker exec --tty influxdb sh -c "influx -version" 2>/dev/null`
else
echo -e "${alert}ERROR: Not Listening${normal}"
ALLGOOD=0
fi
else
echo -e "ERROR: Stopped"
ALLGOOD=0
fi
echo -e "${dim} - Version: ${subbold}$VER"
echo -e ""
# grafana
echo -e "${bold}Checking grafana${dim}"
echo -e "----------------------------------------------------------------------------"
CONTAINER="grafana"
VER=$UKN
WEATHER=$UKN
PORT="9000"
ENV_FILE="grafana.env"
echo -e -n "${dim} - Config File ${ENV_FILE}: "
if [ ! -f ${ENV_FILE} ]; then
echo -e "${alert}ERROR: Missing${normal}"
ALLGOOD=0
else
echo -e $GOOD
if ! grep -q "yesoreyeram-boomtable-panel-1.5.0-alpha.3.zip" grafana.env; then
echo -e "${dim} - ${alertdim}WARNING: Your Grafana settings are outdated."
fi
fi
echo -e -n "${dim} - Container ($CONTAINER): "
RUNNING=$(docker inspect --format="{{.State.Running}}" $CONTAINER 2>/dev/null)
if [ "$RUNNING" = "true" ]; then
echo -e $GOOD
VER=`docker exec --tty grafana grafana-cli --version 2>/dev/null`
echo -e -n "${dim} - Service (port $PORT): "
if running http://localhost:$PORT/login 200 1 2>/dev/null; then
echo -e $GOOD
else
echo -e "${alert}ERROR: Not Listening - Logs:${alertdim}"
echo -e "---"
docker logs grafana 2>&1 | tail -11
echo -e "---${normal}"
ALLGOOD=0
fi
else
echo -e "${alert}ERROR: Stopped${normal}"
ALLGOOD=0
fi
echo -e "${dim} - Version: ${subbold}$VER"
echo -e ""
# weather411
echo -e "${bold}Checking weather411${dim}"
echo -e "----------------------------------------------------------------------------"
CONTAINER="weather411"
VER=$UKN
WEATHER=$UKN
ENV_FILE="weather/weather411.conf"
PORT="8676"
echo -e -n "${dim} - Config File ${ENV_FILE}: "
if [ ! -f ${ENV_FILE} ]; then
echo -e "${alertdim}Missing - weather411 not set up"
ALLGOOD=0
else
echo -e $GOOD
fi
echo -e -n "${dim} - Container ($CONTAINER): "
RUNNING=$(docker inspect --format="{{.State.Running}}" $CONTAINER 2>/dev/null)
if [ "$RUNNING" = "true" ]; then
echo -e $GOOD
echo -e -n "${dim} - Service (port $PORT): "
if running http://localhost:$PORT/stats 200 0 2>/dev/null; then
echo -e $GOOD
VER=`curl --silent http://localhost:$PORT/stats | awk '{print $2" "$3" "$4}' | cut -d\" -f 2 2>/dev/null`
# check connection with openweather
if running http://localhost:$PORT/temp 200 0 2>/dev/null; then
WEATHER=`curl --silent http://localhost:$PORT/temp 2>/dev/null`
fi
echo -e "${dim} - Weather: ${subbold}${WEATHER}"
else
echo -e "${alert}ERROR: Not Listening - Logs:${alertdim}"
echo -e "---"
docker logs weather411 2>&1 | tail -11
echo -e "---${normal}"
ALLGOOD=0
fi
else
echo -e "${alert}ERROR: Stopped${normal}"
ALLGOOD=0
fi
echo -e "${dim} - Version: ${subbold}$VER"
echo -e ""
if [ -f powerwall.extend.yml ]; then
# ecowitt
echo -e "${bold}Checking ecowitt${dim} (optional component - OK if missing)"
echo -e "----------------------------------------------------------------------------"
CONTAINER="ecowitt"
VER=$UKN
ECOWITT=$UKN
ENV_FILE="weather/contrib/ecowitt/ecowitt.conf"
PORT="8686"
echo -e -n "${dim} - Config File ${ENV_FILE}: "
if [ ! -f ${ENV_FILE} ]; then
echo -e "${alertdim}Missing - ecowitt not set up"
ALLGOOD=0
else
echo -e $GOOD
fi
echo -e -n "${dim} - Container ($CONTAINER): "
RUNNING=$(docker inspect --format="{{.State.Running}}" $CONTAINER 2>/dev/null)
if [ "$RUNNING" = "true" ]; then
echo -e $GOOD
echo -e -n "${dim} - Service (port $PORT): "
if running http://localhost:$PORT/stats 200 0 2>/dev/null; then
echo -e $GOOD
VER=`curl --silent http://localhost:$PORT/stats | awk '{print $2" "$3" "$4}' | cut -d\" -f 2 2>/dev/null`
# check connection with ecowitt
if running http://localhost:$PORT/temp 200 0 2>/dev/null; then
WEATHER=`curl --silent http://localhost:$PORT/temp 2>/dev/null`
fi
echo -e "${dim} - Weather: ${subbold}${WEATHER}"
else
echo -e "${alert}ERROR: Not Listening - Logs:${alertdim}"
echo -e "---"
docker logs weather411 2>&1 | tail -11
echo -e "---${normal}"
ALLGOOD=0
fi
else
echo -e "${alert}ERROR: Stopped${normal}"
ALLGOOD=0
fi
echo -e "${dim} - Version: ${subbold}$VER"
echo -e ""
fi
if [ $ALLGOOD -ne 1 ]; then
echo "All tests did not succeed."
exit 1
else
echo "All tests succeeded."
exit 0
fi