RRD打印最后一个有效数据的时间戳
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用rrdtool的
lastupdate
选项。如果每个主机只有一个文件,则存在另一种解决方案:如果主机关闭,则不要更新 RRD。然后,您可以使用普通的
ls
或stat
查看上次更新时间,如下所示:如果您计划使用 RRD 的缓存守护进程,则必须使用
last
命令以刷新挂起的更新。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
orstat
as in :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.