Skip to content
Snippets Groups Projects
Commit ab33dae4 authored by Hahn Axel (hahn)'s avatar Hahn Axel (hahn)
Browse files

Merge branch '6435-check-onehost' into 'master'

6435 check onehost

See merge request !106
parents 0e3f45f3 4cf7dcdf
Branches
No related tags found
1 merge request!1066435 check onehost
...@@ -242,10 +242,10 @@ fi ...@@ -242,10 +242,10 @@ fi
# --- check installation # --- check installation
grep $myuser $cfgfile >/dev/null 2>/dev/null if ! grep $myuser $cfgfile >/dev/null 2>&1; then
if [ $? -ne 0 ]; then
ph.abort "MYSQL access not possible yet. You need to install the monitoring user first: as root execute $(basename $0) -i" ph.abort "MYSQL access not possible yet. You need to install the monitoring user first: as root execute $(basename $0) -i"
fi fi
. "${cfgfile}"
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------
......
...@@ -169,6 +169,6 @@ echo ...@@ -169,6 +169,6 @@ echo
) )
ph.status "OpenNebula VMs - Total: $iTotal .. running: $iRunning .. other: $iOther" ph.status "OpenNebula VMs - Total: $iTotal .. running: $iRunning, Fail: $iFail, unknown: $iUnknown .. other: $iOther"
echo "$out" echo "$out"
ph.exit ph.exit
\ No newline at end of file
...@@ -25,6 +25,8 @@ There is one include script used by all checks: ...@@ -25,6 +25,8 @@ There is one include script used by all checks:
* check_memory * check_memory
* check_netio * check_netio
* [check_netstat](check_netstat.md) * [check_netstat](check_netstat.md)
* [check_onehost](check_onehost.md)
* [check_onevm](check_onevm.md)
* check_opencpu * check_opencpu
* check_packages2install * check_packages2install
* check_proc_mem * check_proc_mem
......
...@@ -9,6 +9,10 @@ It returns a single line for the status, data and performance data. ...@@ -9,6 +9,10 @@ It returns a single line for the status, data and performance data.
* `ceph` binary and sudo permission on it to get the information * `ceph` binary and sudo permission on it to get the information
```txt
icingaclient ALL=(ALL) NOPASSWD: /bin/ceph
```
## Syntax ## Syntax
``` ```
......
# check OpenNebula hosts
## Introduction
**check_onevm** is a plugin to show count of hosts in OpenNebula and warn if a host is down.
## Requirements
The icinga user needs sudo permissions on `onehost`.
```txt
icingaclient ALL=(ALL) NOPASSWD: /bin/onehost
```
## Syntax
`$ check_onevm [-c CRITICAL] [-w WARING]`
### Parameters
```txt
./check_onehost -h
______________________________________________________________________
CHECK_ONEHOST
v1.1
(c) Institute for Medical Education - University of Bern
Licence: GNU GPL 3
______________________________________________________________________
show count of hosts in OpenNebula and warn if a host is down.
SYNTAX:
check_onehost [ -w value -c value -h ]
-w VALUE cpu usage warning level (default: 1)
-c VALUE cpu usage critical level (default: 2)
-h or --help show this help.
PARAMETERS:
None.
EXAMPLE:
check_onehost -c 1 set to critical if the 1st host is off.
```
## Example
Without parameter
```txt
/check_onehost
OK: ONEHOST - Total: 5 .. on: 5 .. other: 0
ID,NAME,CLUSTER,TVM,ALLOCATED_CPU,ALLOCATED_MEM,STAT
4,kvm5.backend.one.intra,default,5,600 / 2400 (25%),13G / 503.1G (2%),on
3,kvm4.backend.one.intra,default,5,1100 / 2400 (45%),22G / 503.1G (4%),on
2,kvm3.backend.one.intra,default,8,1150 / 2400 (47%),20G / 251.1G (7%),on
1,kvm2.backend.one.intra,default,6,1000 / 2400 (41%),12G / 188.1G (6%),on
0,kvm1.backend.one.intra,default,8,1350 / 2400 (56%),18.5G / 188.1G (9%),on
|total=5;; on=5;; other=0;;
```
\ No newline at end of file
# Check OpenNebula virtual machines
## Introduction
**check_onevm** is a plugin to show count of vms in OpenNebula - listed by state and by host.
## Requirements
The icinga user needs sudo permissions on `onevm`.
```txt
icingaclient ALL=(ALL) NOPASSWD: /bin/onevm
```
## Syntax
`$ check_onevm` (without parameters)
### Parameters
```txt
./check_onevm -h
______________________________________________________________________
CHECK_ONEVM
v1.0
(c) Institute for Medical Education - University of Bern
Licence: GNU GPL 3
______________________________________________________________________
Show count of vms in OpenNebula - listed by state and by host.
It will go to warning if a non running state was found.
It will go to critical if a vm is on failure.
SYNTAX:
check_onevm
-h or --help show this help.
PARAMETERS:
None.
```
### Examples
Without parameter:
```
./check_onevm
OK: OpenNebula VMs - Total: 32 .. running: 32 .. other: 0
>>>>>> By state
--- Running (runn): 32
The VM is running (note that this stage includes the internal virtualized machine booting and shutting down phases). In this state, the virtualization driver will periodically monitor it.
>>>>>> By host:
--- kvm1.ecample.com: 8
--- kvm2.ecample.com: 6
--- kvm3.ecample.com: 8
--- kvm4.ecample.com: 5
--- kvm5.ecample.com: 5
|total=32;; running=32;; fail=0;; unknown=0;; other=0;;
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment