Monitor Job Progress using .NET
Warning
Update your Azure Media Services REST API and SDKs to v3 by 29 February 2024. Version 3 of Azure Media Services REST API and client SDKs for .NET and Java offers more capabilities than version 2. We’re retiring version 2 of the Azure Media Services REST API and client SDKs for .NET and Java.
Action Required: To minimize disruption to your workloads, review the migration guide to transition your code from the version 2 API and SDKs to version 3 API and SDK before February 29th, 2024. After February 29th, 2024, Azure Media Services will no longer accept traffic on the version 2 REST API, the ARM account management API version 2015-10-01, or from the version 2 .NET client SDKs. This includes any 3rd party open-source client SDKS that may call the version 2 API. Learn about the latest version, starting with the Media Services v3 Overview.
When you run jobs, you often require a way to track job progress. You can check the progress by defining a StateChanged event handler (as described in this topic) or using Azure Queue storage to monitor Media Services job notifications (as described in this topic).
Define StateChanged event handler to monitor job progress
The following code example defines the StateChanged event handler. This event handler tracks job progress and provides updated status, depending on the state. The code also defines the LogJobStop method. This helper method logs error details.
private static void StateChanged(object sender, JobStateChangedEventArgs e)
{
Console.WriteLine("Job state changed event:");
Console.WriteLine(" Previous state: " + e.PreviousState);
Console.WriteLine(" Current state: " + e.CurrentState);
switch (e.CurrentState)
{
case JobState.Finished:
Console.WriteLine();
Console.WriteLine("********************");
Console.WriteLine("Job is finished.");
Console.WriteLine("Please wait while local tasks or downloads complete...");
Console.WriteLine("********************");
Console.WriteLine();
Console.WriteLine();
break;
case JobState.Canceling:
case JobState.Queued:
case JobState.Scheduled:
case JobState.Processing:
Console.WriteLine("Please wait...\n");
break;
case JobState.Canceled:
case JobState.Error:
// Cast sender as a job.
IJob job = (IJob)sender;
// Display or log error details as needed.
LogJobStop(job.Id);
break;
default:
break;
}
}
private static void LogJobStop(string jobId)
{
StringBuilder builder = new StringBuilder();
IJob job = GetJob(jobId);
builder.AppendLine("\nThe job stopped due to cancellation or an error.");
builder.AppendLine("***************************");
builder.AppendLine("Job ID: " + job.Id);
builder.AppendLine("Job Name: " + job.Name);
builder.AppendLine("Job State: " + job.State.ToString());
builder.AppendLine("Job started (server UTC time): " + job.StartTime.ToString());
builder.AppendLine("Media Services account name: " + _accountName);
builder.AppendLine("Media Services account location: " + _accountLocation);
// Log job errors if they exist.
if (job.State == JobState.Error)
{
builder.Append("Error Details: \n");
foreach (ITask task in job.Tasks)
{
foreach (ErrorDetail detail in task.ErrorDetails)
{
builder.AppendLine(" Task Id: " + task.Id);
builder.AppendLine(" Error Code: " + detail.Code);
builder.AppendLine(" Error Message: " + detail.Message + "\n");
}
}
}
builder.AppendLine("***************************\n");
// Write the output to a local file and to the console. The template
// for an error output file is: JobStop-{JobId}.txt
string outputFile = _outputFilesFolder + @"\JobStop-" + JobIdAsFileName(job.Id) + ".txt";
WriteToFile(outputFile, builder.ToString());
Console.Write(builder.ToString());
}
private static string JobIdAsFileName(string jobID)
{
return jobID.Replace(":", "_");
}