An open API service indexing awesome lists of open source software.

https://github.com/netways/vspheredb-data-check

A check plugin for retrieving performance data of vSphere hosts collected by Icingaweb2 vSphereDB module
https://github.com/netways/vspheredb-data-check

Last synced: 7 months ago
JSON representation

A check plugin for retrieving performance data of vSphere hosts collected by Icingaweb2 vSphereDB module

Awesome Lists containing this project

README

          

![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/NETWAYS/vspheredb-data-check)
![GitHub](https://img.shields.io/github/license/NETWAYS/vspheredb-data-check)

# README

> [!IMPORTANT]
> This repository has been rewritten in Golang and is thus archived.
> Please find the new version at [NETWAYS/check_vspheredb_data](https://github.com/NETWAYS/check_vspheredb_data).

`check_vspheredb_data` is a check plugin for checking performance data gathered by the [Icingaweb2 vSphereDB module](https://github.com/icinga/icingaweb2-module-vspheredb)
against given thresholds written in Rust.

It allows for finegrained monitoring of ESXI hosts on Icinga2's side without the need to configure alerting on
the vCenters' side as vSphereDB's inbuilt mechanisms do.

![screenshot of plugin output](doc/thumbnail.png)

## Installation

Clone this repository and build the binary using `cargo`, Rust's packet manager:

### Debian/Ubuntu

```ShellSession
$ apt-get update
$ apt-get install rustc cargo libssl-dev
$ git clone https://github.com/NETWAYS/vspheredb-data-check
$ cd vspheredb-data-check
$ cargo build --release
```

### CentOS/RHEL

```ShellSession
$ yum update
$ yum install rustc cargo openssl-devel
$ git clone https://github.com/NETWAYS/vspheredb-data-check
$ cd vspheredb-data-check
$ cargo build --release
```

The built binary can be found at `../vspheredb-data-check/target/release/check_vspheredb_data`.

## Usage

The check plugin provides detailed information about available check modes (see thumbnail above). More information can be accessed by
entering `check_vspheredb_data --help`.

## License
Copyright© 2022 [NETWAYS GmbH](mailto:info@netways.de)

This check plugin is distributed under the GPL-2.0 or newer license shipped with this repository in the [LICENSE](LICENSE) file.