When I double click on events from a few device manufactuers, the event console detail window opens but is blank and I get a connection error message.
The event.log shows this:
2009-11-24 15:13:32,951 ERROR Zope.SiteErrorLog: http://headend.gci.com:8080/zport/dmd/Events/evconsole_router
Traceback (innermost last):
Module ZPublisher.Publish, line 119, in publish
Module ZPublisher.mapply, line 88, in mapply
Module ZPublisher.Publish, line 42, in call_object
Module Products.ZenUtils.Ext, line 107, in __call__
Module Products.ZenUtils.json, line 49, in json
Module simplejson, line 230, in dumps
Module simplejson.encoder, line 200, in encode
Module simplejson.encoder, line 260, in iterencode
UnicodeDecodeError: 'utf8' codec can't decode bytes in position 1-2: invalid data
If I locate that event in the database and look at the details, they look something like this:
mysql> select * from detail where evid='441acf7d-afb8-4ed4-a5c4-73e806dcfbc1';
+--------------------------------------+----------+------------------------------------------+---------------------------------------------------------------------+
| evid | sequence | name | value |
+--------------------------------------+----------+------------------------------------------+---------------------------------------------------------------------+
| 441acf7d-afb8-4ed4-a5c4-73e806dcfbc1 | NULL | community | public |
| 441acf7d-afb8-4ed4-a5c4-73e806dcfbc1 | NULL | enterprises | 150 |
| 441acf7d-afb8-4ed4-a5c4-73e806dcfbc1 | NULL | enterprises.18070.2.2.1.4.14.1.1.1.1.2.3 | 1 |
| 441acf7d-afb8-4ed4-a5c4-73e806dcfbc1 | NULL | enterprises.18070.2.2.1.4.14.1.2.1.1.2.3 | 1 |
| 441acf7d-afb8-4ed4-a5c4-73e806dcfbc1 | NULL | enterprises.18070.2.2.1.4.14.1.3.1.1.2.3 | 2 |
| 441acf7d-afb8-4ed4-a5c4-73e806dcfbc1 | NULL | enterprises.18070.2.2.1.4.14.1.4.1.1.2.3 | 3 |
| 441acf7d-afb8-4ed4-a5c4-73e806dcfbc1 | NULL | enterprises.18070.2.2.2.1.1.1.0 | Ù
- |
| 441acf7d-afb8-4ed4-a5c4-73e806dcfbc1 | NULL | enterprises.18070.2.2.2.1.1.2.0 | 1 |
| 441acf7d-afb8-4ed4-a5c4-73e806dcfbc1 | NULL | enterprises.18070.2.2.2.1.1.3.0 | Ù
- |
| 441acf7d-afb8-4ed4-a5c4-73e806dcfbc1 | NULL | enterprises.18070.2.2.2.1.1.4.0 | 65 |
| 441acf7d-afb8-4ed4-a5c4-73e806dcfbc1 | NULL | enterprises.18070.2.2.2.1.1.5.0 | 4 |
| 441acf7d-afb8-4ed4-a5c4-73e806dcfbc1 | NULL | enterprises.18070.2.2.2.1.1.6.0 | 4 |
| 441acf7d-afb8-4ed4-a5c4-73e806dcfbc1 | NULL | enterprises.18070.2.2.2.1.1.7.0 | Optical transport unit severely errored seconds threshold exceeded. |
| 441acf7d-afb8-4ed4-a5c4-73e806dcfbc1 | NULL | enterprises.18070.2.2.2.1.1.8.0 | 33 |
| 441acf7d-afb8-4ed4-a5c4-73e806dcfbc1 | NULL | enterprises.18070.2.2.2.1.1.9.0 | 150 |
| 441acf7d-afb8-4ed4-a5c4-73e806dcfbc1 | NULL | enterprises.18070.2.2.2.4.1.0 | 4549 |
| 441acf7d-afb8-4ed4-a5c4-73e806dcfbc1 | NULL | oid | 1.3.6.1.4.1.18070.2.2.2.1.1.9.0 |
| 441acf7d-afb8-4ed4-a5c4-73e806dcfbc1 | NULL | sysUpTimeInstance | 68343831 |
+--------------------------------------+----------+------------------------------------------+---------------------------------------------------------------------+
The offending lines here are the ones with the odd "Ù" character. If I manually delete those 2 lines from that event in the database, then it allows me to open the event details for THAT SPECIFIC event in the event console.
According to the manufacturer MIB the OIDs are for event Date and Time.
I wonder if I am missing a unicode decoder package or something..?? Any ideas?
-
Like (0)