Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Note

This content is only valid for DAS 3.2.0.

...

  • Stream Name: The name of the stream.
  • Attributes: The list of attributes that contain PII.
  • id: The ID attribute that needs to be replaced with the value of pseudonym argument when executing the tool.

Step 2: Configure the config.json file

In order to identify the streams and the stream attributes with PII, you need to create this file with definitions of the relevant streams and each attribute that contains PII (Personally Identifiable Information). This file must be placed in the <DAS_HOME>/repository/components/tools/identity-anonymization-tool-x.x.x/conf directory. 

The analytics-streams processor needs to be added to the configuration file of the Forget-Me tool as shown on the sample below.

Code Block
languagejs
{
    "processors": [
        "analytics-streams"
    ],
    "directories": [
        {
            "dir": "analytics-streams",
            "type": "analytics-streams",
            "processor": "analytics-streams"
        }
    ]
}

Currently, you can apply the Forget-me tool to remove PII from the following locations:

ProcessorLocation
log-file <DAS_HOME>/repository/logs directory is the default location for logs.
analytics-streamsInformation persisted for the streams you specified in the

<DAS_HOME>/repository/components/tools/identity-anonymization-tool-x.x.x/conf/streams/streams.json file are removed from the persisted streams in the event store. For more information about persistence of data, see Configuring Data Persistence.


Step 3: Execute the Forget-me tool

To execute the Forget-me tool, issue the following command pointing to the <DAS_HOME> directory.

forget-me -U <USERNAME> -d <CONF_DIR> -carbon <DAS_HOME>

...