WPM: Current Screenshot location

Hello - I'm looking for the directory path where the current screenshots are kept.  I'm also curious how long these files are kept before being removed automatically.  I need to go back and pull some of these screenshots to prove that the alerts are not a false-positive.

Thanks!

Parents Reply
  • This is the SWQL we have internally

    SELECT TOP 1000 TransactionId, TransactionStepId, RecordingId, StepId,
    TransactionSteps.Step.Name, WarningThreshold, CriticalThreshold, OptimalThreshold,
    TransactionSteps.Transaction.LastDateTimeUtc, ScreenshotId, ScreenshotDateTimeUtc,
    TransactionSteps.LargeData.Screenshot
    FROM Orion.SEUM.TransactionSteps

    SELECT TOP 1 TransactionId, TransactionStepId, DateTimeUtc, Duration, Status, ScreenshotId,
    StepResponseTimeDetail.LargeData.Screenshot
    FROM Orion.SEUM.StepResponseTimeDetail (nolock=true)
    ORDER BY DateTimeUtc DESC

Children
No Data