RRDtool refers to Round Robin Database tool .
Round robin is a technique that works with a fixed amount of data , and a pointer to the current element.
Think of a circle with some dots plotted on the edge. These dots are the places where data can be stored.
Draw an arrow from the center of the circle to one of the dots; this is the pointer.
When the current data is read or written, the pointer moves to the next element.
As we are on a circle there is neither a beginning nor an end , you can go on and on and on.
After a while, all the available places will be used and the process automatically reuses old locations .
This way, the dataset will not grow in size and therefore requires no maintenance.
RRDtool works with Round Robin Databases (RRDs). It stores and retrieves data from them.
以上摘自 RRDTool 官网 的表述。
RRD 数据库是一个环形的数据库,你可以把它想象成表,中心处有一个指针,随着时间的变化,指针也在变,当指针指到 12 点处,也就是这个记录要被擦除覆盖的时候,所以它是大小固定的。
时序数据库在运维领域里,需要不断的对服务器、交换机等支持性设备的性能和运行进行监控,这类监控的数据的特点就是 跟着时间走 —— 它们的指标只会随着时间的变化而变化,不会涉及回头修改。这就区别于常见的数据库,会不断的修改历史数据,对数据进行 U(pdate) *** 作。
所以就应运而生了一系列数据库,名曰“时序数据库”。常见的时序数据库有:influxdb、opentsdb、rrd 等。
安装RRD- 下载源码文件,解压缩(官网地址:可自行选择版本 https://oss.oetiker.ch/rrdtool/pub/)
wget https://oss.oetiker.ch/rrdtool/pub/rrdtool-1.7.2.tar.gz tar xavf rrdtool-1.7.2.tar.gz
- 编译安装
sudo apt-get install libxml2-dev libglib2.0-dev libpng-dev cmake libgtk2.0-dev pkg-config libxml2-dev ./configure --prefix=/usr/local make make install
- 或使用apt安装
apt-get install rrdtool
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)