zabbix-api

Crates.iozabbix-api
lib.rszabbix-api
version0.3.1
sourcesrc
created_at2024-01-18 16:19:19.714717
updated_at2024-09-12 13:23:10.858176
descriptionZabbix API client
homepagehttps://github.com/lebe-dev/zabbix-api-rs
repositoryhttps://github.com/lebe-dev/zabbix-api-rs
max_upload_size
id1104321
size77,208
Eugene Lebedev (lebe-dev)

documentation

README

Zabbix API

This is a partial implementation of the Zabbix API client, created specifically for my pet project, wszl. Due to the extensive nature of the Zabbix API, I have been unable to allocate sufficient time to cover 100% functionality.

Getting started

Add dependencies in your Cargo.toml:

[dependencies]
zabbix-api = "0.3.1"

Then use:

use reqwest::blocking::ClientBuilder;
use zabbix_api::client::v6::ZabbixApiV6Client;
use zabbix_api::client::ZabbixApiClient;

fn main() {
  let http_client = ClientBuilder::new()
       .danger_accept_invalid_certs(false) // Set true if you're using self-signed certificates.
       .build().unwrap();

  let client = ZabbixApiV6Client::new(http_client, "http://localhost:3080/api_jsonrpc.php");
    
  match client.get_auth_session("Admin", "zabbix") {
    Ok(session) => println!("session: {session}"),
    Err(e) => {
        eprintln!("error: {}", e);
        panic!("unexpected error")
    }
  }
}

Versions

  • Stable: 0.2.2
  • Dev: 0.2.3

API Methods

  • Get API info
  • Authentication
  • RAW API Call
  • Search
    • Host Group
    • Hosts
    • Items
    • Triggers
    • Web-scenarios
    • User Group
    • User
  • Create
    • Host Group
    • Host
    • Item
    • Trigger
    • Web-scenario
    • User Group
    • User

TODO

  • Add examples
  • Use enums for Zabbix types (trigger type, value type, etc.)

Limitations

  • API support: v6
  • Synchronous requests only
Commit count: 0

cargo fmt