免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2165 | 回复: 1
打印 上一主题 下一主题

关于Agent如何动态地取得变量的值。。。(net-snmp) [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-02-10 13:41 |只看该作者 |倒序浏览
通过Agent获取变量的值(小弟写的是一个返回cpu利用百分数的函数 void al_share_mem(int * value),
包含在文件rdm-test3.c中,该函数可动态地返回值)

然后小弟将MIB文件经过mib2c命令编译成.c和.h文件,并修改.c文件如下:
/*
* Note: this file originally auto-generated by mib2c using
*        : mib2c.int_watch.conf,v 1.3 2005/05/03 14:38:11 dts12 Exp $
*/

#include <net-snmp/net-snmp-config.h>
#include <net-snmp/net-snmp-includes.h>
#include <net-snmp/agent/net-snmp-agent-includes.h>
#include "testAgentCpu1.h"

/*   我加的部分begin  */
#include "rdm-test3.c"    /*  这个是我自己写的,将内存利用率写入共享内存并返回值 */
/*   我加的部分end    */

long    testAgentCpu1 = 1;  /* XXX: set default value */

/*
* Our initialization routine, called automatically by the agent
* (Note that the function name must match init_FILENAME())
*/
void
init_testAgentCpu1(void)
{

  int i,j,k;

  static oid testAgentCpu1_oid[] = { 1,3,6,1,4,1,8072,2,4,1,1,1 };

/*  我加的部分begin  */
  al_share_mem(&testAgentCpu1);        /*  为rdm-test3.c中的函数,通过读共享内存,
                                           将cpu的利用率百分数赋给testAgentCpu1,
                                           我写了他的测试程序,确实可以动态返回,
                                           每次运行返回值都不同  */
/*  我加的部分end   */


  DEBUGMSGTL(("testAgentCpu1",
                "Initializing testAgentCpu1 scalar integer.  Default value = %d\n",
                testAgentCpu1));
  netsnmp_register_int_instance("testAgentCpu1",
                                  testAgentCpu1_oid,
                                  OID_LENGTH(testAgentCpu1_oid),
                                  &testAgentCpu1, NULL);

  DEBUGMSGTL(("testAgentCpu1",
              "Done initalizing testAgentCpu1 module\n"));
}//file ended

将此文件编入Agent后启动snmpd,执行snmpget localhost -c public -v 1 testAgentCpu1.0
每次都返回相同的值,郁闷。

如果重新启动snmpd,则又得到新的值,且又保持不变了。。。。
不知道怎么样才能获取到实时的值。请指点。

论坛徽章:
0
2 [报告]
发表于 2006-02-10 16:15 |只看该作者
问题解决了。
不过用比较笨的方法
就是直接映射共享内存的地址
加入两行程序
shmid=shmget(0x1000,SHMDATASIZE,0660);
shmdata=shmat(shmid,0,0);

最后将netsnmp_register_int_instance中的&testAgentCpu1替换为shmdata即可
不知道有没有更好的解决方法
期待中。。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP