Skip to content

Latest commit

 

History

History
47 lines (37 loc) · 1.59 KB

050_community_configs_init.md

File metadata and controls

47 lines (37 loc) · 1.59 KB

Neteye Configurations and Template Library Setup

Open source library of monitoring templates for Icinga2. Those templates work in addition to the Icinga2 Template Library (ITL) and can be installed from repository

With the provided steps, the content of the present repository and the monitoring templates library are installed.

Installation and setup

mkdir /tmp/ns/
cd /tmp/ns
git clone https://github.com/zampat/neteye4
cd neteye4
./run_setup.sh full

systemctl restart httpd.service
  • Import all neteye monitoring templates in Icinga2 Director DB installed within the neteyeshare
cd /neteye/shared/httpd/neteyeshare/monitoring/monitoring-templates
./run_import.sh

Updates from community repo

Principally all improvements provided by this repository support an incremental update of you configuration. Existing configurations are not altered. To update and install latest neteye4 configurations, agents and update share at any later moment:

cd neteye4
git fetch
git pull
./run_setup.sh full

To update the neteye4 monitoring template library at any later moment and inject templates to Director:

cd /neteye/shared/httpd/neteyeshare/monitoring/monitoring-templates
git fetch
git pull
./run_import.sh

<<< Back to documentation overview <<<