To configure the AA flow data persistence

Purpose

Perform this procedure to specify, for one or more AA statistics domains, whether the NFM-P retains the collected flow data for NSP Analytics reporting, forwards the data to a target file server, or both.

Steps
 

Log in to a station that has access to the NSP system.


Open a console window.


Issue the following RESTCONF API call to specify export formats for AA data types:

Note: In order to issue a RESTCONF API call, you require a token; see the My First NSP API Client tutorial on the Network Developer Portal for information.

PATCH https://address:443/restconf/data/flowconf:config/policies/aa/data-export

where address is the NSP cluster advertised address

The message body is the following:

{

    "data-export" : [

      {

            "ipdr" : "true",

            "csv" : "false",

            "vertica" : "false",

        }

    ]

}

Note: The settings in the above example represent the default values.

The IPDR option enables data encoding in XDR format.

The CSV option enables data encoding in CSV format.

The Vertica option enables data storage for use by the NSP auxiliary database.

Note: Supported data domains (seen in the response body) include BUSINESS, RESIDENTIAL, WIFI, and MOBILE.


Close the console window.

End of steps