设为首页 收藏本站
查看: 2928|回复: 0

[经验分享] 控制台-网络管理之在Cacti系统中导入MIB信息库

[复制链接]

尚未签到

发表于 2015-11-22 14:57:46 | 显示全部楼层 |阅读模式
There are two possible ways to add a new indexed MIB variable toCacti. The first, and easiest, is to modify an existing SNMP query.The second, is to create a new SNMP data query from scratch. Sincemodifying an existing query is simply a subset of creating anewquery, only the second will be described.
This how-to will lead you through the steps of creating acompletely new SNMP data query and integrating it into Cacti, usingthe CPU utilization of a Compaq Proliant server as an example.  

有两种方法可以将MIB文件导入CACTI。首先,最容易的方法是修改一个已存在的SNMP data query。其次,是新建一个SNMPdata query。由于第一种方法:修改已创建的data query是第二种新建dataquery的一个子集,以下只介绍第二种方法。  

Step 1: Create a new SNMP query XML file
First we need to create an XML file to tell Cacti what informationto get and how to get it. The most difficult part of this step isdetermining the exact MIB variables to use. Proliant servers have aproprietary MIB that contains the 5 minute average CPU utilizationforeach processor.
MIB variables stand for one piece of information like totaltraffic, errors, discards, multicast packets..... However, it isoften possible to have more than one source for this data (I.E. aswitch can have several hundred network interfaces). To keep theseinterfacesseparate when querying a device for a single piece ofinformation, an index value is added to the end of the normal MIBvariable. This index value is used to distinguish one interfacefrom the others on all MIB variables associated with thatinterface. However,this value is not fixed. It can change any timethat the device is rebooted. Thus we must tell Cacti what MIBvariable contains the index, and then tell it what variables it canpoll, using this index, to get some useful information. In the caseof our proliantserver, the index is contained at1.3.6.1.4.1.232.11.2.3.1.1.1 The actual utilization is located at.1.3.6.1.4.1.232.11.2.3.1.1.3  步骤1:创建一个新的SNMP query xml 文件

  首先我们需要创建一个.xml文件告诉Cacti系统要获取什么信息以及如何获取。此步骤最困难的部分是准确选定要使用的MIB变量。工业标准服务器有一个统计每个系统进程5分钟平均CPU利用率的私有MIB。MIB变量是一整套信息标准,像总流量、错误包、丢弃包、广播包等。但是,这类信息常常可能有着多个数据来源(比如,一台交换机有可能拥有几百个网络接口)。为了让这些接口在信息查询时保持各自的独立性,在普通的MIB变量的结尾加上了一个索引值。这个索引值用于区分MIB变量关联的不同接口。然而,这个值不是固定的,设备重启后值会发生改变。因此,我们必须告诉Cacti系统什么MIB变量包含这个索引,什么变量能检测、使用这个索引,然后得到一些有用的信息。在工业标准的服务器条件下,索引包含在1.3.6.1.4.1.232.11.2.3.1.1.1实际使用率位置在.1.3.6.1.4.1.232.11.2.3.1.1.3。
The following is the XML file that needs to be created for this newquery.
  以下是这个xml文件需要创建的新查询

  “
  <interface>

<name>Get CompaqProcessors</name>
<description>Queries a host for alist of monitorableprocessors</description>
<oid_index>.1.3.6.1.4.1.232.11.2.3.1.1.1</oid_index>

<fields>
<cpqHoCpuUtilIndex>
<name>Index</name>
<method>walk</method>
<source>value</source>
<direction>input</direction>
<oid>.1.3.6.1.4.1.232.11.2.3.1.1.1</oid>
</cpqHoCpuUtilIndex>
<cpqHoCpiUtilFiveMin>
<name>5 MinuteUtilization</name>
<method>walk</method>
<source>value</source>
<direction>output</direction>
<oid>.1.3.6.1.4.1.232.11.2.3.1.1.3</oid>
</cpqHoCpiUtilFiveMin>
</fields>
</interface>


Name and description are optional fields and have no affect on theoperation of Cacti. The oid_index field should contain the MIBvariable that contains the index for this query.
Anything inside of the section will be queried using the indexvalues gathered from the oid_index. There must be at least twovariables in the fields section in any data query: one to use as anindex and one gathering data to plot.  Name和description是可选项,对Cacti操作没有影响。Oid索引字段应该包含此次查询的MIB变量。任何区域内的查询将使用oid索引采集到的索引&#20540;。任何数据查询字段区域内必须包含至少两种变量:一种是使用索引另一种是采集数据去绘制。

In the example above, there are two variables given in the fieldssection: cpqHoCpuUtilIndex and cpqHoCpiUtilFiveMin. The names canbe anything so long as they only contain characters from a-z andA-Z. Numbers and punctuation will cause an error. T is safe toleavemethod set to walk for most queries. The source value allowsyou to do some processing on the value that the query returns. Inthis simple case, we will leave this set to “value”. The Directionfield is very important. Input fields are fields that do not changeovertime. These are generally things like the index value, adescription field, or a name. Input fields will be used withincacti to index the MIB mariables. Output fields are those fieldswhich can be graphed.  在上面的实例中,在fields字段区域中有两个变量: cpqHoCpuUtilIndex andcpqHoCpiUtilFiveMin。名字可以是任何包含大小写字母的字符。数字和标点会引起错误。 多数查询方法设置成walk返回&#20540;T是安全的。源&#20540;允许你对查询的返回&#20540;进行一些处理。在这个简单的例子中,我们设置成“value”。Direction字段是非常重要的。Input字段是不变的字段。就像索引&#20540;、description字段、或者name字段。Input字段被cacti用来索引MIB变量。Output字段关于制图的设置的字段。

Once you have created your XML file, save it in the/resource/snmp_queries/ directory. We will call our filecompaq_cpu.xml. Do not use any spaces or special characters in thefile name as it may cause problems later.
  一旦你创建了xml文件,保存在/resource/snmp_queries/目录下。我们将调用compaq_cpu.xml。不要在name字段中使用空&#26684;或特殊字符,以免后面引起问题。

Step 2: Create a Data Query in Cacti
Open the Data Queries menu in Cacti and click on the add button atthe top right hand side of the screen. Fill in the fields asappropriate:
Name: your name for this query
Description: a description of this query… What does it do?
Xml Path: The path to your query. In this example it should read“/resource/snmp_queries/compaq_cpu.xml”
Data Input Method: Select the type of query. Since this is SNMP,choose Get SNMP Data (Indexed)
  步骤2:在Cacti中创建一个Data Query
  打开Data Queries菜单,点击右上角的add按纽,填写适合的内容

  Name:查询的名称
  Description:查询的描述
  Xml path:文件所在路径。在本例中应该在“/resource/snmp_queries/compaq_cpu.xml”
  Data Input Method:选择查询类型。因为是snmp协议,选择SNMP Data(Indexed)
The click on “Create”. This will bring up some additional fields.In the Data Input Method section, the first three options shouldalmost always all be checked and have the following values:
Index Type: SNMP Field Name (Dropdown)
Index Value: SNMP Field Value (From User)
Output Type ID: SNMP Output Type (Dropdown)

Click on Save.
  点击创建。进入附加字段。在Data Input Method区域,最前面的三个选项应该总是被设置为下面的&#20540;:
  Index Type: SNMP Field Name (Dropdown)
Index Value: SNMP Field Value (From User)
Output Type ID: SNMP Output Type (Dropdown)

  点击保存。
Step 3: Create a Data Template
Navigate to the data template screen and click on the “add” buttonat the top right hand side of the screen. In the screen thatappears fill in the fields as follows:
Name (Data Templates section): the name for the data template
Name (Data Source Section): The name that cacti will automaticallygenerate for all new data sources of this type. The author hasused: |host_description| CPU |query_cpqHoCpuUtilIndex|.
Data Input Method: Get SNMP Data (Indexed)
Internal Data Source Name: Choose a name that only usesalphanumeric characters. This is for Cacti Internal use only. Theauthor has used compaq_cpu.
Minimum Value: Since this is a % utilization, 0 is the bestchoice.
Maximum Value: It is impossible to have more than 100% utilization,so enter 100.

Click on Save. This will bring up yet more fields to fill in. Placea check mark next to the fields: Index Type, Index Value, andOutput Type ID and click on save.
  步骤3:创建Data Template
  导航至data template界面点击右上角的“add”按纽。出现以下字段:
Name (Data Templates section): 数据模板的名称
Name (Data Source Section): Cacti自动为新数据源生成的名称。 The author has used:|host_description| CPU |query_cpqHoCpuUtilIndex|. sources of thistype. The author has used: |host_description| CPU|query_cpqHoCpuUtilIndex|.
Data Input Method: Get SNMP Data (Indexed)
Internal Data Source Name: Choose a name that only usesalphanumeric characters. 选择一个字母数字的字符名称。只在Cacti内部使用。笔者在本例中用了compaq_cpu.
Minimum Value: Since this is a % utilization, 0 is the bestchoice.百分比,最佳是0
Maximum Value: It is impossible to have more than 100% utilization,so enter 100.输入100

  Step 4: Create a Graph Template

Navigate to the graph template screen and click on the “add” buttonat the top right hand side of the screen. In the screen thatappears type in a name for the graph template and click on save.This will display some additional sections.
Click on the add button to the right of the Graph Template Itemssection. Fill in the fields as follows:  在graph template视图的右上角点击“add”按纽。屏幕中出现graphtemplate的名称,点击保存,出现一些额外的选项。点击右边的add按纽,填写以下的字段:

Data Source: Select the data source that you created in theprevious step.上一步创建的data source
Color: Pick something that you like.选择颜色
Graph Item Type: Since we are only graphing one item, selectAREA.只画一个数据项,选择AREA
Consolidation Function: Select Average选择平均&#20540;
CDEF Function: None
Value: Leave this entry blank保持为空
Gprint Type: Normal普通
Text Format: This will be displayed at the bottom of the graph.Enter something logical like “CPU”将会显示在图形的底部。输入像“CPU”这类的一些文字。
Click on save.点击保存。
You can continue adding other items to display the maximum,minimum, and current CPU utilization. However, they are notnecessary, and will not be covered here.
Next click on the add button to the right of the Graph Input Items.Enter a name for the data source and place a check mark next toItem #1. This will link the data source with a graph item. Click onSave.
  你可以继续增加其它项去显示最大、最小和当前CPU利用率。然而,不是必需的。这里不讨论了。
  再点击右边的add按纽。输入数据源的名称,在#1项的下面设置一个检查标记。这将关联数据源和图形。点击保存。

Step 5: Create a Host Template
Open the Host Templates menu and click on the “add” button. Enter aname for the Host Template and click on save. Reopen this template.(I have not found a way to do this without having to reopen thetemplate. If anyone has any suggestions, I would love to hearthem)Select the data query that you created earlier from the drop downbox under the “Associated Data Queries” section and click onadd.
  步骤5:创建一个Host Template.
  打开HostTemplate菜单点击&quot;add&quot;按纽。输入一个模板名称,保存。再打开这个模板。(我没有找到方法不用重新打开模板。如果谁有建议,我会洗耳恭听。)选择之前在“Associated Data Queries” 部分的drop down box创建的dataquery,点击保存。

Step 6: Add the Graph template to the Data Query
  Open up the Data Query, scroll down to the “Associated GraphTemplates” section and then click on Add. Enter a name for thisgraph and select the graph template from the drop down window.Click on save. You should now be able to use your new MIBvariables.
  步骤6:为Data Query增加Graph template
  打开Data Query,下滚到 “Associated GraphTemplates”区域,点击Add。输入图形名称,选择下拉框中的图形模板,点击保存。你现在应该可以使用新的MIB变量了。

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-142219-1-1.html 上篇帖子: CentOS5.4(64bit)下Cacti安装----概要说明篇 下篇帖子: apache2+php+mysql+mod_secu+mod_evasive+mod_gzip+snmp+rrdtool+cacti [续]
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表