Questions tagged [zabbix]

Zabbix is a free, open-source monitoring tool for diverse IT components, such as networks, servers, VM and cloud services. Zabbix provides metrics, such as network utilization, CPU load and disk usage consumption. The software monitors operations on Linux, HP-UX, Mac OS X, Solaris and Windows via agents installed on machines with a centralised server. It includes enterprise class features that can scale to support monitoring on thousands of servers.

Zabbix is installed as an 'agent' on machines to be monitored, with a central server that performs the monitoring. User defined 'templates' determine what attributes about a given client/agent to monitor; in this way, you can use Zabbix to monitor an enormous variety of activities.

Zabbix server is written in C on the back end, and PHP on the front end, and requires a relational database for the back end. Zabbix agent 1 is written in C and Zabbix agent 2 is written in Golang.

1379 questions
2
votes
1 answer

Zabbix - timeleft and forecast triggers not working

I'm having problems to configure the new Zabbix predictive triggers that were added in version 3.0 and later. I'm running a Zabbix 3.2 server and configuring the predictive triggers as…
AFAbyss
  • 195
  • 2
  • 10
2
votes
1 answer

Zabbix Memory Used key

I have an item that has vm.memory.size[used] as a key, this returns the memory used, this also included the cached and the buffers. I need to subtract vm.memory.size[cached] and vm.memory.size[buffers] from the vm.memory.size[used] to get the value…
user2307236
  • 665
  • 4
  • 19
  • 44
2
votes
1 answer

not able to run remote command in zabbix

I am trying to restart flanneld service running on one VM from my zabbix server UI using triggers and action. I followed the zabbix-docs. zabbix user has sudo permissions ( verified this by logging as zabbix user and running command sudo yum update…
Yogesh Jilhawar
  • 5,605
  • 8
  • 44
  • 59
2
votes
2 answers

How configure zabbix to receive data?

I have create a host with name dev002-All-Series, added tapper item to it with key test.ping.count add host and ip addres to allowed hosts. Then I try to send a data with zabbix-metrics library with code like that: private MetricRegistry…
Cherry
  • 31,309
  • 66
  • 224
  • 364
2
votes
2 answers

Over ride max number of processes in Zabbix

I am monitoring certain FreeIPA servers that are normally forking <= 460 process (roughly). This generates the "Too many processes on {HOST.NAME}" as part of the "Template OS Linux" template. The Expression that does the check is looking for…
farhany
  • 1,243
  • 2
  • 17
  • 29
2
votes
1 answer

Using MACROS in item key definition

I have a problem with using a predefined macro in Zabbix. I have defined two macros as following: {$HOSTNAME}=2008-windows-server {$IPADDRESS}=192.168.1.1 I want to use them in the item name and item key. macro {$HOSTNAME} maps to its value…
Sinai
  • 620
  • 1
  • 14
  • 36
2
votes
1 answer

Zabbix: Printing remaining disk space in an email using an action

I have multiple triggers that are tripped when my disk space space drops below 5, 10 or 20 percent. {Template OS Windows:vfs.fs.size[{#FSNAME},pfree].last(0)}<5 {Template OS Windows:vfs.fs.size[{#FSNAME},pfree].last(0)}<10 {Template OS…
Sean
  • 131
  • 2
  • 15
2
votes
2 answers

How make a website monitorable?

How to make a website build in PHP monitorable using monitoring agents like Zabbix? I have built a website using a Website and now the client tells me that he wants it to be monitorable. He even told me about the software he is going to use to…
m_junior
  • 591
  • 1
  • 8
  • 19
2
votes
1 answer

Zabbix Discovery Rule by custom script: need any advices

I'm trying to make discovery rule to add file size monitor. But when I add my Template to Host, zabbix says me: Value should be a JSON object Zabbix Agent (daemon) v2.2.10 (revision 54806) (10 August 2015) Zabbix server v2.2.9 (revision 52686)…
2
votes
2 answers

no active checks on server [192.168.100.100:10051]: host [scidb601] not found

The Server zabbix_agentd.conf Server=127.0.0.1,192.168.100.100 ### Option: ListenPort # Agent will listen on this port for connections from the server. # # Mandatory: no # Range: 1024-32767 # Default: # ListenPort=10050 ### Option: ListenIP # …
Cherry
  • 313
  • 3
  • 4
  • 10
2
votes
1 answer

Read Zabbix events to Elastic Search

I am trying to integrate Zabbix with Elastic Search through logstash and further generate dashboard on Kibana. Now there are many links which suggest it is possible to monitor elasticsearch through Zabbix but not the other way…
user3045254
  • 133
  • 2
  • 10
2
votes
4 answers

How to check HTTP response code in zabbix?

I have a Zabbix server 2.2 and a few linux hosts with websites. How can I get a notification from Zabbix, if the HTTP(s) response code is not 200? I've tried those triggers without any success: {owncloud:web.test.rspcode[Availability of…
Sebbo
  • 65
  • 1
  • 2
  • 10
2
votes
1 answer

How to count number of measured values in Zabbix?

I'm collection information from managed hosts to Zabbix by using SNMP. I'm getting number of values. We can imagine it as loads on each CPU core. I would like to get number of the measured values - like number of the CPU cores. Do you know how to…
charkh
  • 169
  • 1
  • 3
  • 13
2
votes
3 answers

zabbix api get all host names

I'm using Python to query a Zabbix server in an attempt to get a list of hostids and hostnames. I'm testing with the following: zapi = ZabbixAPI(server=server, log_level=debuglevel) zapi.login(username, password) hosts =…
akagera
  • 25
  • 1
  • 1
  • 5
2
votes
1 answer

How to find difference between two arrays in PHP?

Here is array 1: Array ( [ABC01] => 10.123.456.78 [ABC02] => 10.123.456.79 [ABC03] => 10.123.456.80 [ZYX99] => 10.123.456.81 ) Here is array 2: Array ( [0] => ABC01 [1] => ABC02 [2] => ABC03 …
l33tspeak
  • 95
  • 3
  • 13