All Projects → RFQ-hub → Zabbixagentlib

RFQ-hub / Zabbixagentlib

Licence: mit
.Net library implementing a Zabbix agent

Projects that are alternatives of or similar to Zabbixagentlib

Grafana Zabbix
Zabbix plugin for Grafana dashboard
Stars: ✭ 1,716 (+18966.67%)
Mutual labels:  monitoring, zabbix
Thola
Tool for monitoring and provisioning network devices (mainly using SNMP) - monitoring check plugin
Stars: ✭ 179 (+1888.89%)
Mutual labels:  monitoring, zabbix
Https Ssl Cert Check Zabbix
Script to check validity and expiration of TLS/SSL certificate on site. May be used with Zabbix or standalone.
Stars: ✭ 162 (+1700%)
Mutual labels:  monitoring, zabbix
Pm2 Zabbix
A Node.js PM2 monitoring tool for Zabbix.
Stars: ✭ 71 (+688.89%)
Mutual labels:  monitoring, zabbix
Awesome Monitoring
INFRASTRUCTURE、OPERATION SYSTEM and APPLICATION monitoring tools for Operations.
Stars: ✭ 356 (+3855.56%)
Mutual labels:  monitoring, zabbix
Pyora
Python script to monitor Oracle Databases
Stars: ✭ 96 (+966.67%)
Mutual labels:  monitoring, zabbix
Zorka
Sophisticated monitoring agent for Java
Stars: ✭ 178 (+1877.78%)
Mutual labels:  monitoring, zabbix
Docker Zabbix Coreos
Docker container with patched Zabbix agent for CoreOS server monitoring
Stars: ✭ 36 (+300%)
Mutual labels:  monitoring, zabbix
Kubernetes Zabbix
📦 Kubernetes Zabbix/Grafana cluster (bare metal, Google Computer Engine - GCE, Google Container Engine - GKE)
Stars: ✭ 244 (+2611.11%)
Mutual labels:  monitoring, zabbix
Rabbitmq Zabbix
Zabbix RabbitMQ Configuration
Stars: ✭ 241 (+2577.78%)
Mutual labels:  monitoring, zabbix
Zabbixdba
Zabbix Database Monitoring Service (Oracle, Pg, MySQL, MS SQL, DB2, etc.)
Stars: ✭ 68 (+655.56%)
Mutual labels:  monitoring, zabbix
Dockbix Xxl
🐳 Dockerized Zabbix - server, web, proxy, java gateway, snmpd with additional extensions
Stars: ✭ 374 (+4055.56%)
Mutual labels:  monitoring, zabbix
Zabbix Docker Monitoring
🐳 Docker/Kubernetes/Mesos/Marathon/Chronos/LXC/LXD/Swarm container monitoring - Docker image, Zabbix template and C module
Stars: ✭ 1,098 (+12100%)
Mutual labels:  monitoring, zabbix
Zabbix
Real-time monitoring of IT components and services, such as networks, servers, VMs, applications and the cloud.
Stars: ✭ 1,914 (+21166.67%)
Mutual labels:  monitoring, zabbix
Grafana Zabbix Dashboards
Grafana dashboards for Zabbix
Stars: ✭ 50 (+455.56%)
Mutual labels:  monitoring, zabbix
Zabbix Haproxy
HAProxy Zabbix Discovery and Template
Stars: ✭ 169 (+1777.78%)
Mutual labels:  monitoring, zabbix
Wgcloud
linux运维监控工具,支持系统信息,内存,cpu,温度,磁盘空间及IO,硬盘smart,系统负载,网络流量等监控,API接口,大屏展示,拓扑图,进程监控,端口监控,docker监控,文件防篡改,日志监控,数据可视化,web ssh,堡垒机,指令下发批量执行,linux面板,探针,故障告警
Stars: ✭ 2,669 (+29555.56%)
Mutual labels:  monitoring, zabbix
Squzy
Squzy - is a high-performance open-source monitoring, incident and alert system written in Golang with Bazel and love.
Stars: ✭ 359 (+3888.89%)
Mutual labels:  monitoring, zabbix
Zabbix Slack Alertscript
Zabbix AlertScript for Slack.com chat
Stars: ✭ 406 (+4411.11%)
Mutual labels:  monitoring, zabbix
Zabbix Template Juniper Mx Bgp4 Ipv4 Ipv6
Zabbix Template for Juniper MX discovery BGP4 peers ipv4 and ipv6, RE, interfaces
Stars: ✭ 22 (+144.44%)
Mutual labels:  zabbix

Zabbix Agent .Net

Build status

A .Net library implementing a Zabbix agent.

Only passive agents are supported for now (Where zabbix create one connection per item he want to request)

Passive agent sample

var server = new PassiveCheckServer(new IPEndPoint(0, 10050));

server.AddItem("test", () => 42);
server.AddItem("echo", a => a);

server.Start();
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].