本文整理汇总了PHP中Utilities::getHostErrorCount方法的典型用法代码示例。如果您正苦于以下问题:PHP Utilities::getHostErrorCount方法的具体用法?PHP Utilities::getHostErrorCount怎么用?PHP Utilities::getHostErrorCount使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Utilities
的用法示例。
在下文中一共展示了Utilities::getHostErrorCount方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: number_format
include 'header.inc.php';
?>
<?php
include 'accountSubnav.inc.php';
?>
<div class="row">
<div class="col-md-3">
<ul class="nav nav-pills nav-stacked">
<li>Hosts Total <span class="badge pull-right"><?php
echo number_format(Utilities::getHostCount($mysql));
?>
</span></li>
<li>Hosts Blocked <span class="badge pull-right"><?php
echo number_format(Utilities::getHostErrorCount($mysql));
?>
</span></li>
</ul>
</div>
</div>
<script>
$(document).ready(function() {
$('#apiCallBackAlert').hide();
$('[data-toggle="popover"]').popover({
trigger: 'hover',
'placement': 'auto'
});
});
示例2: sleep
exit;
}
$rs = $mysql->runQuery("select ipDomain from monitors where beenChecked = 0 limit 1;");
if ($row = mysqli_fetch_array($rs, MYSQL_ASSOC)) {
sleep(4);
//wait 4 seconds for them to finish
} else {
break;
}
}
$m->endWork();
$lastRunTime = (int) $m->runTime;
// mark this one as ran
$mysql->runQuery("update users set beenChecked = 1, lastChecked = '" . date('Y-m-d H:i:s') . "', lastRunTime = {$lastRunTime}");
$hostsChanged = Utilities::getHostChangeCount($mysql);
$errorHosts = Utilities::getHostErrorCount($mysql);
if ($hostsChanged > 0 && $user['disableEmailNotices'] == 0) {
$table = "";
$summary = "";
$summaryText = "";
$noticeMessage = "";
$url = Setup::$settings['base_url'];
$table .= "<br><br><div><a href='{$url}/hosts.php?oc=1'>Hosts with status changes</a> | <a href='{$url}/hosts.php?oc=2'>Blocked Hosts</a> | <a href='{$url}/hosts.php'>All hosts</a></div><br><br>";
$summary .= "<div><strong>";
$summary .= "Total: " . number_format($monitorCount) . "<br/>";
$summary .= "Clean: " . number_format($monitorCount - $errorHosts) . "<br/>";
$summary .= "Blocked: " . number_format($errorHosts) . "<br/>";
$summary .= "Changed: " . number_format($hostsChanged) . "<br/>";
$summary .= '</a>';
$summary .= "</strong></div>";
$summaryText .= "Total: " . number_format($monitorCount) . "\n";
示例3: sleep
$rs = $mysql->runQuery("select ipDomain from monitors where beenChecked = 0 limit 1;");
if ($row = mysqli_fetch_array($rs, MYSQL_ASSOC)) {
sleep(4);
//wait 4 seconds for them to finish
} else {
break;
}
}
$m->endWork();
$lastRunTime = (int) $m->runTime;
// mark this one as ran
$mysql->runQuery("update users set beenChecked = 1, lastChecked = '" . date('Y-m-d H:i:s') . "', lastRunTime = {$lastRunTime}");
// basic stats
$hostsChanged = Utilities::getHostChangeCount($mysql);
$errorHosts = Utilities::getHostErrorCount($mysql);
$newErrorHosts = Utilities::getHostErrorCount($mysql, 0, true);
$newCleanHosts = Utilities::getHostCleanCount($mysql, 0, true);
if ($hostsChanged > 0 && $user['disableEmailNotices'] == 0) {
$table = "";
$summary = "";
$summaryText = "";
$noticeMessage = "";
$url = Setup::$settings['base_url'];
$summary .= "<div><strong>";
$summary .= "Total: " . number_format($monitorCount) . "<br/>";
$summary .= "Clean: " . number_format($monitorCount - $errorHosts) . "<br/>";
$summary .= "Blocked: " . number_format($errorHosts) . "<br/>";
$summary .= "New Blocked: " . number_format($newErrorHosts) . "<br/>";
$summary .= "New Clean: " . number_format($newCleanHosts) . "<br/>";
$summary .= '</a>';
$summary .= "</strong></div>";
示例4: and
case 'domains':
$hostTypeSQL .= " and isDomain = 1 ";
break;
case 'ips':
$hostTypeSQL .= " and isDomain = 0 ";
break;
}
if ($searchS != '') {
$searchSQL .= " and (\n\t\tipDomain like '%" . $mysql->escape($searchS) . "%' \n\t\tor rDNS like '%" . $mysql->escape($searchS) . "%'\n\t\tor status like '%" . $mysql->escape($searchS) . "%' ) ";
}
$sql = "\nselect m.isBlocked, m.lastUpdate, m.ipDomain, m.lastStatusChangeTime, m.rDNS, m.status, g.groupName, g.id\nfrom monitors m \n\tinner join monitorGroup g on g.id = m.monitorGroupId\nwhere 1=1 {$hostTypeSQL} {$searchSQL}\n{$orderSQL}\n{$limitSQL}\n";
$rs = $mysql->runQuery($sql);
include 'header.inc.php';
include 'accountSubnav.inc.php';
$hostsCount = Utilities::getHostCount($mysql, $monitorGroupId);
$hostsCountError = Utilities::getHostErrorCount($mysql, $monitorGroupId);
?>
<script src="js/jquery.tablesorter.min.js"></script>
<script>
$(document).ready(function() {
$("#hostTable").tablesorter();
$(".reportType").change(function() {
$("#reportForm").submit();
});
$(".recentFilter").change(function() {
$("#reportForm").submit();
});
$(".hostType").change(function() {
$("#reportForm").submit();
示例5: and
case 'domains':
$hostTypeSQL .= " and isDomain = 1 ";
break;
case 'ips':
$hostTypeSQL .= " and isDomain = 0 ";
break;
}
if ($searchS != '') {
$searchSQL .= " and (\n\t\tipDomain like '%" . $mysql->escape($searchS) . "%' \n\t\tor rDNS like '%" . $mysql->escape($searchS) . "%'\n\t\tor status like '%" . $mysql->escape($searchS) . "%' ) ";
}
$sql = "\nselect isBlocked,lastUpdate,ipDomain,lastStatusChangeTime,rDNS,status\nfrom monitors\nwhere 1=1 {$hostTypeSQL} {$searchSQL}\n{$orderSQL}\n{$limitSQL}\n";
$rs = $mysql->runQuery($sql);
include 'header.inc.php';
include 'accountSubnav.inc.php';
$hostsCount = Utilities::getHostCount($mysql);
$hostsCountError = Utilities::getHostErrorCount($mysql);
?>
<script src="js/jquery.tablesorter.min.js"></script>
<script>
$(document).ready(function() {
$("#hostTable").tablesorter();
$(".reportType").change(function() {
$("#reportForm").submit();
});
$(".recentFilter").change(function() {
$("#reportForm").submit();
});
$(".hostType").change(function() {
$("#reportForm").submit();