As of right now my query shows the most recent dashboard being updated, the time of the updates, the app name and the user updating it.
<query>index=_internal source=*web_access.log* /app/ action=edit | rex "/app/(?<app_name>.\w+)/(?<dashboard_name>.\w+)" | table dashboard_name, _time, app_name, user</query>
What I want is to also show the last data imports too. The other dashboards use the same query, yes.
... View more