I don't understand the difference between events and metrics in DataDog. I'm trying to create a count indicator in my dashboard so I can now how many times some type of event has happened.
There is a lot of events named some.event.name
, but no matter what query I use, it always returns 1
.
I've tried with this queries,
sum:some.event.name{*}
count_nonzero(sum:some.event.name{*})
count_not_null(sum:some.event.name{*})
I've also tried with other aggregation functions avg|max|min|sum
and allways the result is 1
.
Any help will be highly appreaciated.