Hello. I am attempting to import a list of systems (~ 500) into zabbix using the bulkloader, however, when testing with 4-5 systems, I am experiencing some issues.
Here's an example of the csv:
Hwnode_linux_t is the template, Hardware_Nodes, the Host Group.
After importing a list of 4 systems, the first three are added to a new Host Group called "Hardware_Nodes". It was my expectation that they would be added to the current group named the exact same thing.
All servers are properly added to the "Hwnode_linux_t template".
When I check the zabbix DB, I see the following:
It would seem that the bulkloader is adding extra characters to the other Host Group and creating a new one. Also, the last system in the CSV list is added to the correct Host Group (groupid 4 rather than 13).
Suggestions?
Here's an example of the csv:
Code:
HOST,VS-001,10.11.0.2,10050,Monitored,Hwnode_linux_t,monitor.domain.com,Hardware_Nodes HOST,VS-002,10.11.0.3,10050,Monitored,Hwnode_linux_t,monitor.domain.com,Hardware_Nodes
After importing a list of 4 systems, the first three are added to a new Host Group called "Hardware_Nodes". It was my expectation that they would be added to the current group named the exact same thing.
All servers are properly added to the "Hwnode_linux_t template".
When I check the zabbix DB, I see the following:
Code:
mysql> select * from groups; +---------+-----------------+ | groupid | name | +---------+-----------------+ | 13 | Hardware_Nodes | 4 | Hardware_Nodes | | 1 | Templates | +---------+-----------------+ 3 rows in set (0.00 sec) mysql> select * from groups where name like 'Hardware_Nodes'; +---------+----------------+ | groupid | name | +---------+----------------+ | 4 | Hardware_Nodes | +---------+----------------+ 1 row in set (0.00 sec) mysql> select * from groups where name like 'Hardware_Nodes%'; +---------+-----------------+ | groupid | name | +---------+-----------------+ | 13 | Hardware_Nodes | 4 | Hardware_Nodes | +---------+-----------------+ 2 rows in set (0.00 sec)
Suggestions?

Comment