I would like to show some of our Modern Dashboards in a presentation, but I'm not allowed show the data as is.
Is there a way to sanitize or scramble data in a modern dashboard?
You might be able to do some obfuscation in the SWQL Query itself on a duplicated dashboard for presentation purposes like what @adam.beedell suggested.You could do something like a WHEN THEN case structure in the SWQL Query so it looks something like below.CASE WHEN "insert matching property here" = '' THEN 'REDACTED' -- The empty quotes should allow you to match on anything or you might change it to '%%' so it definitely matches anything and changes the property values to the hardcoded REDACTED. END AS [Redaction]
If you've got a bunch of things using {{{CAPTION}}} as their text label or whatever it is you can select the lot of em and change it to REDACTED or something
Oops, read this as Orion Maps for some reason.Simmilar sort of thing possible I suppose for modern dashboards depending how many queries you have. Selecting like vendor instead of caption perhaps. (On a duplicated dash perhaps)
That's pretty much what I ended up doing. I also added multipliers to the raw stat data to mask them as well.
Yea, I've been migrating as much as I can to Modern Dashboards the last 2 months and while they are nice there are some things that are lacking. Such as data limits and obfuscations etc. Hopefully we get some ability to do so soon without having to hard code it ourselves.