Questions tagged [zabbix]

Zabbix is an open source monitoring software

Zabbix is an open source monitoring software. At the core sits a server daemon, written in C and gathered data can be accessed by using a PHP frontend. Zabbix provides binary agents for most platforms and may store both configuration and gathered values in MySQL, PostgreSQL, SQLite, Oracle or IBM DB2 databases.

See the official homepage or Wikipedia entry for more information.

518 questions
3
votes
1 answer

How do I check number of processes per CPU using zabbix?

By default zabbix is able to check the total number of processes on a machine and triggers and error if these are above 300. Clearly this doesn't work well for bigger machines. I do have a server with 32 codes and obviously 300 processes would be…
sorin
  • 8,016
  • 24
  • 79
  • 103
3
votes
2 answers

Zabbix with active checks

In Zabbix 2.0 I have configured zabbix agents to be active and disabled passive checks. I've also configured the host to automatically add these hosts to the "Discovered Hosts" host group. However, the agent then still tries to connect to the agents…
hookenz
  • 14,472
  • 23
  • 88
  • 143
3
votes
2 answers

Zabbix: Nagios like hosts/services status list

How can I have a screen or view in Zabbix where I can see all or all problematic services/hosts in a status list like the one in Nagios? Below a screenshot of Nagios problematic services status list for those who are not familiar with Nagios. I have…
user77376
  • 193
  • 1
  • 5
3
votes
1 answer

Problems with vfs.file.exists on Zabbix 2.0

I'm having problems with vfs.file.exists on Zabbix 2.0.6 on a 64-bit Fedora 19 box. 2.0.6 is the latest version available from the Fedora yum repository, at the time of writing. I want to check for the existence of the file…
G Mawr
  • 173
  • 1
  • 3
  • 6
3
votes
3 answers

Zabbix Trigger for SELinux (type=AVC) Errors

I would like to create a trigger in Zabbix to alert me anytime a type=AVC error appears in a CentOS 6 server's /var/log/audit/audit.log file. I've already tried creating a basic log scrape. …
Soviero
  • 4,366
  • 8
  • 36
  • 60
3
votes
3 answers

Zabbix agent - high CPU usage

I am monitoring a host with the help of Zabbix and I noticed that Zabbix agent started using quite a lot of CPU cycles: PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND …
Andrew
  • 1,104
  • 6
  • 21
  • 37
3
votes
1 answer

Configure active zabbix agent

I'm having trouble configuring an active zabbix agent in 2.0. If I set DisablePassive=1 then it stops listening, but the master zabbix server just reports the node as not responding. How exactly should I configure a node to do active checks only?
3
votes
1 answer

Zabbix run action(remote command) manualy

Zabbix version: 2.0 Is there any way to run action(remote command) manualy from web interface? I didn't find any
Selivanov Pavel
  • 2,206
  • 3
  • 26
  • 48
3
votes
2 answers

Zabbix - send a trap to a SNMP server

How to generate a SNMP trap per event (custom media type script?) to a SNMP server/another monitoring tool ? If so, how to pass the community + OID as arguments to the media type script? By default, only the destination, subject and message seem to…
Joao Figueiredo
  • 208
  • 2
  • 9
3
votes
1 answer

What item-key to monitor when looking for CPU interrupts in Zabbix 1.8.2

What is the proper item-key to monitor when looking for CPU interrupts caused by NICs.
Robert Foss
  • 233
  • 1
  • 3
  • 11
3
votes
1 answer

Monitorig ZFS io with Zabbix

I need to monitor per-zpool IO stats (number of reads, number of writes, size of reads, size of writes) with Zabbix. Is there a script for that? kstat provides only agregate data (all zpools summed together) -- unix:0:vopstats_zfs:nread,…
3
votes
1 answer

Zabbix does not send emails

I'm trying to configure zabbix with email notifications. I read many docs about it already, but I must be missing something still, because it doesn't work... What I have configured at the moment: media type: email, with host=localhost,…
viraptor
  • 1,296
  • 6
  • 21
  • 41
3
votes
2 answers

Zabbix - Populate Item with SQL Server Query

I'm trying to track a process that locks up regularly. It's a funky program that we have no control over. I'm trying to find a good way to track when the program stops responding. I have a query which has a result... It comes back with 2 numbers: an…
WernerCD
  • 344
  • 2
  • 6
  • 18
3
votes
2 answers

Error when trying to add Zabbix calculated item

I am trying to add a calculated item based on a web scenario response time. I am trying to add an item like so: avg("web.test.time[fut_perf,index,resp]", #5)+avg("web.test.time[fut_perf,about,resp]" #5) I am hoping to get the combined value of both…
Andy Shinn
  • 4,211
  • 8
  • 40
  • 55
3
votes
2 answers

how to get CPU utilization in zabbix from Windows server?

I'm trying to monitor CPU utilization of windows 7 32bit PC (C2D E8400) using zabbix. I tried both "perf_counter[\Processor Information(_Total)\% Processor Time]" and "system.cpu.util[,system,avg5]". After some time status of these items reverted…