It is possible to send two reports --send-http-result- to different urls?

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