We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2900ed8 + be73956 commit cb6b4c4Copy full SHA for cb6b4c4
src/protocols/apis-and-extensions/anomaly_detection.md
@@ -87,9 +87,9 @@ total_violations as (
87
group by event_sent_at::date
88
)
89
90
- select v.date,
91
- t.total_event_count "Total Violation Count",
92
- nvl(v.violation_count, 0) "Total Event Count",
+ select t.date,
+ t.total_event_count "Total Event Count",
+ nvl(v.violation_count, 0) "Total Violation Count",
93
nvl(v.violation_count, 0)::float/t.total_event_count::float as "Violations Per Event"
94
from total_track_event_volume t
95
left join total_violations v
0 commit comments