If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to REGISTER before you can post. To start viewing messages, select the forum that you want to visit from the selection below.
I dig a little in the zabbix code and see what is my issue. If i undestand well seem to be an zabbix limitation but maybe someone that knows more than me can confirm it.
the weblogic snmp is return a 128 (Decimal) type,
In zbx_snmp_set_result() type:128 value_type:4 data_type:0
128 type is 0x80 (as Hex). This type of data in snmp library is
#define ASN_CONTEXT ((u_char)0x80)
In the zabbix code they check for this kind of types (see at zabbix_server/poller/checks_snmp.c) :
ASN_OCTET_STR
ASN_OBJECT_ID
ASN_UINTEGER
ASN_COUNTER
ASN_UNSIGNED64
ASN_TIMETICKS
ASN_GAUGE
ASN_COUNTER64
ASN_INTEGER
ASN_INTEGER64
ASN_FLOAT
ASN_DOUBLE
ASN_IPADDRESS
if not is any of this types:
SET_MSG_RESULT(result, zbx_get_snmp_type_error(var->type));
ret = NOTSUPPORTED;
Comment