Mojo::Zabbix is a simple perl wrapper of Zabbix API. we build only authentication and request methods and few helper methods to simplify calling methods such as create/get/update/delete/exists.

The more details ,please visting the Zabbix API documentation pages .

Test

The module is compatible and tested with Zabbix less version 3.0

Example

use Mojo::Zabbix;

my $z = Net::Zabbix->new( url => "https://server/zabbix/", username => 'user', password => 'pass', verify_ssl => 0, debug => 1, trace => 0, );

my $r = $z->get("host", { filter => undef, search => { host => "test", }, } );

License

This software is copyright (c) 2016 by oragnge.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself..