From f1f30874dd04f7ec8802fb5b09d802ef3193f399 Mon Sep 17 00:00:00 2001 From: thl-cmk <thl-cmk@outlook.com> Date: Thu, 12 Oct 2023 14:59:57 +0000 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b292a2a..2ec3d5b 100644 --- a/README.md +++ b/README.md @@ -52,9 +52,9 @@ Nice ;-) Have a look at the [contribution guidelines](CONTRIBUTING.md "Contribut If neighbour names in CD/LLDP data and Checkmk host names don't match, you can configure a mapping in the `create_topology_data.py` file. I.e.: ``` -# map inventory host name to CMK host name +# map inventory neighbour name to CMK host name HOST_MAP = { - 'inventory-host': 'cmkhost', + 'neighbour': 'cmk_host',, 'nexus01': 'NX01', 'nexus02': 'NX02', 'nexus03': 'NX03', @@ -64,7 +64,7 @@ HOST_MAP = { At the same place you can exclude invalid hosts from the topology data ``` -# drop hosts with invalid names +# drop neighbours with invalid names DROP_HOSTS = [ 'not advertised', ] -- GitLab