vitexsoftware/multiflexi-zabbix

Zabbix integration for MultiFlexi

Maintainers

Package info

github.com/VitexSoftware/multiflexi-zabbix

pkg:composer/vitexsoftware/multiflexi-zabbix

Statistics

Installs: 1

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 1

dev-main 2026-05-20 07:41 UTC

This package is auto-updated.

Last update: 2026-05-26 21:10:11 UTC


README

multiflexi to zabbix integration package

Configuration

The package can be configured using the following environment variables:

Variable Description Default
ZABBIX_SERVER Hostname or IP address of the Zabbix server.
ZABBIX_HOST Hostname of the monitored host in Zabbix. gethostname()
USE_ZABBIX_SENDER If set to true, the package will use the /usr/bin/zabbix_sender binary if available. false

Usage

<?php

use MultiFlexi\Zabbix\ZabbixSender;
use MultiFlexi\Zabbix\Request\Packet;

$sender = new ZabbixSender('zabbix.example.com');
$packet = new Packet();
$packet->addMetric('system.cpu.load', '1m', 0.5);
$sender->send($packet);