Hello,
Is there any reason why API sessions are left open for 30 minutes where new session is being created every minute what leads to overloading of the management interface and in result often restarts - every a few hours. Please find examples below:
1) session lifespan:
Line...
Search Result
Collapse
10 results in 0.0023 seconds.
Keywords
Members
Tags
-
Too high amount of open sessions on Template for HPE MSA 2060 Storage by HTTP
-
Отчет о доступночти с помощью Python
Приветствую коллеги,
появилась задача сделать отчет по доступности сетевого оборудования за определенный период. В самом Zabbix порылся, но не нашел, решил поискать на Хабре. Человек делал подобные вещи
https://habr.com/ru/post/325876/
Решил подредактировать скрипт,... -
Can I send alerts to zabbix with API using post method?
Hi,
I would like to send alerts to zabbix using API with curl post method. but, I found alert.get is the only method available from zabbix documentation.
Is it possible to send alerts to zabbix with API. If yes, please suggest how.
--
Thanks
Vikas Gurlinka -
Fetching average values trough API
Hello everybody!
My task is to get monthly average values for such items as CPU and RAM Utilization.
Seems to be a simple quest using history.get method, but...
Here is what i got:
Zabbix 3.4.9
Considering i can get itemids.
JSON...Last edited by BigBoatCap; 08-08-2018, 15:54. -
(how2) Create item (zabbix trapper) and send value to it immediately?
In my script, i've create item with the type "zabbix trapper" using Zabbix API and try to send value to it, but... nothing happens, Zabbix can show me value in the zabbix frontend, but zabbix server cant calculate trigger based on this value.
I think, the core of the problem is dbcache...Last edited by DRVTiny; 05-09-2016, 11:02. -
How to get full trigger expression using ZabbixAPI?
Using Zabbix version: 2.4
OS: Ubuntu 16.04 lts
I am trying to get a list of full trigger expressions for each triggerid using the Zabbix API. Using trigger.get method, I can get a reduced trigger expression, which I have no use for. I really need the full trigger expression.... -
Zabbix sin base de datos
Muy buenas!
He escrito también en una sección en inglés, pero al parecer no ha sido publicado
.
Resulta que necesito hacer una consulta pero sin usar la base de datos de Zabbix, es decir, como cuando sacas los host, usuarios o triggers de esta forma:
... -
zabbixapi создание изображения
код
...PHP Code:require_once("ZabbixAPI.class.php");
$img_filename='/usr/local/share/zabbix/map-images/cell.png';
$img_file=fopen($img_filename, 'rb');
$img_data=fread($img_file, filesize($img_filename));
$img_create = ZabbixAPI::query('image','create',array('name'=>'myImage',
Last edited by mserg; 17-02-2011, 20:10. -
Creating images via ZabbixAPI
...PHP Code:require_once("ZabbixAPI.class.php");
$img_filename='/usr/local/share/zabbix/map-images/cell.png';
$img_file=fopen($img_filename, 'rb');
$img_data=fread($img_file, filesize($img_filename));
$img_create = ZabbixAPI::query('image','create',array('name'=>'myImage',
Last edited by mserg; 18-02-2011, 12:29. -
Zabbix API Method history.get
I am following the example on ZabbixAPI documentation and using the call..
curl -X POST -H 'Content-Type: application/json' -d '{"jsonrpc":"2.0","method":"history.get","params": { "history": 0, "itemids": ["22412"],"output":"extend"},"auth":"2f57038f7ea409a0c4c0ec 475753dbd8","id":2}'...