Check-Host.net
White Label Solution
Enchanche your project with the multi location network checks for providing information about your services availability and network state
Enchanche your project with the multi location network checks for providing information about your services availability and network state
Deployment does not include any branding of the Check-Host.net. Provide the service as your own at your own domain.
Just fits your project. JavaScript solution uses only basic HTML5 and JavaScript. No Front-End or Back-End modifications required.
You are able to perform checks from any check points of the Check-Host.net
Our team will help to improve and adapt the solution for the needs of your business
JavaScript solution is easy to install. No additinal software required
All support request are processed by the development team. You will get the expert support.
<script src="https://check-host.net/js/checkhost-api.js"></script>
<link rel="stylesheet" type="text/css"
href="https://check-host.net/css/checkhost-whitelabel-default.css"/>
<form id='form-pinger'>
<select id="form-pinger-datacenter">
<option value="8.8.8.8">8.8.8.8, Google Public DNS a</option>
<option value="8.8.4.4">8.8.4.4, Google Public DNS b</option>
</select>
<input type="submit" value="Ping" />
</form>
<div id="check-host_container"></div>
</div>
<script>
window.addEventListener("DOMContentLoaded", function() {
var checkhost = new CheckHost.API();
var resultDisplayer = new CheckHost.ResultDisplayer["ping"]();
var datacenter = document.getElementById('form-pinger-datacenter');
document.getElementById("form-pinger").addEventListener("submit",
function(event) {
event.preventDefault();
checkhost.check({
"host": datacenter.value,
"type": "ping",
"resultDisplayer": resultDisplayer
});
return null;
});
});
</script>
<script src="https://check-host.net/js/checkhost-api.js"></script>
<link rel="stylesheet" type="text/css"
href="https://check-host.net/css/checkhost-whitelabel-default.css"/>
<form id='form-http-check'>
<input type="submit" value="HTTP check" />
</form>
<div id="check-host_container"></div>
</div>
<script>
window.addEventListener("DOMContentLoaded", function() {
var checkhost = new CheckHost.API();
var resultDisplayerHTTP = new CheckHost.ResultDisplayer["http"]();
document.getElementById("form-http-check").addEventListener("submit",
function(event) {
event.preventDefault();
checkhost.check({
"host": "https://check-host.net",
"type": "http",
"resultDisplayer": resultDisplayerHTTP
});
return null;
});
});
</script>