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
3
votes
6 answers

Looking for a more efficient (and portable) way to obtain (numeric) file permissions in unix

Short background: I need to monitor the permissions on a unix file (a directory) with ZABBIX to see if/when they change. ZABBIX doesn't have any built in like vfs.file.mode[xxxx] for this, so I had to roll my own UserParameter, with a numeric…
MattBianco
  • 1,501
  • 2
  • 20
  • 30
3
votes
3 answers

Zabbix proxy - Received empty response from Zabbix Agent

I am trying to setup zabbix proxy. My network is as below Zabbix server IP: 192.168.101.11 (internal network) Zabbix proxy server: 192.168.102.109 (internal network) Zabbix agent: 172.1.16.2 (outside network but pingable from 102.109) I can ping the…
Mukul Jain
  • 1,807
  • 9
  • 26
  • 38
3
votes
2 answers

zabbix server can't connect to java gateway

I have installed zabbix server and java gateway in same linux server and started zabbix-server and zabbix-java-gateway service. the OS is CentOS 6.5, java is JDK1.6.0_45, IP is 192.98.12.240, zabbix server and zabbix java gateway version is 2.2.9. I…
secondflying
  • 871
  • 1
  • 7
  • 16
3
votes
2 answers

zabbix UserParameter return 2 or more values

i use UserParameter=Firebird[*],F:\tools\zabbix_agent\firebird\Firebird.bat $1 How can I get for 1 run bat file two or more values?
xVlady
  • 33
  • 1
  • 1
  • 4
3
votes
5 answers

Zabbix JMX Tomcat monitoring

I have been trying to setup Zabbix to monitor my 2 tomcat servers on 2 different Amazon EC2 machines, but in vain. The Z on the host is green, however te JMX is red with these errors - ZBX_TCP_READ() failed: [4] Interrupted system call -…
gvatreya
  • 444
  • 1
  • 6
  • 12
3
votes
2 answers

Use Zabbix web scenario status for notification

I've created a web scenario with three steps within my zabbix installation. In case of an error I want to get a more detailed information about the error in the notification. I'm getting this: PROBLEM: www.mywebsite.tld.Fail : Failed step of…
Karl Ramseier
  • 31
  • 1
  • 3
3
votes
2 answers

How can I monitor a host with Zabbix without installing the agent on it?

I want to monitor a external host with Zabbix. I don't have any access to that host. E.g. it should be http://www.google.com. Now I want to monitor the host and if the host is down I want to get an email. How can I do this?
user3711869
  • 51
  • 1
  • 2
  • 3
3
votes
1 answer

How to upload Zabbix template using API

Does anyone know, how to upload Zabbix templates using API? We are trying to use java and Zabbix 2.0 API. Our goal is to get Zabbix graphs (png pictures) by different hosts and to display them on our monitoring page. We need to have a possibility to…
Serge
  • 111
  • 2
  • 9
3
votes
1 answer

HA / Distributed Zabbix Monitoring

I am using Zabbix to monitor severall websites using Ping-Checks and HTTP-Service Checks on Port 80. Agent monitoring is not possible due to access rights. My Zabbix server is running on a virtual private server located in Frankfurt, Germany.…
Bastian
  • 31
  • 2
  • 4
3
votes
3 answers

How to monitor network card link status in zabbix

I need to monitor physical interfaces link status in zabbix, and wondering, if there an internal zabbix check for that, or i need to write my own. If so, how to determine if there is cable plugged in network card, and there is an voltage in the…
3
votes
2 answers

Access Windows Performance Counters in a locale independent way

I have a mixed set of servers, some running Windows in English, some others running Windows in Italian. Is there a way to read the value of a performance counter without using locale dependent strings? I read on the Zabbix documentation that it…
baronKarza
  • 513
  • 6
  • 23
2
votes
3 answers

Check if values of two string-type items are equal in a Zabbix trigger

I am monitoring an application using Zabbix and have defined a custom item which returns a string value. Since my item's values are actually checksums, they will only contain the characters [0-9a-f]. Two mirror copies of my application are running…
Michał Kosmulski
  • 9,855
  • 1
  • 32
  • 51
2
votes
1 answer

How to make zabbix monitor django apps on an apache server

I have an apache server under Debian that runs several RESTful application written in Python with Django and Piston. These apps use SQLAlchemy to access data from a MySQL server. The server is monitored by Zabbix and I already have metrics for…
Fabio Ceconello
  • 15,819
  • 5
  • 38
  • 51
2
votes
1 answer

Zabbix log file monitoring with regex, trying to copy 2nd and 3rd line

I am using Zabbix monitoring system. I need to monitor a log file on a windows server for error messages. The first line just shows ERR and the next 2 lines then have the time stamp and details of the error. I need to bring all 3 lines into…
ahess
  • 21
  • 1
2
votes
1 answer

How to convert a list into a dictionary?

I can't reuse the content of a variable for two different parameters. (host_groups and tags). (Documentation here) I have a variable in this form : probe: - name: prob1 groups: - group1 - group2 - name: prob2 groups: -…