diff --git a/internal/plugins/capacity_liquid.go b/internal/plugins/capacity_liquid.go index 76f60b65..a948cea3 100644 --- a/internal/plugins/capacity_liquid.go +++ b/internal/plugins/capacity_liquid.go @@ -119,6 +119,9 @@ func (p *liquidCapacityPlugin) Scrape(ctx context.Context, backchannel core.Capa resourceNames := SortedMapKeys(p.LiquidServiceInfo.Resources) var errs []error for _, resourceName := range resourceNames { + if !p.LiquidServiceInfo.Resources[resourceName].HasCapacity { + continue + } perAZ := resp.Resources[resourceName].PerAZ topology := p.LiquidServiceInfo.Resources[resourceName].Topology err := MatchLiquidReportToTopology(perAZ, topology)