I have a web activity included in my Data Factory pipeline that inserts some information into a table in the database on success of the pipeline. I was trying to find a parameter to include in the message that would show the number of rows processed. This will give me data to analyse about the jobs over time. An example of the code is below:
{"dbo.Notifications":{"_id":"1","_Message":"The data import from source db to target completed successfully.}","_DateModified":"@{utcnow()}","_NotificationType":"Info","_RecordCount:codeforrecordcount}}
Thanks