0

我正在尝试从 bosun 运行 scollector。

运行 scolector 后,它无法显示内存信息,但 CPU 信息是正确的。


此代码:

Host = "http://localhost:8070"
DisableSelf = true
Freq = 60
Filter = ["snmp-generic", "snmp-ifaces"]

[[SNMP]]
  Community = "test"
  Host = "name"
  MIBs = [ "devicename"]

[Tags]
  product = "fw"

[MIBs]

  [MIBs.fw]
    BaseOid = ".1.3.6.1.4.1.2620"

    [[MIBs.fw.Metrics]]
      Metric = "os.cpu"
      Oid = ".1.6.7.2.4.0"
      Unit = "percent"
      RateType = "gauge"
    [[MIBs.fw.Metrics]]
      Metric = "os.mem.used"
      Oid = ".1.6.7.4.5.0"
      Unit = "bytes"
      RateType = "gauge"

这是日志

**2016/11/07 17:24:42 error: interval.go:64: snmp-generic-name-fw: asn1: structure error: tags don't match (2 vs {class:0 tag:4 length:11 isCompound:false}) {optional:false explicit:false application:false defaultValue:<nil> tag:<nil> stringType:0 timeType:0 set:false omitEmpty:false}  @2**
2016/11/07 17:24:43 info: queue.go:90: {"metric":"os.cpu","timestamp":1478539482,"value":2,"tags":{"host":"name","product":"fw"}}
4

1 回答 1

1

在我看来,这是转换数据类型的问题。该错误来自我们正在使用的 asn1 库的深处,但我认为它归结为: cpu is表示为integer,而 memory 是string

我们的 snmp 收集器尝试将所有值解析为 a big.Int,但显然字符串值无法被我们的 asn1 库强制转换为该值。

不幸的是,除了寻找返回整数类型的 oid 之外,我没有看到一个很好的方法来完成这项工作。在不知道您使用的是什么设备的情况下,恐怕这是我所能提供的。

于 2016-11-07T17:53:38.060 回答