We've Moved! Please visit our new and improved forum over at our new portal: https://portal.plumvoice.com/hc/en-us/community/topics

Masking data for Analytics

Questions and answers about IVR programming for Plum DEV

Moderators: admin, support

Post Reply
dpc
Posts: 2
Joined: Thu Jun 20, 2019 9:46 am

Masking data for Analytics

Post by dpc »

Hello

I am trying to obscure some of our data for analytics. I am trying to follow the guide and wanted to know if the way I am adding the tags would be valid/honored by the system.

I have examples below of trying to obfuscate a number. Is adding the property like that to the log valid? Thanks!

Code: Select all

<log label="Debug" property name="logging" value="private">RTM, call_id=<%=call_id %>/></log>

Code: Select all

<block>
    <property name="logging"value="private"/>
    <log label="Debug">RTM, db=<%=db%>/></log>
    <log label="Debug">RTM, call_id=<%=call_id %>/></log>
</block>

admin
Site Admin
Posts: 35
Joined: Thu May 29, 2003 3:12 pm

Re: Masking data for Analytics

Post by admin »

Hello,

"<%=call_id %>" may not work. An alternative is to replace "<% .. %>" with "<value expr= .. />"; i.e, "<log>call id: <value expr="call_id"/></log>". Besides this, the block looks valid. Please let us know if you have any further questions.

Regards,
Plum Support

Post Reply