用php监控ntp 获得客户端的延迟和偏移量以及ip 并用html将获得的延迟和偏移量绘制成波形图
时间: 2023-11-28 14:49:15 浏览: 225
php性能监测
要实现这个功能,需要先安装相关的 PHP 库和工具。
1. 安装 ntpdate 和 rrdtool
在 Ubuntu 系统下,可以使用以下命令安装:
```
sudo apt-get install ntpdate rrdtool
```
2. 编写 PHP 脚本
可以使用以下 PHP 代码获取 NTP 服务器的延迟和偏移量:
```php
<?php
$ip = "pool.ntp.org"; // NTP 服务器地址
$cmd = "ntpdate -q $ip"; // 执行查询命令
exec($cmd, $output); // 执行命令
foreach ($output as $line) {
if (preg_match("/offset (.*), delay (.*),/", $line, $matches)) {
$offset = $matches[1];
$delay = $matches[2];
break;
}
}
echo "Offset: $offset s<br>Delay: $delay s";
?>
```
3. 使用 HTML5 Canvas 绘制波形图
可以使用以下 HTML5 和 JavaScript 代码绘制波形图:
```html
<!DOCTYPE html>
<html>
<head>
<title>NTP Monitor</title>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
</head>
<body>
<canvas id="myChart"></canvas>
<script>
var ctx = document.getElementById('myChart').getContext('2d');
var chart = new Chart(ctx, {
type: 'line',
data: {
labels: [],
datasets: [{
label: 'Offset',
data: [],
backgroundColor: 'rgba(255, 99, 132, 0.2)',
borderColor: 'rgba(255,99,132,1)',
borderWidth: 1
}, {
label: 'Delay',
data: [],
backgroundColor: 'rgba(54, 162, 235, 0.2)',
borderColor: 'rgba(54, 162, 235, 1)',
borderWidth: 1
}]
},
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero: true
}
}]
}
}
});
setInterval(function() {
// 发送 AJAX 请求获取数据
var xhr = new XMLHttpRequest();
xhr.open('GET', 'ntp.php', true);
xhr.onload = function() {
if (xhr.status === 200) {
// 解析数据
var data = JSON.parse(xhr.responseText);
var time = new Date().toLocaleTimeString();
// 添加数据点
chart.data.labels.push(time);
chart.data.datasets[0].data.push(data.offset);
chart.data.datasets[1].data.push(data.delay);
// 更新图表
chart.update();
}
};
xhr.send();
}, 1000);
</script>
</body>
</html>
```
4. 编写 PHP 脚本将数据保存到 RRD 数据库
可以使用以下 PHP 代码将获取的数据保存到 RRD 数据库:
```php
<?php
$ip = $_SERVER['REMOTE_ADDR']; // 客户端 IP 地址
$rrd_file = "data/$ip.rrd"; // RRD 数据库文件路径
if (!file_exists($rrd_file)) {
// 创建 RRD 数据库文件
rrd_create($rrd_file, array(
"--start", time() - 1,
"--step", "1",
"DS:offset:GAUGE:2:U:U",
"DS:delay:GAUGE:2:U:U",
"RRA:AVERAGE:0.5:1:3600",
"RRA:AVERAGE:0.5:60:24",
"RRA:AVERAGE:0.5:3600:7",
"RRA:AVERAGE:0.5:86400:30"
));
}
$cmd = "ntpdate -q pool.ntp.org"; // 执行查询命令
exec($cmd, $output); // 执行命令
foreach ($output as $line) {
if (preg_match("/offset (.*), delay (.*),/", $line, $matches)) {
$offset = $matches[1];
$delay = $matches[2];
break;
}
}
rrd_update($rrd_file, array(
time() . ":$offset:$delay"
));
echo "Offset: $offset s<br>Delay: $delay s";
?>
```
5. 使用 PHP 和 RRDtool 绘制波形图
可以使用以下 PHP 和 RRDtool 命令绘制波形图:
```php
<?php
$ip = $_SERVER['REMOTE_ADDR']; // 客户端 IP 地址
$rrd_file = "data/$ip.rrd"; // RRD 数据库文件路径
$png_file = "data/$ip.png"; // PNG 图像文件路径
// 更新 RRD 数据库文件
$cmd = "ntpdate -q pool.ntp.org"; // 执行查询命令
exec($cmd, $output); // 执行命令
foreach ($output as $line) {
if (preg_match("/offset (.*), delay (.*),/", $line, $matches)) {
$offset = $matches[1];
$delay = $matches[2];
break;
}
}
rrd_update($rrd_file, array(
time() . ":$offset:$delay"
));
// 绘制 PNG 图像文件
$cmd = "rrdtool graph $png_file " .
"--start -1h " .
"--vertical-label 'Seconds' " .
"--title 'NTP Monitor' " .
"DEF:offset=$rrd_file:offset:AVERAGE " .
"DEF:delay=$rrd_file:delay:AVERAGE " .
"LINE1:offset#FF0000:'Offset' " .
"LINE1:delay#0000FF:'Delay'";
exec($cmd);
// 显示 PNG 图像文件
header('Content-Type: image/png');
readfile($png_file);
?>
```
阅读全文