Solved

Information about analytic components available for SNMP in logpoint ?

  • 4 May 2021
  • 1 reply
  • 68 views

Userlevel 1
Badge +3

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?

icon

Best answer by Rupsan Shrestha 4 May 2021, 07:23

View original

1 reply

Userlevel 2
Badge +3

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.

Reply