2.26.2.2 MMI Managed Objects for Trace Filter Params

The conversion can be configured from Active System OAM (SOAM).

MMI information associated with vSTP generated Trace Filter Params can be configured from DSR SOAM Main Menu and MMI API Guide. From the MMI API guide, use the application navigation to locate specific vSTP managed object information.

Navigate to MMI API Guide, from the Main Menu, and click MMI API guide.

With TraceFilterParams, a user can apply filter on traces through filter parameters. All configuration of TraceFilterParams is done at the SOAM.

Table 2-32 MOs and Operations supported

MO Name Operations Supported URI
Trace Filter Params POST/PUT/DELETE/GET /vstp/tracefilterparams

Post

Following are the steps to post Tracefilterparams:
  1. Create a file with the following parameters:
    {
                "cdnaiv": 100,
                "cdpa_address": "123abc",
                "cdtt": 40,
                "cgnp": "Private",
                "domain": "Itui",
                "duration": 25,
                "opc": "2-2-2",
                "rep": 20,
                "traceEnabled": "No"
            }
    
  2. Run the following command on active SOAM to post TraceFilterParams:
    mmiclient.py /vstp/tracefilterparams -v POST –r /<Absolute Path>/<File Name>
Example output for Insert :

/vstp/tracefilterparams -v POST -r /home/admusr/<filename>.json
{
    "data": true,
    "links": {},
    "messages": [],
    "status": true
}

Get

Run the following command on Active SOAM to Get the TraceFilterParams:
/vstp/tracefilterparams
Example output for Get:
{
            "birthTime": "2024-03-28T02:27:55-04:00",
            "cdnaiv": 100,
            "cdpa_address": "123abc",
            "cdtt": 40,
            "cgnp": "Private",
            "domain": "Itui",
            "duration": 25,
            "opc": "2-002-2",
            "rep": 20,
            "traceEnabled": "No",
            "traceId": 1
        }
    ],
    "links": {},
    "messages": [],
    "status": true

Update

Following are the steps to update Tracefilterparams:
  1. Create a file with the following parameters:
    {
                "duration": 40,
                "rep": 501,
                "traceEnabled": "No",
                "traceId": 1
     }
    
  2. Run the following command on active SOAM to update TraceFilterParams:
    /vstp/tracefilterparams -v PUT –r /<Absolute Path>/<File Name>
Example output for update:
/vstp/tracefilterparams -v PUT -r /home/admusr/<filename>.json
{
    "data": true,
    "links": {},
    "messages": [],
    "status": true
}

Delete

Run the following command on active SOAM to delete MTP screening rule:
/vstp/tracefilterparams/<Trace ID> -v DELETE