-
Notifications
You must be signed in to change notification settings - Fork 30
Matomo Integration
Cheton Wu edited this page Jan 6, 2023
·
2 revisions
TBD
TBD
xdr_matomo_events(startofday(ago(7d)), startofday(now()))
| where idsite == 39
| where server_time >= startofday(ago(7d))
| where server_time < startofday(now())
| summarize count() by startofday(server_time)
xdr_matomo_events(startofday(ago(7d)), startofday(now()))
| where idsite == 39
| where not (custom_url == "" and outlink_url == "")
| project server_time, custom_url, outlink_url
xdr_matomo_events(startofday(ago(7d)), startofday(now()))
| where idsite == 39
| where custom_url == ""
| where outlink_url == ""
| order by server_time, idvisitor
| project server_time, idvisitor, event_category, event_action, event_name, custom_dimension_1