I got 0.8.7b running and i'm trying to create new graph trees through cli command line scripts. And things didnt seem to be working as expected.
Starting from a completly clean 'graph tree':
Code: Select all
[root@cacti cli]# php add_tree.php --list-trees
Known Trees:
id sort method name
[root@cacti cli]#
Code: Select all
[root@cacti cli]# php add_tree.php --type=tree --name="Testing" --sort-method=manual
Tree Created - tree-id: (5)
[root@cacti cli]#
Code: Select all
[root@cacti cli]# php add_tree.php --tree-id=5 --type=node --sort-method=manual --node-type=header --name="Andradina"
Added Node node-id: (244)
[root@cacti cli]# php add_tree.php --tree-id=5 --type=node --sort-method=manual --node-type=header --name="Barra do Garças"
Added Node node-id: (245)
[root@cacti cli]# php add_tree.php --tree-id=5 --type=node --sort-method=manual --node-type=header --name="Rondônia"
Added Node node-id: (246)
[root@cacti cli]#
Code: Select all
[root@cacti cli]# php add_tree.php --tree-id=244 --type=node --node-type=header --name="Tráfego das Interfaces"
Added Node node-id: (247)
[root@cacti cli]# php add_tree.php --tree-id=245 --type=node --node-type=header --name="Tráfego das Interfaces"
Added Node node-id: (248)
[root@cacti cli]# php add_tree.php --tree-id=246 --type=node --node-type=header --name="Tráfego das Interfaces"
Added Node node-id: (249)
[root@cacti cli]#
Now let's go to cacti web interface .... i can see the created tree, i can see the created first nodes, but i cannot see the nodes inside nodes. I can expand and nothing appears. Screenshow follows attached.
am i doing something wrong ???