I carefully looked through Tailspin Surveys sample for Wasabi autoscaling block. There's Tailspin_TenantCount_Avg_10m
rule that is implemented in TenantCountOperandElement
class which in turn supplies a TenantCountDataPointsCollector
class instance for collecting data.
The latter has
public IEnumerable<DataPoint> Collect(DateTimeOffset collectionTime)
method that does actual retrieval of metric data. The method is invoked by the Wasabi block.
How often is that method invoked?