Daniel Gruszczyk
Daniel Gruszczyk

Reputation: 5622

Datadog alarm based on multiple thresholds

I am struggling to see if this is at all possible. If I have 2 queries:
A: avg:metric_one{service:foo}.as_count()
B: avg:metric_two{service:foo}.as_count()
And a FUNC (a/b)*100
I'd like a simple alarm that triggers when:
FUNC < 70 && A > 10
However, there seems to not be any option to put 2 critiria in. Any advice?
Thanks

Upvotes: 0

Views: 1312

Answers (1)

bwest
bwest

Reputation: 9814

For this use case, create a Composite Monitor. With composites you can define your triggering conditions based on the combined status of multiple monitors.

Upvotes: 1

Related Questions