Scheduled Report - Category/Threat Reporting
not pursuing
K
Kyle Edwards
I have to run a report monthly on attempted, blocked, and allowed pornography access from a particular site and deliver this to management in our State Office because of a general statute that requires this . This would be very helpful to be able to setup as a custom report.
Minetta Gould
marked this post as
not pursuing
Thanks for sharing this request! We don’t have plans to build this specific report customization right now, but report flexibility is always on our radar.
If this kind of feature would make your reporting easier, add a vote or comment — it helps us see how much demand there is for deeper customization.
Jonathan Bullock
You could check manually by going to https://debug.dnsfilter.com/ per device.
To do this programmatically you'd have to script this on your own.
Here's some Powershell code that you could use to update a UDF in your RMM:
ec
$a = (invoke-webrequest -uri "https://adult.filterdns.net/status.json" -usebasicparsing).content
$a
if ($a -match "true") {
$udf17 = "True"
} else {
$udf17 = "False"
}
Set-ItemProperty "HKLM:\Software\CentraStage" -Name "Custom17$env:usrUDF17" -Value $udf17
<#This script is Datto RMM specific and uses a registry entry to update the field: https://rmm.datto.com/help/en/Content/3NEWUI/Devices/UserDefinedFields.htm
#>