Nutanix Discovery Missing RelationshipsSummaryIn the documentation, it is mentioned that the following relationships will be created by Nutanix discovery: Nutanix Acropolis discovery Missing CI Relationships: Nutanix Controller VM >>>>>>> Runs on::Runs >>>>>>>> [cmdb_ci_vmware_instance][cmdb_ci_nutanix_controller_vm] >>>>> Hosted on::Hosts >>>>>>>>> Nutanix Prism Central [cmdb_ci_nutanix_prism_central]Nutanix Storage Pool >>>>>>>>>> Hosted on::Hosts >>>>>>>> Nutanix Prism Central [cmdb_ci_nutanix_prism_central]cmdb_ci_nutanix_storage_pool]VMware Cluster >>>>>>>>> Define resources for::Get resources from >>>>>>>>> Nutanix Storage Pool [cmdb_ci_nutanix_storage_pool][cmdb_ci_vmware_cluster] The above relationships are not getting created by Nutanix discovery. /sa_pattern_prepost_script.do?sys_id=2e5bb0c3db383f4097db90c7db961965&sysparm_record_target=sa_pattern_prepost_script&sysparm_record_row=1&sysparm_record_rows=1&sysparm_record_list=execution_type%3D1%5EnameCONTAINSnutanix%5EORDERBYorder The above relations are created in a Pre Post script and not in the pattern itself.These relations are created when the relation between Nutanix Controller and VMWare VM is not created.For Nutanix Prism Centrals, 2 records are created and relationships are not created with Nutanix Prism Centrals.The Nutanix Prism Centrals relations are created when relations between Nutanix Controller and VMWare VM are not created.The main CI is the cmdb_ci_nutanix_prism_central, so it is in index 0 in the payload. Relevant CIs: var NUTANIX_CVM = "cmdb_ci_nutanix_controller_vm";var NUTANIX_POOL = "cmdb_ci_nutanix_storage_pool"; Relevant relation: var host_rel = "Hosted on::Hosts"; You can look at the script at lines 159-162 for Nutanix Controller VM Hosted on::Hosts Nutanix Prism Central relation: } else {addRelationToPayload(payloadObj, host_rel, i, 0);CIAdded++;} You can look at the script at lines 180-183 for Nutanix Storage Pool Hosted on::Hosts Nutanix Prism Central relation: } else {addRelationToPayload(payloadObj, host_rel, i, 0);CIAdded++;}Related LinksThe pattern was developed with the advice of Nutanix experts, and the relations are created according to their recommendations and validations.