On Jun 29, 2008, at 5:08 PM, netdata wrote:
This does not work in my case.

I restarted zentrap a few times but does not work.
See also ticket 2534 (Customer Portal ticket)

I think you're having a different issue with the same symptom. Your MIBs are coming straight out of a ZenPack. I have a suspicion that the problem is that all of your OIDs were imported as unicode strings instead of regular strings which is breaking the catalog that zentrap uses to lookup the names with.

Try pasting the following script into zendmd to convert all nodes and notifications to strings.

for org in [dmd.Mibs,] + dmd.Mibs.getSubOrganizers():
    for mib in org.mibs():
        for thing in mib.nodes() + mib.notifications():
            thing.oid = str(thing.oid)

dmd.Mibs.reIndex()
commit()
_______________________________________________
zenoss-users mailing list
[email protected]
http://lists.zenoss.org/mailman/listinfo/zenoss-users

Reply via email to