Rohit Lohia
09/11/2025, 6:33 AMQuery: avg:aws.applicationelb.healthy_host_count{component_name:abc-service} by {targetgroup}
Now, From what I understand, the metrics when exported via OpenTelemetry, only exposes summary metrics i.e. sum, count and quantile. Now if we have to create the same in Signoz, we are using below promql query.
sum by ("TargetGroup") (
{"aws.applicationelb.healthyhostcount.sum", component_name="abc-service", AvailabilityZone!=""}
)
/
on ("TargetGroup")
sum by ("TargetGroup") (
{"aws.applicationelb.healthyhostcount.count", component_name="abc-service", AvailabilityZone!=""}
)
Can we do it in query builder? Or is there some solution, that Signoz provides by default?