How to Add a Column to the results table for SDN Manager Locater Searches in DX NetOps Spectrum.
search cancel

How to Add a Column to the results table for SDN Manager Locater Searches in DX NetOps Spectrum.

book

Article ID: 441904

calendar_today

Updated On:

Products

Network Observability

Issue/Introduction

We have followed the steps in Knowledge Article 12220 however we are not seeing the added attribute in the results table for any SDN Manager Searches. How can we add a column to the results table for SDN Manager Locater Searches in DX NetOps Spectrum?

Environment

All Supported Releases

Resolution

For SDN Searches, users will need to create a <SPECROOT>/custom/topo/config/table-sdn-network-base-config.xml file. Below is a sample of the contents for adding the model_handle attribute to the results table.
 
<?xml version="1.0" encoding="utf-8"?>
<table id="table-sdn-network-base-config"
    xmlns="http://www.aprisma.com"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.aprisma.com
../../common/schema/table-config.xsd">
    <column-list>
        <column idref="column-condition-config"/>
        <column idref="column-modelname-config"/>
        <!-- add your custom column here -->
        <column>
            <name>Model_Handle</name>
            <content>
                <attribute>0x129fa</attribute>
            </content>
        </column>
    </column-list>
</table>
 
Once the file is saved, users must close and relaunch any OneClick WebApp Sessions or Java Clients for the changes to take effect.