Feature Request - Progress of post_full_filebackup

Hi,

first of all thanks for this great backup solution.
I use UrBackup to make image backups of windows clients to my nas.
I also have a simple rsync script to backup the data from my nas to a usb drive.
This script is triggered by the post_full_filebackup script, and the output is listed in the log of the backup job as INFO when the script is completed.
Is it possible to implement some kind of api to report the status while the postbackupscript runs so that it is visible in the webui activities tab.
Example how it could look like:

#! /bin/bash
echo “progress, 10, Copy to usb disk” # Sets the progress of the Job to 10% and the action to “Copy to usb disk”
# do things here
echo “progress, 40, Copy to usb disk” # Sets the progress of the Job to 40% and the action to “Copy to usb disk”

Thanks in advance