夜莺-Nightingale
夜莺V6
项目介绍 架构介绍
快速开始
黄埔营
安装部署
升级
采集器
使用手册
API
数据库表结构
FAQ
开源生态
Prometheus
版权声明
第1章:天降奇兵
第2章:探索PromQL
第3章:Prometheus告警处理
第4章:Exporter详解
第5章:数据与可视化
第6章:集群与高可用
第7章:Prometheus服务发现
第8章:监控Kubernetes
第9章:Prometheus Operator
参考资料

Writing a Network Device Collection Template

Click “New” in the top-right corner of the collection template to add a custom collection template.

nt01

Below is an example of a custom collection configuration for an SNMP device and basic parameter descriptions.

nt02

Basic Parameter Descriptions

community: A parameter obtained from the device configuration file or management interface, usually set to “public”.

nt03

agent_host_tag: Label name for reporting the IP of the device.

nt04

retries: The number of times the system will retry if an SNMP request fails.

max_repetitions: The maximum number of objects requested in a single SNMP request. Note: Increasing this value may reduce the number of requests, but it may also increase network load.

Retrieving Scalar Data Types: These data points are identified by a single OID in the MIB.

# Retrieving Scalar Data
# CPU System Usage Rate
[[instances.field]]
oid = "1.3.6.1.4.1.2021.11.9.0"
name = "cpu_usage_sys"
# CPU User Usage Rate
[[instances.field]]
oid = "1.3.6.1.4.1.2021.11.10.0"
name = "cpu_usage_user"
# Device Free Memory
[[instances.field]]
oid = "1.3.6.1.4.1.2021.4.6.0"
name = "mem_free"

Retrieving Table Data: Includes multiple columns of data and multiple indexes. Categraf will automatically retrieve all index fields in the Table as labels for time series data and automatically gather all data columns as metrics.

# Retrieving Table Data
[[instances.table]]
oid = "IF-MIB::ifTable"
name = "interface"

[[instances.table.field]]
oid = "IF-MIB::ifDescr"
name = "ifDescr"
# Some columns may not be numeric, such as ifDescr, which is a string. This column should not be reported as a metric but rather as a label, so there's a configuration with is_tag=true.
is_tag = true

OID: An identifier used to uniquely identify each managed object in network management protocols like SNMP. It is a standardized numbering system used to identify objects in the Management Information Base (MIB) and their hierarchy.

  • Hierarchical Structure: OID represents a hierarchical naming system, where each node is a number representing a level in the tree.
  • Starting from the Root: All OIDs begin from the root node (0) and then descend through the levels.

For example, OID 1.3.6.1.2.1.1.3.0 can be broken down as follows:

  • 1: ISO identifier
  • 3: Organization number
  • 6: Company number
  • 1: Management number
  • 2: Standard number
  • 1: MIB-II
  • 1: System group
  • 3: System uptime
  • 0: Specific instance

After saving the template, you can view the metrics in the Instant Query section.

nt05

Troubleshooting:

If you do not see relevant metrics after completing the configuration, you can run the following commands on the network device to check if there are any return values.

Normal Network Device Return Value:

nt06

No Return Value from Network Device:

nt07

Troubleshooting Directions:

  • Ensure the OID path is correct, as different devices and manufacturers may use different OIDs to represent the same object.
  • Check whether the SNMP is properly loading the relevant MIB modules.
  • Verify if the network device uses private OIDs, which may require specific MIB modules or specific hardware or software support.
  • Review the SNMPD configuration file for string (public) permissions and priority order issues.
开源版
Flashcat
Flashduty