Hello,
Yes, this is possible, though not the default configuration.
When configuring metrics, you can use the "Fixed deviation from mean" method to compare a metric to its average value on a per-analyte basis. That lets you notice when a retention time drifts from its normal values within the folder (or its most current guide set if you've defined one) by more than, say, 0.1 minutes.
In this case, though, you're looking to compare against the value in your library, not the average within the Panorama QC folder. For that, you'd need to create a custom metric (and associated SQL query) where the value is the difference between the observed retention time and its library value.
I took the liberty of setting this up in your QC folder, with this query:
SELECT
Id AS PrecursorChromInfoId,
SampleFileId AS SampleFileId,
BestRetentionTime - MoleculePrecursorId.MoleculeId.ExplicitRetentionTime AS MetricValue
FROM PrecursorChromInfo
You should now be able to configure this new "Retention Time Difference" metric with a "Fixed value cutoff" with a range of -0.1 to 0.1. It would also be possible to update the query to use the absolute value of the difference.
Thanks,
Josh