Information about analytic components available for SNMP in logpoint ?

0

I used snmp to fetch oid ".1.3.6.1.2.1.1.5.0", while searching it shows "iso_org_dod_internet_mgmt_mib-2_1_5_0", How do i use this information to a dashboard or alert? Are there any normalizers available for this?

Share This Post:

1 comment

Date Votes
0
Avatar
Rupsan Shrestha

You’ll see this if you’re using SNMP fetcher. if you google the OID you’ll find it represents sysName.

".1.3.6.1.2.1.1.5.0" this is your dot notation for the OID, and "iso_org_dod_internet_mgmt_mib-2_1_5_0" is your ASN.1 notation. Logpoint parses the OID to ASN.1 notation because fields cannot begin with a numeric value or a dot.

I would suggest you rename the ASN.1 notation of the OID to its respective object name and use it as per your requirement. For Example:

| rename "iso_org_dod_internet_mgmt_mib-2_1_5_0" as sysName | chart distinct_list(sysName) as System_Name

Also as of now there are no normalizers available for SNMP information.

Please sign in to leave a comment.