Hi :slightly_smiling_face: I am trying to find da...
# support
r
Hi 🙂 I am trying to find datadog alert equivalent in Signoz. I have a below datadog monitor query
Copy code
Query: 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.
Copy code
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?