
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.
1 comment