This message was deleted.
# support
s
This message was deleted.
p
@Ankit Nayan do you have more insights on this
a
Reminder
a
@Apoorva 1. Application latency. You can add more filters or remove operation filter. Below is just an example promql
Copy code
histogram_quantile(0.99, sum(rate(signoz_latency_bucket{service_name="frontend", operation="HTTP GET /dispatch"}[5m])) by (le))
2. Error percentage of application. Below example for
redis
service in hotrod example
Copy code
max(sum(rate(signoz_calls_total{service_name="redis", status_code="STATUS_CODE_ERROR"}[5m]) OR rate(signoz_calls_total{service_name="redis", http_status_code=~"5.."}[5m]))*100/sum(rate(signoz_calls_total{service_name="redis"}[5m]))) < 1000 OR vector(0)
3. Yet to come. Development for enabling clickhouse query based alerts in progress https://github.com/SigNoz/signoz/issues/1699
👍 2