当前位置: 首页 > 软件库 > 管理和监控 > 系统监控 >

rrd4j

授权协议 未知
开发语言 Java
所属分类 管理和监控、 系统监控
软件类型 开源软件
地区 不详
投 递 者 谭安翔
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

RRD4J is a 100% pure java implementation of RRDTool's functionality. It follows the same logic and uses the same data sources, archive types and definitions as RRDTool does. RRD4J supports all standard operations on Round Robin Database (RRD) files: CREATE, UPDATE, FETCH, LAST, DUMP, XPORT and GRAPH. RRD4J's API is made for those who are familiar with RRDTool's concepts and logic, but prefer to work with pure java. If you provide the same data to RRDTool and RRD4J, you will get exactly the same results and graphs. RRD4J is made from the scratch and it uses very limited portions of RRDTool's original source code. RRD4J does not use native functions and libraries, has no Runtime.exec() calls and does not require RRDTool to be present. RRD4J is distributed as a software library (jar files) and comes with full java source code (LGPL licence).

  • 本文参考: rrd4j的介绍和使用:http://blog.chinaunix.net/uid-29962463-id-4568454.html rrdtool的介绍和使用:http://www.cnblogs.com/smallcoderhujin/p/3796599.html rrdtool官网:http://oss.oetiker.ch/rrdtool/doc/rrdtool.en.html

  • collectd生成rrd文件,rrd4j无法直接解析。这时候先用rrdtool把rrd文件转换为xml文件,再由rrd4j将xml文件转换为rrd4j可以识别的rrd文件,最后出图,过程如下。 ①rrdtool把rrd文件转换为xml文件 /usr/bin/rrdtool dump /var/lib/collectd/rrd/localhost/load/load.rrd>load.xml ②由

  • RRD数据库读写 1、环境配置: 操作系统:Centos7.2 Java Version:1.8.0_131 RRD Version:3.1 2、代码 import javafx.util.Pair; import org.rrd4j.ConsolFun; import org.rrd4j.DsType; import org.rrd4j.core.*; import java.io.IOExc

  • date +’%s‘ ---- 1970-1-1 rrdtool create test.rrd --start {date +'%s'} DS:speed:COUNTER:600:U:U RRA:AVERAGE:0.5:1:24 AVERAGE:0.5:6:10 创建的rrd数据库名为test (test.rrd),它的起始时间是我当前时间。数据库存放一个名为 ’speed’ 的数据源(DS)

  • RRD是Round Robin Database的意思,RRDTool是用来管理RRD的一个工具。RRDTool的主页在这里,Wikipedia的页面在这里。RRD其实就是一个时序数据库,使用一个固定大小的环型buffer,适用于存储一些统计性的信息,如CPU负载呀,气温变化呀。我为什么要说这个东西呢,因为XenServer里的性能统计是用的RRD,你可以访问诸如http://xenserver-

  • Julius Davies, June 9th, 2008 尤利乌斯·戴维斯,2008年6月9日 Before You Do Anything Else 在你做其他事情之前 Take a look at this logging checklist by Anton Chuvakin. 先看看Anton Chuvakin做的这个日志清单。 Introduction 简介 Logs must be

相关阅读

相关文章

相关问答

相关文档