The VNA is bringing the VeloClouds structures, however, the data isn't coming. The dashboard for groups is empty.
PM and VNA 23.3.x
The DA's ETL processing not handling > 200 length descriptions which ultimately broke the ETL processing, thus preventing the v_group_top_link view from returning any results.
Workaround:
Edit the /opt/CA/VNA/plugins/VeloCloud\ Plugin/config/inventory/edges.perspective and add the following entries in between lines 80/81:
if( result.length > 199 )
{
return result.substring( 0, 199 );
}
Stop/start the wildfly service
service wildfly stop
service wildfly start