Change hard-coded device id for TT location; remove bash script that's no longer used.

This commit is contained in:
jkaplon 2016-08-06 11:22:42 -04:00
parent b748029383
commit 81bba63e1a
2 changed files with 2 additions and 19 deletions

View File

@ -1,17 +0,0 @@
#!/bin/bash
# Call this script from a cron job:
# MAILTO=jody@kaplon.us
# 0,30 * * * * ~/dead-man-qry.bash
# Build in a buffer of 15min to avoid false positives.
NUMHRS=6.25
# set now variable
NOW=$(date -u +"%Y-%m-%d %H:%M:%S")
RESULT=$(sqlite3 /var/www/tenniscourtsopen.com/courtsopen.db "select published_at from Alerts where datetime(published_at) > datetime('${NOW}', '-${NUMHRS} hours') order by datetime(published_at) limit 1")
if [ -z "$RESULT" ]; then
echo "No data from device in last $NUMHRS hours."
fi

View File

@ -217,7 +217,7 @@ app.get('/:loc/status', function(req, res) {
"select origjson " +
"from alerts " +
"where status in ('Open', 'Closed') " +
"and coreid = '300029000347343339373536' " +
"and coreid = '2a002b000947343432313031' " +
"order by published_at desc " +
"limit 1"
client.query(mostRecentStatusQry, function(err, result) {
@ -247,7 +247,7 @@ app.get('/:loc', function(req, res) {
"select status, published_at " +
"from alerts " +
"where status in ('Open', 'Closed') " +
"and coreid = '300029000347343339373536' " +
"and coreid = '2a002b000947343432313031' " +
"order by published_at desc " +
"limit 2"
client.query(devIndexQry, function(err, result) {