No SD-WAN Tunnel Statistics graphs for Velocloud plugin in Portal
search cancel

No SD-WAN Tunnel Statistics graphs for Velocloud plugin in Portal

book

Article ID: 279311

calendar_today

Updated On:

Products

Network Observability Virtual Network Assurance CA Performance Management

Issue/Introduction

The VNA is bringing the VeloClouds structures, however,  the data isn't coming. The dashboard for groups is empty.

Environment

PM and VNA 23.3.x

Cause

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. 

Resolution

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