Skip to content

Instantly share code, notes, and snippets.

@nodesocket
Created February 17, 2013 17:13
Show Gist options
  • Save nodesocket/4972336 to your computer and use it in GitHub Desktop.
Save nodesocket/4972336 to your computer and use it in GitHub Desktop.
<?php
require_once("classes/MongoConfiguration.php");
require_once("classes/MongoConnection.php");
while(true) {
$mongodb = MongoConnection::connect();
print_r($mongodb);
if($mongodb) {
echo "MongoDB [UP]\n";
} else {
echo "MongoDB [DOWN]\n";
}
//Without close, never hits MongoDB [DOWN]
//MongoConnection::close();
sleep(1);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment