The OpenTelemetry Collector provides an integration with SNMP agents to scrape data. From there, the metrics are processed and exported to Cloud Observability.
To complete the integration, perform the following steps:
You’ve configured the Collector to export metric data to Cloud Observability.
Configure the SNMP agent to expose data remotely using proper authorization settings.
1
2
3
agentaddress udp:snmp-agent-host:161
rouser collector_user AuthPriv
In the Collector configuration file, specify SNMP agent as a target endpoint and what metrics need to process.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
receivers:
snmp:
collection_interval: 3s
endpoint: udp://snmpd:161
version: v3
security_level: auth_priv
user: collector_user
auth_type: "MD5"
auth_password: password
privacy_type: "DES"
privacy_password: priv_password
resource_attributes:
resource_attr.name.1:
indexed_value_prefix: probe
metrics:
snmp_metric_name:
unit: "By"
gauge:
value_type: int
column_oids:
- oid: "1.3.6.1.4.1.2021.11.9"
resource_attributes:
- resource_attr.name.1
After the SNMP receiver is configured, enable it by adding it to one or more pipelines as described in the Collector configuration documentation.
You can validate that the metrics are reporting to Cloud Observability from the Metric details section of the Settings page.
Open the Settings page and scroll to the Metric details section.
Search for SNMP metric names, those were configured in the collector config.
If needed, select the metric to edit the description and how the units are displayed in Cloud Observability.
Use the Cloud Observability Terraform Provider to create a dashboard for the metrics.
Updated Dec 20, 2022