`
sjsky
  • 浏览: 917860 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

SNMP之JRobin画图

    博客分类:
  • SNMP
阅读更多
    blog迁移至:http://www.micmiu.com

本文主要记录下学习如何运用JRboin画图的一些测试代码。
本次测试画图用到的测试数据demo_flow.rrd文件,是来自之前写的SNMP系列之(一)JRobin Core学习中的方法生成的,可供大家参考。JRboin的画图主要从下面两方面:
  • 直接定义RrdGraphDef对象画图
  • 根据定义好的模板XML文件生成图片
先看下两中方法生成的图片效果图:






下面是我学习时生成图片的测试代码以及定义的模板文件:
package com.snmp.jrobin;

import java.awt.Color;
import java.awt.Font;
import java.awt.image.BufferedImage;
import java.io.File;

import javax.imageio.ImageIO;

import org.jrobin.core.Util;
import org.jrobin.graph.RrdGraph;
import org.jrobin.graph.RrdGraphDef;
import org.jrobin.graph.RrdGraphDefTemplate;
import org.xml.sax.InputSource;

/**
 * @author Michael
 * 
 */
public class TestGraphCommon {

    /**
     * @param args
     */
    public static void main(String[] args) {
        String rootPath = "d:/test/jrobin/";
        String imgFileName = "demo_graph_rrd.png";

        TestGraphCommon test = new TestGraphCommon();

        // 测试直接定义画图模板生成图片
        test.graphByGraphDef(rootPath, imgFileName);

        String tempName = "graph-def-template.xml";
        // 测试根据定义的XML模板文件生成图片
        test.graphByTemplate(rootPath, tempName);
    }

    /**
     * 直接定义画图模板生成图片
     * @param rootPath
     * @param imgFileName
     */
    private void graphByGraphDef(String rootPath, String imgFileName) {
        try {
            System.out.println("[rrd graph by RrdGraphDef start...]");
            // 2010-10-01:1285862400L 2010-11-01:1288540800L
            long startTime = Util.getTimestamp(2010, 10 - 1, 1);
            long endTime = Util.getTimestamp(2010, 10 - 1, 31);

            RrdGraphDef rgdef = new RrdGraphDef();
            // If the filename is set to '-' the image will be created only in
            // memory (no file will be created).
            // rgdef.setFilename("-");
            rgdef.setFilename(rootPath + imgFileName);

            // "PNG", "GIF" or "JPG"
            rgdef.setImageFormat("PNG");
            // rgdef.setTimeSpan(startTime, endTime);
            rgdef.setStartTime(startTime);
            rgdef.setEndTime(endTime);

            rgdef.setAntiAliasing(false);
            rgdef.setSmallFont(new Font("Monospaced", Font.PLAIN, 11));
            rgdef.setLargeFont(new Font("SansSerif", Font.BOLD, 14));

            rgdef.setTitle("JRobin graph by RrdGraphDef demo");
            // default 400
            rgdef.setWidth(500);
            // default 100
            rgdef.setHeight(200);

            // 一般不需要设置这个参数
            // rgdef.setStep(86400);

            rgdef.setVerticalLabel("transfer speed [bits/sec]");

            rgdef.datasource("in", rootPath + "demo_flow.rrd", "input",
                    "AVERAGE");
            rgdef.datasource("out", rootPath + "demo_flow.rrd", "output",
                    "AVERAGE");
            rgdef.datasource("in8", "in,8,*");
            rgdef.datasource("out8", "out,8,*");
            // PS:先画域的再画线的,否则线会被域遮盖
            rgdef.area("out8", new Color(0, 206, 0), "output traffic");
            rgdef.line("in8", Color.BLUE, "input traffic\\l");

            // \\l->左对齐 \\c->中间对齐 \\r->右对齐 \\j->自适应
            // \\s-> \\g->glue \\J->
            rgdef.gprint("in8", "MAX", "maxIn=%.2f %sbits/sec");
            rgdef.gprint("out8", "MAX", "maxOut=%.2f %sbits/sec\\l");
            rgdef.gprint("in8", "AVERAGE", "avgIn=%.2f %sbits/sec");
            rgdef.gprint("out8", "AVERAGE", "avgOut=%.2f %sbits/sec\\l");
            rgdef.gprint("in8", "TOTAL", "totalIn=%.2f %sbits/sec");
            rgdef.gprint("out8", "TOTAL", "totalOut=%.2f %sbits/sec\\s");
            rgdef.comment("画图测试");

            RrdGraph graph = new RrdGraph(rgdef);
            System.out.println("[rrd graph info:]"
                    + graph.getRrdGraphInfo().dump());
            // 如果filename没有设置,只是在内存中,可以调用下面的方法再次生成图片文件
            if ("-".equals(graph.getRrdGraphInfo().getFilename())) {
                createImgFile(graph, rootPath + imgFileName);
            }
            System.out.println("[rrd graph by RrdGraphDef success.]");
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    /**
     * ImageIO 生成图片文件
     */
    private void createImgFile(RrdGraph graph, String imgFileFullName) {

        try {
            BufferedImage image = new BufferedImage(graph.getRrdGraphInfo()
                    .getWidth(), graph.getRrdGraphInfo().getHeight(),
                    BufferedImage.TYPE_INT_RGB);
            graph.render(image.getGraphics());
            File imgFile = new File(imgFileFullName);
            ImageIO.write(image, "PNG", imgFile);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    /**
     * 根据定义的XML模板生成图片
     * @param rootPath
     * @param imgFileName
     */
    private void graphByTemplate(String rootPath, String tempName) {
        try {
            System.out.println("[rrd graph by xml template start...]");
            RrdGraphDefTemplate defTemplate = new RrdGraphDefTemplate(
                    new InputSource(rootPath + tempName));
            // setVariable 设置XML template的变量
            defTemplate.setVariable("startTime", "20101001 00:00");
            defTemplate.setVariable("endTime", "20101031 23:59");
            defTemplate.setVariable("in_rrd_file", rootPath + "demo_flow.rrd");
            defTemplate.setVariable("out_rrd_file", rootPath + "demo_flow.rrd");
            RrdGraph graph = new RrdGraph(defTemplate.getRrdGraphDef());

            BufferedImage image = new BufferedImage(graph.getRrdGraphInfo()
                    .getWidth(), graph.getRrdGraphInfo().getHeight(),
                    BufferedImage.TYPE_INT_RGB);
            graph.render(image.getGraphics());
            File imgFile = new File(rootPath + "demo_graph_tmp.PNG");
            ImageIO.write(image, "PNG", imgFile);//
            System.out.println("[rrd graph by xml template success.]");
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

}

<?xml version="1.0" encoding="GB2312"?>
<rrd_graph_def>
    <span>
        <start>${startTime}</start>
        <end>${endTime}</end>
    </span>
    <filename>-</filename>
    <options>
        <anti_aliasing>off</anti_aliasing>
        <fonts>
					<small_font>
						<name>Monospaced</name>
						<style>PLAIN</style>
						<size>11</size>
					</small_font>
					<large_font>
						<name>SansSerif</name>
						<style>BOLD</style>
						<size>14</size>
					</large_font>
				</fonts>
				 <title>JRobin graph by xml template demo</title>
        <vertical_label>transfer speed [bits/sec]</vertical_label>
        <width>500</width>
        <height>200</height>
        <base>1024</base>
    </options>
    <datasources>
        <def>
            <name>in</name>
            <rrd>${in_rrd_file}</rrd>
            <source>input</source>
            <cf>AVERAGE</cf>
        </def>
        <def>
            <name>out</name>
            <rrd>${out_rrd_file}</rrd>
            <source>output</source>
            <cf>AVERAGE</cf>
        </def>
    </datasources>
    <graph>
        <area>
            <datasource>in</datasource>
            <color>#00ce00</color>
            <legend>入速率</legend>
        </area>
        <line>
            <datasource>out</datasource>
            <color>#0000FF</color>
            <legend>出速率\l</legend>
        </line>
        <gprint>
        	<datasource>in</datasource>
        	<cf>MAX</cf>
        	<format>入速率最大值:%7.2f %sbits/sec</format>
        </gprint>
        <gprint>
        	<datasource>out</datasource>
        	<cf>MAX</cf>
        	<format>出速率最大值:%7.2f %sbits/sec\l</format>
        </gprint>
       <gprint>
       		<datasource>in</datasource>
       		<cf>AVERAGE</cf>
       		<format>入速率平均值:%7.2f %sbits/sec</format>
       	</gprint>
       	<gprint>
       		<datasource>out</datasource>
       		<cf>AVERAGE</cf>
       		<format>出速率平均值:%7.2f %sbits/sec\l</format>
       	</gprint>     
       	<gprint>
       		<datasource>in</datasource>
       		<cf>TOTAL</cf>
       		<format>总入流量:%7.2f %sbits</format>
       	</gprint>
       	<gprint>
       		<datasource>out</datasource>
       		<cf>TOTAL</cf>
       		<format>总出流量:%7.2f %sbits\l</format>
       	</gprint>
       	<comment>测试画图\l</comment>
    </graph>
</rrd_graph_def> 
  • 大小: 15 KB
  • 大小: 15.3 KB
1
0
分享到:
评论
2 楼 sjsky 2011-01-18  
东方小猪仔 写道
你好,我也在用JRobin,不过我有时候画的图里边的数据没有负数,为什么作出的图居然出现负数呢?
我用的JRobin是1.5.9.希望您可以解答,谢谢。

注意你的rrd里的数据格式,能把你的rrd文件 给我看看不
1 楼 东方小猪仔 2011-01-17  
你好,我也在用JRobin,不过我有时候画的图里边的数据没有负数,为什么作出的图居然出现负数呢?
我用的JRobin是1.5.9.希望您可以解答,谢谢。

相关推荐

    snmp-tutorial:SNMP教程:Jrobin、SNMP4j

    Jrobin、SNMP4jsnmp4j-1x-demoSNMP4j实现同步和异步的GET的示例SNMP4j实现同步和异步的Walk的示例SNMP4j实现Trap的示例SNMP4j实现SET的示例SNMP4j实现GETBLUK的示例robin-demoJRobin Core学习JRobin基础画图JRobin...

    RRD与JRobin

    在IT监控领域,RRD(Round Robin Database)和JRobin是两种常见的时序数据库,用于存储和管理时间序列数据,如系统性能指标、网络流量、服务器状态等。这两种技术对于实时监控和分析IT系统的健康状况至关重要。 ...

    jrobin-1.5.9-API文档-中文版.zip

    赠送jar包:jrobin-1.5.9.jar; 赠送原API文档:jrobin-1.5.9-javadoc.jar; 赠送源代码:jrobin-1.5.9-sources.jar; 赠送Maven依赖信息文件:jrobin-1.5.9.pom; 包含翻译后的API文档:jrobin-1.5.9-javadoc-API...

    jrobin-1.5.14.jar和源代码

    《JRobin:深入理解与应用》 在Java世界中,数据持久化是一个不可或缺的部分,而JRobin正是这样一个轻量级的、高效的RPM(Ring-Persistent Metrics)存储库,它被广泛用于记录和分析系统性能指标。JRobin-1.5.14....

    jrobin-1.5.9-API文档-中英对照版.zip

    赠送jar包:jrobin-1.5.9.jar; 赠送原API文档:jrobin-1.5.9-javadoc.jar; 赠送源代码:jrobin-1.5.9-sources.jar; 赠送Maven依赖信息文件:jrobin-1.5.9.pom; 包含翻译后的API文档:jrobin-1.5.9-javadoc-API...

    JRobin 流量报表

    **JRobin 流量报表详解** JRobin 是一个基于 Java 的开源项目,专门设计用于生成和展示流量数据的图形报表。作为一个轻量级框架,它为监控系统性能提供了直观、实时的图表展示功能,尤其在处理网络流量、系统资源...

    jrobin学习例子程序

    学习用jrobin绘图的绝佳例子程序 学习用jrobin绘图的绝佳例子程序

    jrobin流量监控代码

    **Jrobin流量监控代码详解** Jrobin是一种开源的、轻量级的时序数据存储库,专门用于性能监控和日志记录。它被设计为Rrdtool(Round Robin Database Tool)的一个替代品,Rrdtool是由Tobi Oetiker开发的用于存储和...

    javaMelody+jrobin jar文件 .rar

    它集成了JRobin,一个高效的数据存储库,用于收集和展示监控数据。本篇将深入探讨JavaMelody和JRobin的核心功能以及它们在Java运行时监控中的作用。 JavaMelody的核心功能主要包括以下几个方面: 1. **性能指标...

    JRobin-开源

    JRobin是RRDTool的100%纯Java替代品,具有几乎完全相同的规格。 如果向RRDTool和JRobin提供相同的数据,则将获得完全相同的结果和图形。 支持所有标准RRDTool操作。

    JavaMelody javamelody-core-1.52.0.jar jrobin-1.5.9.jar

    在本案例中,我们关注的是两个核心的JAR文件:`javamelody-core-1.52.0.jar`和`jrobin-1.5.9.jar`。 `javamelody-core-1.52.0.jar`是JavaMelody的核心组件,包含了实现监控功能的主要类和接口。这个版本的Java...

    javamelody.jar和 jrobin.jar

    监控器需要的jar,需在web.xml中配置 &lt;filter-name&gt;monitoring &lt;filter-class&gt;net.bull.javamelody.MonitoringFilter&lt;/filter-class&gt; &lt;filter-name&gt;monitoring &lt;url-pattern&gt;/* ...可以进入到监控页面

    jrobin-1.5.9.jar中文-英文对照文档.zip

    注:下文中的 *** 代表文件名中的组件名称。 # 包含: 中文-英文对照文档:【***-javadoc-API文档-中文(简体)-英语-对照版.zip】 jar包下载地址:【***.jar下载地址(官方地址+国内镜像地址).txt】 ...

    基于Web的网络管理系统.pptx

    4. **JRobin与RRDTool**:JRobin是RRDTool的一个Java实现,用于存储和分析网络性能数据,支持高效、空间优化的数据记录。 【系统设计与实现】 1. **拓扑信息搜索模块**:负责收集网络设备信息,构建和更新网络拓扑...

    RRD环形数据库操作.rar

    这种数据库由JRobin库在Java环境中实现,而JRobin是一个轻量级、高效的RRD工具。 RRD数据库的结构由一系列数据源(Data Sources)和时序更新记录(Archives)组成。数据源代表了你要监控的特定指标,如CPU利用率或...

    开源 tomcat 性能查看工具

    本文将详细介绍这种工具的主要特点和使用方法,以及与之相关的技术知识点。 首先,我们关注的是"jira-javamelody.jar"这个文件。JavaMelody是一个广泛使用的开源监控解决方案,它可以集成到各种Java应用中,包括...

    javamelody资料包

    2. **jrobin**: JRobin是用于存储性能数据的二进制日志库,它是基于RMON(Remote Monitoring)标准的,能够高效地存储和检索性能历史数据。 3. **msyh.ttc** 和 **msyhbd.ttc**: 这两个文件可能包含的是中文字体,...

    JavaMelody 监测java或javaEE应用服务器

    另一个`jrobin-1.5.9.1.jar`则是JRobin库,它是JavaMelody用来存储和读取性能数据的持久化组件,提供了类似于RRDTool(Round Robin Database)的功能,以高效的方式存储时间序列数据。 在使用JavaMelody时,通常会...

    监控JAVA应用的好工具javamelody

    这个工具的核心组件包括javamelody.jar和jrobin-1.5.9.1.jar,这两个JAR文件在Java应用的监控中扮演着重要角色。 javamelody.jar是JavaMelody的主要实现库,它提供了全面的监控功能。这个库能够集成到任何基于...

    javamelody性能监控jar和war

    2. **jrobin-1.5.9.1.jar**: JRobin是一个轻量级的、纯Java实现的RPN(Reverse Polish Notation)图绘制库,用于存储和读取性能数据。JavaMelody利用JRobin来持久化监控数据,如内存、CPU使用率等,以便后续分析。 ...

Global site tag (gtag.js) - Google Analytics