RRD打印最后一个有效数据的时间戳

发布于 2024-10-13 01:51:32 字数 234 浏览 2 评论 0原文

我有一个 rdd 数据库,存储来自各种网络设备的 ping 响应
如何在图表上打印 rrd 数据库中最后一个有效条目的时间戳,以便我可以查看主机是否已关闭,何时关闭

我使用以下内容创建 RRD 文件。

rrdtool create terminal_1.rrd -s 60 \
DS:ping:GAUGE:120:0:65535 \
RRA:AVERAGE:0.5:1:2880

I have a rdd database storing ping response from a wide range of network equipments
How can i print on the graph the timestamp of the last valid entry in the rrd database, so i can see if a host is down when did it went down

I use the folowing to creade the RRD file.

rrdtool create terminal_1.rrd -s 60 \
DS:ping:GAUGE:120:0:65535 \
RRA:AVERAGE:0.5:1:2880

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

灯下孤影 2024-10-20 01:51:32

使用rrdtool的lastupdate选项。

如果每个主机只有一个文件,则存在另一种解决方案:如果主机关闭,则不要更新 RRD。然后,您可以使用普通的 lsstat 查看上次更新时间,如下所示:

ls -l terminal_1.rrd 
stat --format %Y terminal_1.rrd 

如果您计划使用 RRD 的缓存守护进程,则必须使用 last 命令以刷新挂起的更新。

rrdtool last terminal_1.rrd 

Use the lastupdate option of rrdtool.

Another solution exists if you only have one file per host : don't update your RRD if the host is down. You can then see the last updated time with a plain ls or stat as in :

ls -l terminal_1.rrd 
stat --format %Y terminal_1.rrd 

In case you plan to use the caching daemon of RRD, you have to use the last command in order to flush the pending updates.

rrdtool last terminal_1.rrd 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文