getMessage()); } if ($_format === 'json') { echo json_encode($pod); } else { if ($pod['status'] === PodStatus::UP) { echo 'Status: Up
'; } if ($pod['status'] === PodStatus::DOWN) { echo 'Status: Down
'; } echo 'Last Git Pull: ' . $pod['hgitdate'] . '
'; echo 'Uptime This Month ' . $pod['uptimelast7'] . '
'; echo 'Months Monitored: ' . $pod['monthsmonitored'] . '
'; echo 'Response Time: ' . $pod['responsetimelast7'] . '
'; echo 'User Rating: ' . $pod['userrating'] . '
'; echo 'Server Location: ' . $pod['country'] . '
'; echo 'Latitude: ' . $pod['lat'] . '
'; echo 'Longitude: ' . $pod['long'] . '
'; }