-
- Enthusiast
- Posts: 42
- Liked: 4 times
- Joined: Nov 14, 2019 7:12 pm
- Full Name: Chris Lukowski
- Contact:
Feature Request: 'Job Duration' column in History module
Pretty simple request. In the History module there are columns for Start Time and End Time, but not column that shows how long the job took to complete. A Job Duration column would be very useful to quickly identify which jobs are taking the longest to finish.
-
- Veeam Software
- Posts: 2476
- Liked: 582 times
- Joined: Jun 28, 2016 12:12 pm
- Contact:
Re: Feature Request: 'Job Duration' column in History module
Hi Chris,
Thank you for the request, crystal clear. Will discuss it internally; in the mean time, consider VeeamOne reports for this as the Job History Report lets you track this quite well. Similarly, in Powershell it's fairly easy to produce this for a simple Last 24 Hour report:
Thank you for the request, crystal clear. Will discuss it internally; in the mean time, consider VeeamOne reports for this as the Job History Report lets you track this quite well. Similarly, in Powershell it's fairly easy to produce this for a simple Last 24 Hour report:
Code: Select all
$date = Get-Date
$sessions = Get-VBRBackupSession | Where-Object {$_.CreationTime -ge $date.AddDays(-1)}
$Last24HSessions = @()
Foreach($s in $sessions){
$duration = $s.EndTime - $s.CreationTime
$data = $s | Select Id, Name, CreationTime, EndTime, @{n="Duration";e={$duration}}, Result
$Last24HSessions += $data
}
$Last24HSessions
David Domask | Product Management: Principal Analyst
Who is online
Users browsing this forum: No registered users and 82 guests