Data Masking¶
If you want to perform full masking on a field, it is recommended to use FTMobileConfig.dataModifier for better performance. If you need fine-grained rule replacement, it is recommended to use FTMobileConfig.lineDataModifier.
Single Field Modification (dataModifier)¶
- Purpose: Modify a single field value in the data.
- Parameter format:
{key: newValue} - Example:
{"device_uuid": "xxx"}will replace thedevice_uuidfield value in the target data with"xxx".
Single Data Line Modification (lineDataModifier)¶
- Purpose: Modify specified field values in a certain type of data.
- Parameter format:
{measurement: {key: newValue}} - Example:
{"view": {"view_url": "xxx"}}will modify theview_urlfield value to"xxx"for all data of typeview.
List of measurement data types:
- RUM data:
view,resource,action,long_task,error - Log data:
log