From 88ab5340e9e3a48c7f9ba4a4f13ab9d02606d925 Mon Sep 17 00:00:00 2001 From: IntelliTrend Team <43295941+intellitrend-team@users.noreply.github.com> Date: Mon, 14 Mar 2022 15:44:09 +0100 Subject: [PATCH] [DOC] Embedded example.csv, updated requirements --- README.md | 11 ++++++++--- example.csv | 3 --- 2 files changed, 8 insertions(+), 6 deletions(-) delete mode 100644 example.csv diff --git a/README.md b/README.md index 8d86113..64e15ef 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ This software is licensed under the GNU Lesser General Public License v3.0. ## Requirements -- Zabbix 5.0 to 5.4 +- Zabbix 6.0 - File write access to the Zabbix frontend server - Super admin permissions for the Zabbix users that want to use the frontend module @@ -49,9 +49,14 @@ Then go to `Administration`, `General`, `Modules`, click `Scan directory` and en Once the frontend module is activated, a new menu entry `Host CSV Importer` should appear under `Configuration`. -You can download an example CSV file from there or use the [example.csv](./example.csv) from the repo and edit the list to your liking. +Here's an example of two hosts: the first one with Zabbix agent and another with an SNMPv2 agent: +``` +NAME;VISIBLE_NAME;HOST_GROUPS;TEMPLATES;AGENT_IP;AGENT_DNS;SNMP_IP;SNMP_DNS;SNMP_VERSION;DESCRIPTION +example1;Example Host Agent;First host group, second host group;Linux by Zabbix agent;127.0.0.1;localhost;;;;Example Zabbix Agent host +example2;Example Host SNMP;Third host group;Generic SNMP;;;127.0.0.1;localhost;2;Example SNMPv2 host +``` -Here is a list of supported CSV columns: +The following CSV columns are supported: | Name | Purpose | Optional | | ------------ | ------------------------------------------------------------ | -------- | diff --git a/example.csv b/example.csv deleted file mode 100644 index a19387b..0000000 --- a/example.csv +++ /dev/null @@ -1,3 +0,0 @@ -NAME;VISIBLE_NAME;HOST_GROUPS;TEMPLATES;AGENT_IP;AGENT_DNS;SNMP_IP;SNMP_DNS;SNMP_VERSION;DESCRIPTION -example1;Example Host Agent;First host group, second host group;Linux by Zabbix agent;127.0.0.1;localhost;;;;Example Zabbix Agent host -example2;Example Host SNMP;Third host group;Generic SNMP;;;127.0.0.1;localhost;2;Example SNMPv2 host