That is, being able to send a report to a service like Duplicati-monitoring and another to Healthcheck?
Hello
not out of the box, no. Itβs strictly a ONE url parameter.
You may be able to work around that by doing the job yourself in an after backup script.
Or use http for Duplicati-monitoring and smtp for healthcheck.io. I donβt think that having both kinds of notifications is blocked in Duplicati code (never tried it but should work IMO).
1 Like
Thank you very much, I think I have tried sending a ping url or another report by email and it works.
The other solution is to run a PowerShell Script of the type:
$url = βhttps://hc-ping.com/aa...restoftheurlβ
Invoke-RestMethod -Uri $url -Method Post$url = βhttps://www.duplicati-monitoring.com/log/userXXXXX/bb...restoftheurlβ
Invoke-RestMethod -Uri $url -Method Post