I've just realised that your object names are invalid.
You need to tweak the names to conform to the SMI specification.

Alejandro Islas wrote:
> MonThreadsTable OBJECT-TYPE
This must start with a lower-case letter - "monThreadsTable"
>                         SYNTAX          SEQUENCE OF monThreadsEntry
This must start with an upper-case letter - "MonThreadsEntry"

> monThreadsEntry OBJECT-TYPE
This is correct
>                 SYNTAX      monThreadsDetailsEntry
But this should match the SYNTAX of the monThreadsTable object,
i.e. "MonThreadsEntry"

> monThreadsDetailsEntry ::=
This should be "MonThreadsEntry"

>         SEQUENCE {
>                 IdThread                DisplayString (SIZE (0..20)),
>                 ProcTime        Unsigned32,
>                 MaxProcTime     Unsigned32,
>                 ExecNumber      Unsigned32
All of these must start with a lower-case letter,
and would conventionally share the same prefix.

Try using something like

   monThreadId
   monThreadProcTime
   monThreadMaxTime
   monThreadExecNumber

Dave

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
Net-snmp-coders mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/net-snmp-coders

Reply via email to