I'm trying to get Windows performance counter values as described in the documentation:
http://www.zabbix.com/documentation/...mance_counters
I decided to start with the same simple example, so I made sure, that the "Processor(0)\Interrupts/sec" existed, by running typeperf -qx.
Then I tried to query this through agent:
zabbix_get -s myserver -k perf_counter["Processor(0)\Interrupts/sec"]
But it returned ZBX_NOTSUPPORTED
Checked the agent logs and there was:
Can't get required buffer size. Counter path is "Processor(0)\Interrupts/sec": The specified counter path could not be interpreted.
I looked into the agent's source perfmon.c and what I saw there was indicating some kind of memory allocation error.
What can it mean?
Can this be caused by let's say some conflict regarding 32bit/64bit agent software running on 32bit/64bit OS? The server I was testing was 32bit XP and I don't think the 64bit agent would even run on it? Is there a way to determine if I'm running a 32bit or 64bit agent?
I'm using a slightly modified installer from http://www.suiviperf.com/zabbix/ and my agent version is 1.8.5
http://www.zabbix.com/documentation/...mance_counters
I decided to start with the same simple example, so I made sure, that the "Processor(0)\Interrupts/sec" existed, by running typeperf -qx.
Then I tried to query this through agent:
zabbix_get -s myserver -k perf_counter["Processor(0)\Interrupts/sec"]
But it returned ZBX_NOTSUPPORTED
Checked the agent logs and there was:
Can't get required buffer size. Counter path is "Processor(0)\Interrupts/sec": The specified counter path could not be interpreted.
I looked into the agent's source perfmon.c and what I saw there was indicating some kind of memory allocation error.
What can it mean?
Can this be caused by let's say some conflict regarding 32bit/64bit agent software running on 32bit/64bit OS? The server I was testing was 32bit XP and I don't think the 64bit agent would even run on it? Is there a way to determine if I'm running a 32bit or 64bit agent?
I'm using a slightly modified installer from http://www.suiviperf.com/zabbix/ and my agent version is 1.8.5

Comment